Check-in Number:
|
3814 | |
Date: |
2002-Dec-03 11:48:25 (local)
2002-Dec-03 10:48:25 (UTC) |
User: | ms |
Branch: | |
Comment: |
At least fix detection of net/if.h. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/configure.in 1.8 -> 1.9
--- configure.in 2002/12/03 10:01:03 1.8
+++ configure.in 2002/12/03 10:48:25 1.9
@@ -54,7 +54,9 @@
dnl Checks header requirements
AC_HEADER_STDC
AC_HEADER_TIME
-AC_CHECK_HEADER(net/if.h)
+AC_CHECK_HEADER(net/if.h,,,
+[#include <sys/types.h>
+#include <sys/socket.h>])
dnl Portable thread conf from acx_pthread.m4 autoconf macro
ACX_PTHREAD
|
|