summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-03-27 18:23:01 +0100
committerDiego Biurrun <diego@biurrun.de>2013-08-02 19:19:02 +0200
commit3a7050ffed5ce061b114a11e4de4b77aba8efa0b (patch)
treef60adb7305f1f04290e0d2de75b41a87ce042f9f /configure
parent79be2c325c5ee8f7ac9e28399e51986ebe99bb3c (diff)
build: Add _Pragma macro to disable deprecated declaration warnings
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index 3420f3c172..979cc600c3 100755
--- a/configure
+++ b/configure
@@ -1319,6 +1319,7 @@ HAVE_LIST="
nanosleep
poll_h
posix_memalign
+ pragma_deprecated
rdtsc
sched_getaffinity
sdl
@@ -3393,6 +3394,11 @@ void foo(char * $restrict_keyword p);
EOF
done
+check_cc <<EOF && enable pragma_deprecated
+_Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
+_Pragma("GCC diagnostic warning \"-Wdeprecated-declarations\"")
+EOF
+
check_cc <<EOF && enable attribute_packed
struct { int x; } __attribute__((packed)) x;
EOF