trawick 00/12/06 05:08:28
Modified: . aclocal.m4
Log:
change #if HAVE_xyz_H to #ifdef_xyz_H for consistency
Revision Changes Path
1.34 +5 -5 apr/aclocal.m4
Index: aclocal.m4
===================================================================
RCS file: /home/cvs/apr/aclocal.m4,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- aclocal.m4 2000/12/05 23:15:04 1.33
+++ aclocal.m4 2000/12/06 13:08:27 1.34
@@ -236,19 +236,19 @@
AC_DEFUN(APR_CHECK_GETHOSTBYNAME_NAS,[
AC_CACHE_CHECK(for gethostbyname() which handles numeric address strings,
ac_cv_gethostbyname_nas,[
AC_TRY_RUN( [
-#if HAVE_SYS_TYPES_H
+#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
-#if HAVE_NETINET_IN_H
+#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
-#if HAVE_ARPA_INET_H
+#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
-#if HAVE_NETDB_H
+#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
-#if HAVE_STDLIB_H
+#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
void main(void) {