Edit

IABSD.fr/ports/java/tanukiwrapper/patches/patch-src_c_property_c

Branch :

  • Show log

    Commit

  • Author : jasper
    Date : 2013-07-10 14:40:29
    Hash : 5ba9fa2a
    Message : import tanukiwrapper, based on svn rev 1780 The Java Service Wrapper is an application which has evolved out of a desire to solve a number of problems common to many Java applications: - Run as a Windows Service or Unix Daemon - Application Reliability - Standard, Out of the Box Scripting - On Demand Restarts - Flexible Configuration - Ease Application Installations - Logging ok aja@

  • java/tanukiwrapper/patches/patch-src_c_property_c
  • $OpenBSD: patch-src_c_property_c,v 1.1.1.1 2013/07/10 14:40:29 jasper Exp $
    --- src/c/property.c.orig	Tue Jul  2 14:23:25 2013
    +++ src/c/property.c	Tue Jul  2 14:24:15 2013
    @@ -453,7 +453,7 @@ int getEncodingByName(char* encodingMB, int *encoding)
     int getEncodingByName(char* encodingMB, char** encoding) {
     #endif
         if (strIgnoreCaseCmp(encodingMB, "Shift_JIS") == 0) {
    -#if defined(FREEBSD) || defined (AIX) || defined(MACOSX)
    +#if defined(FREEBSD) || defined (AIX) || defined(MACOSX) || defined(OPENBSD)
             *encoding = "SJIS";
     #elif defined(WIN32)
             *encoding = 932;