diff options
author | Linus Nordberg <linus@nordu.net> | 2012-04-03 16:56:23 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2012-04-03 16:56:23 +0200 |
commit | 6bf4f8868cd1681a795b2f2cb87d3f86fa33c04a (patch) | |
tree | c911b282551a67c883ee10a3009384dbc98b6ed6 | |
parent | bd51eb6d8063d5c4b74e94bc41d01dd3b01cba63 (diff) |
OpenSSL uses long long. We use -pedantic. Add -Wno-long-long.
Closes RADSECPROXY-34.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a74a054..8438bcb 100644 --- a/configure.ac +++ b/configure.ac @@ -79,7 +79,7 @@ case "${target_os}" in TARGET_LDFLAGS="-lpthread -lsocket -lnsl" ;; *) - TARGET_CFLAGS="-Wall -pedantic -pthread" + TARGET_CFLAGS="-Wall -pedantic -Wno-long-long -pthread" TARGET_LDFLAGS="" esac dnl Adding enabled options |