[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
lynx-dev inet_addr configure
From: |
dickey |
Subject: |
lynx-dev inet_addr configure |
Date: |
Sat, 20 Feb 1999 06:51:19 -0500 (EST) |
Here's my current changes for configuration (should fix the complaints about
inet_addr -- let me know if it doesn/doesn't)
# ------------------------------------------------------------------------------
# WWW/Library/vms/libmake.com | 4 ++--
# aclocal.m4 | 6 +++---
# configure | 6 +++---
# 3 files changed, 8 insertions, 8 deletions
# ------------------------------------------------------------------------------
Index: WWW/Library/vms/libmake.com
--- lynx2.8.2dev.17+/WWW/Library/vms/libmake.com Wed Jan 28 05:39:47 1998
+++ lynx2.8.2dev.17a/WWW/Library/vms/libmake.com Sat Feb 20 06:28:47 1999
@@ -101,13 +101,13 @@
extra = extra + ",_DECC_V4_SOURCE,__SOCKET_TYPEDEFS"
$ v1 = f$verify(1)
$!
-$ cc/decc/prefix=ansi /nomember 'cc_opts'-
+$ cc/decc/prefix=all /nomember 'cc_opts'-
/warning=(disable=implicitfunc)-
/DEFINE=(DEBUG,ACCESS_AUTH,'transport''extra',VC="""2.14""")-
/INCLUDE=([-.Implementation],[---.src],[---.src.chrtrans],[---]) -
[-.Implementation]HTString.c
$!
-$ cc := cc/decc/prefix=ansi /nomember 'cc_opts'-
+$ cc := cc/decc/prefix=all /nomember 'cc_opts'-
/warning=(disable=implicitfunc)-
/DEFINE=(DEBUG,ACCESS_AUTH,'transport''extra')-
/INCLUDE=([-.Implementation],[---.src],[---.src.chrtrans],[---])
Index: aclocal.m4
--- lynx2.8.2dev.17+/aclocal.m4 Mon Feb 8 05:50:02 1999
+++ lynx2.8.2dev.17a/aclocal.m4 Sat Feb 20 06:31:04 1999
@@ -1163,7 +1163,7 @@
dnl FIXME: the inner cases will probably need work on the header files.
AC_DEFUN([CF_INET_ADDR],[
AC_CACHE_CHECK(for inet_aton function,cf_cv_have_inet_aton,[
-AC_TRY_LINK([
+AC_TRY_LINK([#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -1174,7 +1174,7 @@
AC_DEFINE(HAVE_INET_ATON)
else
AC_CACHE_CHECK(for inet_addr function,cf_cv_have_inet_addr,[
- AC_TRY_LINK([
+ AC_TRY_LINK([#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -1187,7 +1187,7 @@
for cf_inetlib in -lbind -lresolv
do
LIBS="$cf_save_LIBS $cf_inetlib"
- AC_TRY_LINK([
+ AC_TRY_LINK([#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
Index: configure
--- lynx2.8.2dev.17+/configure Mon Feb 8 05:50:02 1999
+++ lynx2.8.2dev.17a/configure Sat Feb 20 06:28:28 1999
@@ -6232,7 +6232,7 @@
cat > conftest.$ac_ext <<EOF
#line 6234 "configure"
#include "confdefs.h"
-
+#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -6269,7 +6269,7 @@
cat > conftest.$ac_ext <<EOF
#line 6271 "configure"
#include "confdefs.h"
-
+#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -6305,7 +6305,7 @@
cat > conftest.$ac_ext <<EOF
#line 6307 "configure"
#include "confdefs.h"
-
+#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
- lynx-dev inet_addr configure,
dickey <=