diff options
author | Guy Harris <guy@alum.mit.edu> | 2015-02-14 00:04:36 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2015-02-14 09:10:56 +0000 |
commit | a64fc6cf442f7dd566f85696aae17ab2249ba01f (patch) | |
tree | d90d34a6a73853df130f87c669d834a6f169abdb /ConfigureChecks.cmake | |
parent | f62353755b124472673620491d7709c4d35a6a80 (diff) | |
download | wireshark-a64fc6cf442f7dd566f85696aae17ab2249ba01f.tar.gz wireshark-a64fc6cf442f7dd566f85696aae17ab2249ba01f.tar.bz2 wireshark-a64fc6cf442f7dd566f85696aae17ab2249ba01f.zip |
Don't check for C89 headers.
1988 called, they want their lack of a C standard back. We don't need
to check whether we have stdarg.h, stddef.h, stdlib.h, or string.h, as
they're specified by C89 and I don't think there are any platforms we
care about that don't have a C89 environment in which we could be built.
Change-Id: I447551181284fab7722354b62774625ed8ee94bc
Reviewed-on: https://code.wireshark.org/review/7110
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index a743425191..a3be685778 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -40,12 +40,8 @@ check_include_file("netdb.h" HAVE_NETDB_H) #cmake_pop_check_state() check_include_file("portaudio.h" HAVE_PORTAUDIO_H) check_include_file("pwd.h" HAVE_PWD_H) -check_include_file("stdarg.h" HAVE_STDARG_H) -check_include_file("stddef.h" HAVE_STDDEF_H) check_include_file("stdint.h" HAVE_STDINT_H) -check_include_file("stdlib.h" HAVE_STDLIB_H) check_include_file("strings.h" HAVE_STRINGS_H) -check_include_file("string.h" HAVE_STRING_H) check_include_file("sys/ioctl.h" HAVE_SYS_IOCTL_H) check_include_file("sys/param.h" HAVE_SYS_PARAM_H) check_include_file("sys/socket.h" HAVE_SYS_SOCKET_H) |