rbb 99/10/18 05:44:00
Modified: src/lib/apr/include apr_win.h src/lib/apr/lib apr_getpass.c Log: Remove a warning from apr_getpass.c Revision Changes Path 1.4 +5 -0 apache-2.0/src/lib/apr/include/apr_win.h Index: apr_win.h =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_win.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- apr_win.h 1999/09/24 18:41:14 1.3 +++ apr_win.h 1999/10/18 12:43:58 1.4 @@ -75,6 +75,11 @@ #include <stdio.h> #include <time.h> +/* Use this section to define all of the HAVE_FOO_H + * that are required to build properly. + */ +#define HAVE_CONIO_H 1 + /* struct iovec is needed to emulate Unix writev */ struct iovec { char* iov_base; 1.7 +1 -1 apache-2.0/src/lib/apr/lib/apr_getpass.c Index: apr_getpass.c =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/lib/apr_getpass.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- apr_getpass.c 1999/09/24 18:37:09 1.6 +++ apr_getpass.c 1999/10/18 12:43:59 1.7 @@ -70,7 +70,7 @@ #include <sys/types.h> #include <errno.h> -#if HAVE_CONIO_h +#if HAVE_CONIO_H #include <conio.h> #endif