shithub: libvpx

Download patch

ref: 6baa2b47ebfb4d8cbbe8e20eceb6a534bc56e1e3
parent: f75448ed733baa93dcc07f9cf3265180974e2654
parent: bc1d3cb90bc17b03597b5c6dbcad896585ca4a8d
author: John Koleszar <jkoleszar@google.com>
date: Wed Oct 24 05:36:40 EDT 2012

Merge "Fix "_FORTIFY_SOURCE" redefined warning" into experimental

--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -974,7 +974,7 @@
 
     # Work around longjmp interception on glibc >= 2.11, to improve binary
     # compatibility. See http://code.google.com/p/webm/issues/detail?id=166
-    enabled linux && check_add_cflags -D_FORTIFY_SOURCE=0
+    enabled linux && check_add_cflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0
 
     # Check for strip utility variant
     ${STRIP} -V 2>/dev/null | grep GNU >/dev/null && enable gnu_strip
--