mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Remove some configure header-file checks that we weren't really using.
We had some AC_CHECK_HEADER tests that were really wastes of cycles, because the code proceeded to #include those headers unconditionally anyway, in all or a large majority of cases. The lack of complaints shows that those headers are available on every platform of interest, so we might as well let configure run a bit faster by not probing those headers at all. I suspect that some of the tests I left alone are equally useless, but since all the existing #includes of the remaining headers are properly guarded, I didn't touch them.
This commit is contained in:
@ -14,9 +14,6 @@ dnl #define ACCEPT_TYPE_ARG1 int
|
|||||||
dnl #define ACCEPT_TYPE_ARG2 struct sockaddr *
|
dnl #define ACCEPT_TYPE_ARG2 struct sockaddr *
|
||||||
dnl #define ACCEPT_TYPE_ARG3 socklen_t
|
dnl #define ACCEPT_TYPE_ARG3 socklen_t
|
||||||
dnl
|
dnl
|
||||||
dnl This macro requires AC_CHECK_HEADERS to have already verified the
|
|
||||||
dnl presence or absence of sys/types.h and sys/socket.h.
|
|
||||||
dnl
|
|
||||||
dnl NOTE: This is just a modified version of the AC_FUNC_SELECT_ARGTYPES
|
dnl NOTE: This is just a modified version of the AC_FUNC_SELECT_ARGTYPES
|
||||||
dnl macro. Credit for that one goes to David MacKenzie et. al.
|
dnl macro. Credit for that one goes to David MacKenzie et. al.
|
||||||
dnl
|
dnl
|
||||||
@ -51,12 +48,8 @@ AC_DEFUN([AC_FUNC_ACCEPT_ARGTYPES],
|
|||||||
for ac_cv_func_accept_arg2 in 'struct sockaddr *' 'const struct sockaddr *' 'void *'; do
|
for ac_cv_func_accept_arg2 in 'struct sockaddr *' 'const struct sockaddr *' 'void *'; do
|
||||||
for ac_cv_func_accept_arg3 in 'int' 'size_t' 'socklen_t' 'unsigned int' 'void'; do
|
for ac_cv_func_accept_arg3 in 'int' 'size_t' 'socklen_t' 'unsigned int' 'void'; do
|
||||||
AC_COMPILE_IFELSE([AC_LANG_SOURCE(
|
AC_COMPILE_IFELSE([AC_LANG_SOURCE(
|
||||||
[#ifdef HAVE_SYS_TYPES_H
|
[#include <sys/types.h>
|
||||||
#include <sys/types.h>
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
extern $ac_cv_func_accept_return accept ($ac_cv_func_accept_arg1, $ac_cv_func_accept_arg2, $ac_cv_func_accept_arg3 *);])],
|
extern $ac_cv_func_accept_return accept ($ac_cv_func_accept_arg1, $ac_cv_func_accept_arg2, $ac_cv_func_accept_arg3 *);])],
|
||||||
[ac_not_found=no; break 4], [ac_not_found=yes])
|
[ac_not_found=no; break 4], [ac_not_found=yes])
|
||||||
done
|
done
|
||||||
|
@ -111,8 +111,12 @@ fi
|
|||||||
AC_DEFUN([PGAC_UNION_SEMUN],
|
AC_DEFUN([PGAC_UNION_SEMUN],
|
||||||
[AC_CHECK_TYPES([union semun], [], [],
|
[AC_CHECK_TYPES([union semun], [], [],
|
||||||
[#include <sys/types.h>
|
[#include <sys/types.h>
|
||||||
|
#ifdef HAVE_SYS_IPC_H
|
||||||
#include <sys/ipc.h>
|
#include <sys/ipc.h>
|
||||||
#include <sys/sem.h>])])# PGAC_UNION_SEMUN
|
#endif
|
||||||
|
#ifdef HAVE_SYS_SEM_H
|
||||||
|
#include <sys/sem.h>
|
||||||
|
#endif])])# PGAC_UNION_SEMUN
|
||||||
|
|
||||||
|
|
||||||
# PGAC_STRUCT_SOCKADDR_UN
|
# PGAC_STRUCT_SOCKADDR_UN
|
||||||
@ -135,9 +139,7 @@ AC_DEFUN([PGAC_STRUCT_SOCKADDR_UN],
|
|||||||
AC_DEFUN([PGAC_STRUCT_SOCKADDR_STORAGE],
|
AC_DEFUN([PGAC_STRUCT_SOCKADDR_STORAGE],
|
||||||
[AC_CHECK_TYPES([struct sockaddr_storage], [], [],
|
[AC_CHECK_TYPES([struct sockaddr_storage], [], [],
|
||||||
[#include <sys/types.h>
|
[#include <sys/types.h>
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
])])# PGAC_STRUCT_SOCKADDR_STORAGE
|
])])# PGAC_STRUCT_SOCKADDR_STORAGE
|
||||||
|
|
||||||
# PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS
|
# PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS
|
||||||
@ -154,9 +156,7 @@ AC_DEFUN([PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS],
|
|||||||
struct sockaddr_storage.__ss_len,
|
struct sockaddr_storage.__ss_len,
|
||||||
struct sockaddr.sa_len], [], [],
|
struct sockaddr.sa_len], [], [],
|
||||||
[#include <sys/types.h>
|
[#include <sys/types.h>
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
])])# PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS
|
])])# PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS
|
||||||
|
|
||||||
|
|
||||||
|
38
configure
vendored
38
configure
vendored
@ -10332,7 +10332,7 @@ fi
|
|||||||
## Header files
|
## Header files
|
||||||
##
|
##
|
||||||
|
|
||||||
for ac_header in atomic.h crypt.h dld.h fp_class.h getopt.h ieeefp.h ifaddrs.h langinfo.h mbarrier.h poll.h pwd.h sys/epoll.h sys/ioctl.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/shm.h sys/socket.h sys/sockio.h sys/tas.h sys/time.h sys/un.h termios.h ucred.h utime.h wchar.h wctype.h
|
for ac_header in atomic.h crypt.h dld.h fp_class.h getopt.h ieeefp.h ifaddrs.h langinfo.h mbarrier.h poll.h sys/epoll.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/shm.h sys/sockio.h sys/tas.h sys/un.h termios.h ucred.h utime.h wchar.h wctype.h
|
||||||
do :
|
do :
|
||||||
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
||||||
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
|
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
|
||||||
@ -10351,9 +10351,7 @@ done
|
|||||||
for ac_header in net/if.h
|
for ac_header in net/if.h
|
||||||
do :
|
do :
|
||||||
ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "$ac_includes_default
|
ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "$ac_includes_default
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
"
|
"
|
||||||
if test "x$ac_cv_header_net_if_h" = xyes; then :
|
if test "x$ac_cv_header_net_if_h" = xyes; then :
|
||||||
@ -10386,24 +10384,10 @@ done
|
|||||||
|
|
||||||
# At least on IRIX, test for netinet/tcp.h will fail unless
|
# At least on IRIX, test for netinet/tcp.h will fail unless
|
||||||
# netinet/in.h is included first.
|
# netinet/in.h is included first.
|
||||||
for ac_header in netinet/in.h
|
|
||||||
do :
|
|
||||||
ac_fn_c_check_header_mongrel "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default"
|
|
||||||
if test "x$ac_cv_header_netinet_in_h" = xyes; then :
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
|
||||||
#define HAVE_NETINET_IN_H 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
done
|
|
||||||
|
|
||||||
for ac_header in netinet/tcp.h
|
for ac_header in netinet/tcp.h
|
||||||
do :
|
do :
|
||||||
ac_fn_c_check_header_compile "$LINENO" "netinet/tcp.h" "ac_cv_header_netinet_tcp_h" "$ac_includes_default
|
ac_fn_c_check_header_compile "$LINENO" "netinet/tcp.h" "ac_cv_header_netinet_tcp_h" "$ac_includes_default
|
||||||
#ifdef HAVE_NETINET_IN_H
|
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
"
|
"
|
||||||
if test "x$ac_cv_header_netinet_tcp_h" = xyes; then :
|
if test "x$ac_cv_header_netinet_tcp_h" = xyes; then :
|
||||||
@ -11671,8 +11655,12 @@ $as_echo "#define HAVE_TZNAME 1" >>confdefs.h
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
ac_fn_c_check_type "$LINENO" "union semun" "ac_cv_type_union_semun" "#include <sys/types.h>
|
ac_fn_c_check_type "$LINENO" "union semun" "ac_cv_type_union_semun" "#include <sys/types.h>
|
||||||
|
#ifdef HAVE_SYS_IPC_H
|
||||||
#include <sys/ipc.h>
|
#include <sys/ipc.h>
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_SYS_SEM_H
|
||||||
#include <sys/sem.h>
|
#include <sys/sem.h>
|
||||||
|
#endif
|
||||||
"
|
"
|
||||||
if test "x$ac_cv_type_union_semun" = xyes; then :
|
if test "x$ac_cv_type_union_semun" = xyes; then :
|
||||||
|
|
||||||
@ -11696,9 +11684,7 @@ $as_echo "#define HAVE_UNIX_SOCKETS 1" >>confdefs.h
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
ac_fn_c_check_type "$LINENO" "struct sockaddr_storage" "ac_cv_type_struct_sockaddr_storage" "#include <sys/types.h>
|
ac_fn_c_check_type "$LINENO" "struct sockaddr_storage" "ac_cv_type_struct_sockaddr_storage" "#include <sys/types.h>
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
"
|
"
|
||||||
if test "x$ac_cv_type_struct_sockaddr_storage" = xyes; then :
|
if test "x$ac_cv_type_struct_sockaddr_storage" = xyes; then :
|
||||||
@ -11711,9 +11697,7 @@ _ACEOF
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "ss_family" "ac_cv_member_struct_sockaddr_storage_ss_family" "#include <sys/types.h>
|
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "ss_family" "ac_cv_member_struct_sockaddr_storage_ss_family" "#include <sys/types.h>
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
"
|
"
|
||||||
if test "x$ac_cv_member_struct_sockaddr_storage_ss_family" = xyes; then :
|
if test "x$ac_cv_member_struct_sockaddr_storage_ss_family" = xyes; then :
|
||||||
@ -11725,9 +11709,7 @@ _ACEOF
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "__ss_family" "ac_cv_member_struct_sockaddr_storage___ss_family" "#include <sys/types.h>
|
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "__ss_family" "ac_cv_member_struct_sockaddr_storage___ss_family" "#include <sys/types.h>
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
"
|
"
|
||||||
if test "x$ac_cv_member_struct_sockaddr_storage___ss_family" = xyes; then :
|
if test "x$ac_cv_member_struct_sockaddr_storage___ss_family" = xyes; then :
|
||||||
@ -11739,9 +11721,7 @@ _ACEOF
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "ss_len" "ac_cv_member_struct_sockaddr_storage_ss_len" "#include <sys/types.h>
|
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "ss_len" "ac_cv_member_struct_sockaddr_storage_ss_len" "#include <sys/types.h>
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
"
|
"
|
||||||
if test "x$ac_cv_member_struct_sockaddr_storage_ss_len" = xyes; then :
|
if test "x$ac_cv_member_struct_sockaddr_storage_ss_len" = xyes; then :
|
||||||
@ -11753,9 +11733,7 @@ _ACEOF
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "__ss_len" "ac_cv_member_struct_sockaddr_storage___ss_len" "#include <sys/types.h>
|
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "__ss_len" "ac_cv_member_struct_sockaddr_storage___ss_len" "#include <sys/types.h>
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
"
|
"
|
||||||
if test "x$ac_cv_member_struct_sockaddr_storage___ss_len" = xyes; then :
|
if test "x$ac_cv_member_struct_sockaddr_storage___ss_len" = xyes; then :
|
||||||
@ -11767,9 +11745,7 @@ _ACEOF
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
ac_fn_c_check_member "$LINENO" "struct sockaddr" "sa_len" "ac_cv_member_struct_sockaddr_sa_len" "#include <sys/types.h>
|
ac_fn_c_check_member "$LINENO" "struct sockaddr" "sa_len" "ac_cv_member_struct_sockaddr_sa_len" "#include <sys/types.h>
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
"
|
"
|
||||||
if test "x$ac_cv_member_struct_sockaddr_sa_len" = xyes; then :
|
if test "x$ac_cv_member_struct_sockaddr_sa_len" = xyes; then :
|
||||||
@ -12427,12 +12403,8 @@ else
|
|||||||
for ac_cv_func_accept_arg3 in 'int' 'size_t' 'socklen_t' 'unsigned int' 'void'; do
|
for ac_cv_func_accept_arg3 in 'int' 'size_t' 'socklen_t' 'unsigned int' 'void'; do
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
#ifdef HAVE_SYS_TYPES_H
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#endif
|
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
extern $ac_cv_func_accept_return accept ($ac_cv_func_accept_arg1, $ac_cv_func_accept_arg2, $ac_cv_func_accept_arg3 *);
|
extern $ac_cv_func_accept_return accept ($ac_cv_func_accept_arg1, $ac_cv_func_accept_arg2, $ac_cv_func_accept_arg3 *);
|
||||||
_ACEOF
|
_ACEOF
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
@ -1162,16 +1162,13 @@ AC_SUBST(UUID_LIBS)
|
|||||||
## Header files
|
## Header files
|
||||||
##
|
##
|
||||||
|
|
||||||
dnl sys/socket.h is required by AC_FUNC_ACCEPT_ARGTYPES
|
AC_CHECK_HEADERS([atomic.h crypt.h dld.h fp_class.h getopt.h ieeefp.h ifaddrs.h langinfo.h mbarrier.h poll.h sys/epoll.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/shm.h sys/sockio.h sys/tas.h sys/un.h termios.h ucred.h utime.h wchar.h wctype.h])
|
||||||
AC_CHECK_HEADERS([atomic.h crypt.h dld.h fp_class.h getopt.h ieeefp.h ifaddrs.h langinfo.h mbarrier.h poll.h pwd.h sys/epoll.h sys/ioctl.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/shm.h sys/socket.h sys/sockio.h sys/tas.h sys/time.h sys/un.h termios.h ucred.h utime.h wchar.h wctype.h])
|
|
||||||
|
|
||||||
# On BSD, test for net/if.h will fail unless sys/socket.h
|
# On BSD, test for net/if.h will fail unless sys/socket.h
|
||||||
# is included first.
|
# is included first.
|
||||||
AC_CHECK_HEADERS(net/if.h, [], [],
|
AC_CHECK_HEADERS(net/if.h, [], [],
|
||||||
[AC_INCLUDES_DEFAULT
|
[AC_INCLUDES_DEFAULT
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
|
||||||
])
|
])
|
||||||
|
|
||||||
# On OpenBSD, test for sys/ucred.h will fail unless sys/param.h
|
# On OpenBSD, test for sys/ucred.h will fail unless sys/param.h
|
||||||
@ -1183,12 +1180,9 @@ AC_CHECK_HEADERS(sys/ucred.h, [], [],
|
|||||||
|
|
||||||
# At least on IRIX, test for netinet/tcp.h will fail unless
|
# At least on IRIX, test for netinet/tcp.h will fail unless
|
||||||
# netinet/in.h is included first.
|
# netinet/in.h is included first.
|
||||||
AC_CHECK_HEADERS(netinet/in.h)
|
|
||||||
AC_CHECK_HEADERS(netinet/tcp.h, [], [],
|
AC_CHECK_HEADERS(netinet/tcp.h, [], [],
|
||||||
[AC_INCLUDES_DEFAULT
|
[AC_INCLUDES_DEFAULT
|
||||||
#ifdef HAVE_NETINET_IN_H
|
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#endif
|
|
||||||
])
|
])
|
||||||
|
|
||||||
if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
|
if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
|
||||||
|
@ -322,9 +322,7 @@ pg_foreach_ifaddr(PgIfAddrCallback callback, void *cb_data)
|
|||||||
}
|
}
|
||||||
#else /* !HAVE_GETIFADDRS && !WIN32 */
|
#else /* !HAVE_GETIFADDRS && !WIN32 */
|
||||||
|
|
||||||
#ifdef HAVE_SYS_IOCTL_H
|
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_NET_IF_H
|
#ifdef HAVE_NET_IF_H
|
||||||
#include <net/if.h>
|
#include <net/if.h>
|
||||||
|
@ -14,9 +14,7 @@
|
|||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#ifdef HAVE_PWD_H
|
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#endif
|
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
#include <sys/stat.h> /* for stat() */
|
#include <sys/stat.h> /* for stat() */
|
||||||
#include <fcntl.h> /* open() flags */
|
#include <fcntl.h> /* open() flags */
|
||||||
|
@ -18,9 +18,7 @@
|
|||||||
#ifndef LIBPQ_BE_H
|
#ifndef LIBPQ_BE_H
|
||||||
#define LIBPQ_BE_H
|
#define LIBPQ_BE_H
|
||||||
|
|
||||||
#ifdef HAVE_SYS_TIME_H
|
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#endif
|
|
||||||
#ifdef USE_OPENSSL
|
#ifdef USE_OPENSSL
|
||||||
#include <openssl/ssl.h>
|
#include <openssl/ssl.h>
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
|
@ -370,9 +370,6 @@
|
|||||||
/* Define to 1 if you have the `mkdtemp' function. */
|
/* Define to 1 if you have the `mkdtemp' function. */
|
||||||
#undef HAVE_MKDTEMP
|
#undef HAVE_MKDTEMP
|
||||||
|
|
||||||
/* Define to 1 if you have the <netinet/in.h> header file. */
|
|
||||||
#undef HAVE_NETINET_IN_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <netinet/tcp.h> header file. */
|
/* Define to 1 if you have the <netinet/tcp.h> header file. */
|
||||||
#undef HAVE_NETINET_TCP_H
|
#undef HAVE_NETINET_TCP_H
|
||||||
|
|
||||||
@ -415,9 +412,6 @@
|
|||||||
/* Have PTHREAD_PRIO_INHERIT. */
|
/* Have PTHREAD_PRIO_INHERIT. */
|
||||||
#undef HAVE_PTHREAD_PRIO_INHERIT
|
#undef HAVE_PTHREAD_PRIO_INHERIT
|
||||||
|
|
||||||
/* Define to 1 if you have the <pwd.h> header file. */
|
|
||||||
#undef HAVE_PWD_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `random' function. */
|
/* Define to 1 if you have the `random' function. */
|
||||||
#undef HAVE_RANDOM
|
#undef HAVE_RANDOM
|
||||||
|
|
||||||
@ -557,9 +551,6 @@
|
|||||||
/* Define to 1 if you have the <sys/epoll.h> header file. */
|
/* Define to 1 if you have the <sys/epoll.h> header file. */
|
||||||
#undef HAVE_SYS_EPOLL_H
|
#undef HAVE_SYS_EPOLL_H
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/ioctl.h> header file. */
|
|
||||||
#undef HAVE_SYS_IOCTL_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/ipc.h> header file. */
|
/* Define to 1 if you have the <sys/ipc.h> header file. */
|
||||||
#undef HAVE_SYS_IPC_H
|
#undef HAVE_SYS_IPC_H
|
||||||
|
|
||||||
@ -581,9 +572,6 @@
|
|||||||
/* Define to 1 if you have the <sys/shm.h> header file. */
|
/* Define to 1 if you have the <sys/shm.h> header file. */
|
||||||
#undef HAVE_SYS_SHM_H
|
#undef HAVE_SYS_SHM_H
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/socket.h> header file. */
|
|
||||||
#undef HAVE_SYS_SOCKET_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/sockio.h> header file. */
|
/* Define to 1 if you have the <sys/sockio.h> header file. */
|
||||||
#undef HAVE_SYS_SOCKIO_H
|
#undef HAVE_SYS_SOCKIO_H
|
||||||
|
|
||||||
@ -593,9 +581,6 @@
|
|||||||
/* Define to 1 if you have the <sys/tas.h> header file. */
|
/* Define to 1 if you have the <sys/tas.h> header file. */
|
||||||
#undef HAVE_SYS_TAS_H
|
#undef HAVE_SYS_TAS_H
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/time.h> header file. */
|
|
||||||
#undef HAVE_SYS_TIME_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||||
#undef HAVE_SYS_TYPES_H
|
#undef HAVE_SYS_TYPES_H
|
||||||
|
|
||||||
|
@ -252,9 +252,6 @@
|
|||||||
/* Define to 1 if you have the `mkdtemp' function. */
|
/* Define to 1 if you have the `mkdtemp' function. */
|
||||||
/* #undef HAVE_MKDTEMP */
|
/* #undef HAVE_MKDTEMP */
|
||||||
|
|
||||||
/* Define to 1 if you have the <netinet/in.h> header file. */
|
|
||||||
#define HAVE_NETINET_IN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <netinet/tcp.h> header file. */
|
/* Define to 1 if you have the <netinet/tcp.h> header file. */
|
||||||
/* #undef HAVE_NETINET_TCP_H */
|
/* #undef HAVE_NETINET_TCP_H */
|
||||||
|
|
||||||
@ -273,9 +270,6 @@
|
|||||||
/* Define to 1 if the PS_STRINGS thing exists. */
|
/* Define to 1 if the PS_STRINGS thing exists. */
|
||||||
/* #undef HAVE_PS_STRINGS */
|
/* #undef HAVE_PS_STRINGS */
|
||||||
|
|
||||||
/* Define to 1 if you have the <pwd.h> header file. */
|
|
||||||
#define HAVE_PWD_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `random' function. */
|
/* Define to 1 if you have the `random' function. */
|
||||||
/* #undef HAVE_RANDOM */
|
/* #undef HAVE_RANDOM */
|
||||||
|
|
||||||
@ -435,15 +429,9 @@
|
|||||||
/* Define to 1 if you have the <sys/shm.h> header file. */
|
/* Define to 1 if you have the <sys/shm.h> header file. */
|
||||||
/* #undef HAVE_SYS_SHM_H */
|
/* #undef HAVE_SYS_SHM_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/socket.h> header file. */
|
|
||||||
#define HAVE_SYS_SOCKET_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/time.h> header file. */
|
|
||||||
#define HAVE_SYS_TIME_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||||
#define HAVE_SYS_TYPES_H 1
|
#define HAVE_SYS_TYPES_H 1
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user