The BUG#421 could also be closed in 3.2.2 (no more in 3.3)

(Code inspections shows that the definition of `jk_pool_atom_t' 
is conditional on some CPP macro that shows what the OS is:
clearly on this system, the macro should be SOLARIS, but that
isn't defined anywhere. apxs however defines a SOLARIS2 macro.)

The fix is :

--- src/native/jk/jk_pool.h.orig        Mon May  7 16:08:04 2001
+++ src/native/jk/jk_pool.h     Mon May  7 16:08:21 2001
@@ -91,6 +91,8 @@
     typedef long long   jk_pool_atom_t;
 #elif defined(NETWARE)
     typedef long long   jk_pool_atom_t;
+#else
+    typedef long long   jk_pool_atom_t;
 #endif
 
 /* 

Could I commit it Marc ?

Reply via email to