diff options
author | Per Bothner <per@bothner.com> | 2004-06-04 10:20:22 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2004-06-04 10:20:22 -0700 |
commit | b9d71ce3e4860dd7ae12039eaa05c9731b12a095 (patch) | |
tree | 5dcf7fe1d68429aacfe1225763a6f492a238d0e5 /libmudflap/config.h.in | |
parent | 14bbffa1d211ad505bc165f762027596b87511f1 (diff) | |
download | gcc-b9d71ce3e4860dd7ae12039eaa05c9731b12a095.tar.gz |
configure.in (LIBMUDFLAPTH): Fix thinko.
* configure.in (LIBMUDFLAPTH): Fix thinko.
* configure.in: Check for more headers.
* mf-hooks2.c: Conditionalize on HAVE_SYS_SOCKET_H etc.
* mf-runtime.c: In two places conditionalize on SIUSR1 rather than
HAVE_SIGNAL as mingw has signal.h but not SIUSR1.
From-SVN: r82627
Diffstat (limited to 'libmudflap/config.h.in')
-rw-r--r-- | libmudflap/config.h.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libmudflap/config.h.in b/libmudflap/config.h.in index 3e3aa1227ee..3c5484276db 100644 --- a/libmudflap/config.h.in +++ b/libmudflap/config.h.in @@ -36,6 +36,9 @@ /* Define to 1 if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H +/* Define to 1 if you have the <netdb.h> header file. */ +#undef HAVE_NETDB_H + /* define if you have <pthread.h> */ #undef HAVE_PTHREAD_H @@ -63,12 +66,24 @@ /* Define to 1 if you have the <string.h> header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the <sys/ipc.h> header file. */ +#undef HAVE_SYS_IPC_H + +/* Define to 1 if you have the <sys/sem.h> header file. */ +#undef HAVE_SYS_SEM_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/stat.h> header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the <sys/types.h> header file. */ #undef HAVE_SYS_TYPES_H +/* Define to 1 if you have the <sys/wait.h> header file. */ +#undef HAVE_SYS_WAIT_H + /* union semun defined in sys/ipc.h or sys/sem.h */ #undef HAVE_UNION_SEMUN |