Author: mturk
Date: Thu Nov  6 02:24:56 2008
New Revision: 711832

URL: http://svn.apache.org/viewvc?rev=711832&view=rev
Log:
Increment version to 1.1.17-dev

Modified:
    tomcat/connectors/branches/native/1.1.x/jni/native/include/tcn_version.h
    tomcat/connectors/branches/native/1.1.x/jni/native/src/jnilib.c

Modified: 
tomcat/connectors/branches/native/1.1.x/jni/native/include/tcn_version.h
URL: 
http://svn.apache.org/viewvc/tomcat/connectors/branches/native/1.1.x/jni/native/include/tcn_version.h?rev=711832&r1=711831&r2=711832&view=diff
==============================================================================
--- tomcat/connectors/branches/native/1.1.x/jni/native/include/tcn_version.h 
(original)
+++ tomcat/connectors/branches/native/1.1.x/jni/native/include/tcn_version.h 
Thu Nov  6 02:24:56 2008
@@ -69,13 +69,13 @@
 #define TCN_MINOR_VERSION       1
 
 /** patch level */
-#define TCN_PATCH_VERSION       16
+#define TCN_PATCH_VERSION       17
 
 /**
  *  This symbol is defined for internal, "development" copies of TCN. This
  *  symbol will be #undef'd for releases.
  */
-#undef TCN_IS_DEV_VERSION
+#define TCN_IS_DEV_VERSION      1
 
 
 /** The formatted string of APU's version */
@@ -86,7 +86,7 @@
      TCN_IS_DEV_STRING
 
 /** Internal: string form of the "is dev" flag */
-#ifdef TCN_IS_DEV_VERSION
+#if TCN_IS_DEV_VERSION
 #define TCN_IS_DEV_STRING "-dev"
 #else
 #define TCN_IS_DEV_STRING ""

Modified: tomcat/connectors/branches/native/1.1.x/jni/native/src/jnilib.c
URL: 
http://svn.apache.org/viewvc/tomcat/connectors/branches/native/1.1.x/jni/native/src/jnilib.c?rev=711832&r1=711831&r2=711832&view=diff
==============================================================================
--- tomcat/connectors/branches/native/1.1.x/jni/native/src/jnilib.c (original)
+++ tomcat/connectors/branches/native/1.1.x/jni/native/src/jnilib.c Thu Nov  6 
02:24:56 2008
@@ -276,11 +276,7 @@
             return TCN_PATCH_VERSION;
         break;
         case 0x04:
-#ifdef TCN_IS_DEV_VERSION
-            return 1;
-#else
-            return 0;
-#endif
+            return TCN_IS_DEV_VERSION;
         break;
         case 0x11:
             return apv.major;



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to