Date: 04/23/99
- Next message: zager <email protected>: "[PHP-DEV] Bug #1345: ereg failed"
- Previous message: rasmus: "[PHP-DEV] CVS update: php3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I've managed to get PHP3 compiled and running as an Apache module under OS/2
and would like to start merging my changes back into the PHP3 source tree.
As a start I'd like to sort out functions/pageinfo.h. It uses
#ifndef _PROCESS_H
#define _PROCESS_H
at the start which messes up because the C library header process.h defines
the same symbol. It really should use _PAGEINFO_H. Or is there some weird
reason for this?
Index: functions/pageinfo.h
===================================================================
RCS file: /repository/php3/functions/pageinfo.h,v
retrieving revision 1.3
diff -u -r1.3 pageinfo.h
--- pageinfo.h 1997/12/07 07:09:21 1.3
+++ pageinfo.h 1999/04/23 07:22:20
@@ -1,5 +1,5 @@
-#ifndef _PROCESS_H
-#define _PROCESS_H
+#ifndef _PAGEINFO_H
+#define _PAGEINFO_H
extern void php3_getmyuid(INTERNAL_FUNCTION_PARAMETERS);
extern void php3_getmypid(INTERNAL_FUNCTION_PARAMETERS);
-- ______________________________________________________________________________ | Brian Havard | "He is not the messiah! | | brianh <email protected> | He's a very naughty boy!" - Life of Brian | -------------------------------------------------------------------------------- PHP Development Mailing List http://www.php.net/ To unsubscribe send an empty message to php-dev-unsubscribe <email protected> For help: php-dev-help <email protected>
- Next message: zager <email protected>: "[PHP-DEV] Bug #1345: ereg failed"
- Previous message: rasmus: "[PHP-DEV] CVS update: php3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

