diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-03-16 11:34:19 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-03-16 11:34:19 +0000 |
commit | 8898ff9e04cc139c0f66a0508ce8bb6c4b37408b (patch) | |
tree | c7cbb8d428d2f1572037796ff9e26c7af185ca18 | |
parent | 912fd9b165f2417836b0c2b0b3c0cd11a90354c2 (diff) |
Added checks for RAND_screen, malloc.h and stdlib.h
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 5a76508ce..5f79aaff9 100644 --- a/configure.in +++ b/configure.in @@ -119,6 +119,8 @@ dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS( \ unistd.h \ + malloc.h \ + stdlib.h \ arpa/inet.h \ net/if.h \ netinet/in.h \ @@ -183,7 +185,8 @@ AC_CHECK_FUNCS( socket \ getpass \ closesocket \ setvbuf \ - RAND_status + RAND_status \ + RAND_screen ) |