rse 99/11/28 02:55:31
Modified: src CHANGES Configure Log: Fixed ap_config_auto.h generation in src/Configure: there for the ``quad integer'' stuff ``#ifndef+#undef+#endif'' pairs were generated instead of ``#ifdef+#undef+#endif'' pairs. Submitted by: Greg Siebers <[EMAIL PROTECTED]> Reviewed by: Ralf S. Engelschall PR: 5231 Revision Changes Path 1.1446 +5 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1445 retrieving revision 1.1446 diff -u -r1.1445 -r1.1446 --- CHANGES 1999/11/25 10:49:32 1.1445 +++ CHANGES 1999/11/28 10:55:28 1.1446 @@ -1,4 +1,9 @@ Changes with Apache 1.3.10 + + *) Fixed ap_config_auto.h generation in src/Configure: there for the ``quad + integer'' stuff ``#ifndef+#undef+#endif'' pairs were generated instead of + ``#ifdef+#undef+#endif'' pairs. + [Greg Siebers <[EMAIL PROTECTED]>] PR#5231 *) EBCDIC: fix the hsregex package to correctly deal with [a-zA-Z] type character ranges (the alphabet is non-contiguous in EBCDIC) and with 1.374 +2 -2 apache-1.3/src/Configure Index: Configure =================================================================== RCS file: /home/cvs/apache-1.3/src/Configure,v retrieving revision 1.373 retrieving revision 1.374 diff -u -r1.373 -r1.374 --- Configure 1999/10/27 09:30:19 1.373 +++ Configure 1999/11/28 10:55:28 1.374 @@ -2063,7 +2063,7 @@ else echo "" >>$AP_CONFIG_AUTO_H echo "/* determine: is off_t a quad */" >>$AP_CONFIG_AUTO_H - echo "#ifndef AP_OFF_T_IS_QUAD" >>$AP_CONFIG_AUTO_H + echo "#ifdef AP_OFF_T_IS_QUAD" >>$AP_CONFIG_AUTO_H echo "#undef AP_OFF_T_IS_QUAD" >>$AP_CONFIG_AUTO_H echo "#endif" >>$AP_CONFIG_AUTO_H fi @@ -2085,7 +2085,7 @@ else echo "" >>$AP_CONFIG_AUTO_H echo "/* determine: is void * a quad */" >>$AP_CONFIG_AUTO_H - echo "#ifndef AP_VOID_P_IS_QUAD" >>$AP_CONFIG_AUTO_H + echo "#ifdef AP_VOID_P_IS_QUAD" >>$AP_CONFIG_AUTO_H echo "#undef AP_VOID_P_IS_QUAD" >>$AP_CONFIG_AUTO_H echo "#endif" >>$AP_CONFIG_AUTO_H fi