rbb 99/02/24 10:33:34
Modified: pthreads/src/include apr.h
Log:
Changing #ifdef to #if so the code compiles on systems other than AIX.
Revision Changes Path
1.3 +2 -1 apache-apr/pthreads/src/include/apr.h
Index: apr.h
===================================================================
RCS file: /home/cvs/apache-apr/pthreads/src/include/apr.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- apr.h 1999/02/23 20:52:11 1.2
+++ apr.h 1999/02/24 18:33:33 1.3
@@ -67,7 +67,7 @@
* Eventually, crap like the following will be abstracted out and
* pushed deep into APR...
*/
-#ifdef AIX=42
+#if AIX == 42
#define pthread_sigmask sigprocmask
#endif
@@ -76,3 +76,4 @@
#endif
#endif /* APR_H_ */
+