diff options
author | Christian Beier <dontmind@freeshell.org> | 2015-05-28 15:34:10 +0200 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2015-05-28 15:34:10 +0200 |
commit | 92f558482d94c5152174a1983a40863bd6b07911 (patch) | |
tree | 923bd820cae4a80ec4989cf26f047de7f95b41bc /configure.ac | |
parent | 7c7e8e765c06a8af13c1f2662f1c7084c937738a (diff) | |
download | libtdevnc-92f558482d94c5152174a1983a40863bd6b07911.tar.gz libtdevnc-92f558482d94c5152174a1983a40863bd6b07911.zip |
Do away with rfbint.h generation and use stdint.h directly instead.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 0960e7e..6e60a0f 100644 --- a/configure.ac +++ b/configure.ac @@ -498,7 +498,7 @@ fi # Checks for header files. AC_HEADER_STDC -AC_CHECK_HEADERS([arpa/inet.h endian.h fcntl.h netdb.h netinet/in.h stdlib.h string.h sys/endian.h sys/socket.h sys/time.h sys/timeb.h syslog.h unistd.h ws2tcpip.h]) +AC_CHECK_HEADERS([arpa/inet.h endian.h fcntl.h netdb.h netinet/in.h stdlib.h stdint.h string.h sys/endian.h sys/socket.h sys/time.h sys/timeb.h syslog.h unistd.h ws2tcpip.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST @@ -508,11 +508,6 @@ AC_TYPE_SIZE_T AC_HEADER_TIME AC_HEADER_SYS_WAIT AX_TYPE_SOCKLEN_T -if test ! -d ./rfb; then - echo "creating subdir ./rfb for rfbint.h" - mkdir ./rfb -fi -AX_CREATE_STDINT_H(rfb/rfbint.h) AC_CACHE_CHECK([for in_addr_t], vnc_cv_inaddrt, [ AC_TRY_COMPILE([#include <sys/types.h> |