shithub: libsamplerate

Download patch

ref: d15d01d83198c35a99629df7e0159db4c519eb36
parent: 69afa69e78cb2a3a70dcb5881823f762f52c9e48
author: Erik de Castro Lopo <erikd@mega-nerd.com>
date: Sat Jan 27 07:57:20 EST 2007

configure.ac : Remove -pendantic from CFLAGS and add -std=gnu99.

--- a/configure.ac
+++ b/configure.ac
@@ -175,7 +175,7 @@
 # GCC stuff.
 
 if test $ac_cv_c_compiler_gnu = yes ; then
-	CFLAGS="$CFLAGS -W -Wstrict-prototypes -Wmissing-prototypes -Wall -pedantic -Waggregate-return -Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wpointer-arith"
+	CFLAGS="$CFLAGS -std=gnu99 -W -Wstrict-prototypes -Wmissing-prototypes -Wall -Waggregate-return -Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wpointer-arith"
 	# -Wundef -Wbad-function-cast -Wmissing-declarations -Wconversion -Winline"
 	if test "$ac_arg_gcc_opt" = "N" ; then
 		temp_CFLAGS=`echo $CFLAGS | sed "s/O2/O0/"`
@@ -183,11 +183,11 @@
 		AC_MSG_WARN([[*** Compiler optimisations switched off. ***]])
 		fi
 
-	# Disable -Wall and -pedantic for Apple Darwin/Rhapsody.
+	# Disable -Wall for Apple Darwin/Rhapsody.
 	# System headers on these systems are broken.
 	case "$target_os" in
 		darwin* | rhapsody*)
-			temp_CFLAGS=`echo $CFLAGS | sed "s/-Wall -pedantic//"`
+			temp_CFLAGS=`echo $CFLAGS | sed "s/-Wall//"`
 			CFLAGS=$temp_CFLAGS
 			;;
 		linux*)