aboutsummaryrefslogtreecommitdiffstats
path: root/macosx-support-lib-patches
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-08-07 10:08:43 -0700
committerGuy Harris <guy@alum.mit.edu>2017-08-07 17:09:23 +0000
commitf63b0241c9eeb1ef3dc1e915820c440119c30526 (patch)
tree71163d680a5e9d2f9748c494e45ee943d9b7b5b8 /macosx-support-lib-patches
parent4053bde54b9c356bdee4f4e7548790ce5a06e9a5 (diff)
Fix SpanDSP build with older versions of Xcode.
Older versions of Xcode don't support -Wunused-but-set-variable, so remove it from the list of options with which to compile SpanDSP. Change-Id: Idd298e19eaf770980da179412480e17a00514d36 Reviewed-on: https://code.wireshark.org/review/22991 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'macosx-support-lib-patches')
-rw-r--r--macosx-support-lib-patches/spandsp-configure-patch53
1 files changed, 53 insertions, 0 deletions
diff --git a/macosx-support-lib-patches/spandsp-configure-patch b/macosx-support-lib-patches/spandsp-configure-patch
new file mode 100644
index 0000000000..5a898f993e
--- /dev/null
+++ b/macosx-support-lib-patches/spandsp-configure-patch
@@ -0,0 +1,53 @@
+*** configure.dist 2014-06-04 07:28:14.000000000 -0700
+--- configure 2017-08-07 00:16:39.000000000 -0700
+***************
+*** 19658,19664 ****
+
+ case "${ax_cv_c_compiler_vendor}" in
+ gnu)
+! COMP_VENDOR_CFLAGS="-std=gnu99 -ffast-math -Wall -Wunused-variable -Wunused-but-set-variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes $COMP_VENDOR_CFLAGS"
+ if test "$enable_avx" = "yes" ; then
+ COMP_VENDOR_CFLAGS="-mavx $COMP_VENDOR_CFLAGS"
+ fi
+--- 19658,19664 ----
+
+ case "${ax_cv_c_compiler_vendor}" in
+ gnu)
+! COMP_VENDOR_CFLAGS="-std=gnu99 -ffast-math -Wall -Wunused-variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes $COMP_VENDOR_CFLAGS"
+ if test "$enable_avx" = "yes" ; then
+ COMP_VENDOR_CFLAGS="-mavx $COMP_VENDOR_CFLAGS"
+ fi
+***************
+*** 19733,19739 ****
+
+ ;;
+ intel)
+! COMP_VENDOR_CFLAGS="-std=c99 -D_POSIX_C_SOURCE=2 -D_GNU_SOURCE=1 -Wall -Wunused-variable -Wunused-but-set-variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes $COMP_VENDOR_CFLAGS"
+ if test "$enable_avx" = "yes" ; then
+ COMP_VENDOR_CFLAGS="-mavx $COMP_VENDOR_CFLAGS"
+ fi
+--- 19733,19739 ----
+
+ ;;
+ intel)
+! COMP_VENDOR_CFLAGS="-std=c99 -D_POSIX_C_SOURCE=2 -D_GNU_SOURCE=1 -Wall -Wunused-variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes $COMP_VENDOR_CFLAGS"
+ if test "$enable_avx" = "yes" ; then
+ COMP_VENDOR_CFLAGS="-mavx $COMP_VENDOR_CFLAGS"
+ fi
+***************
+*** 19767,19773 ****
+ COMP_VENDOR_LDFLAGS=
+ ;;
+ *)
+! COMP_VENDOR_CFLAGS="-std=c99 -Wall -Wunused-variable -Wunused-but-set-variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes $COMP_VENDOR_CFLAGS"
+ COMP_VENDOR_LDFLAGS=
+ ;;
+ esac
+--- 19767,19773 ----
+ COMP_VENDOR_LDFLAGS=
+ ;;
+ *)
+! COMP_VENDOR_CFLAGS="-std=c99 -Wall -Wunused-variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes $COMP_VENDOR_CFLAGS"
+ COMP_VENDOR_LDFLAGS=
+ ;;
+ esac