From 868b72c9a3b624231fd36fb6fe68ecac8584f9af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 10 Jan 2008 12:36:46 +0000 Subject: autogen.sh: Add -Wno-portability to the automake parameters to stop warnings about GNU make extensions being used. We... Original commit message from CVS: * autogen.sh: Add -Wno-portability to the automake parameters to stop warnings about GNU make extensions being used. We require GNU make in almost every Makefile anyway. * configure.ac: Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o at the same time is required for per target flags. --- ChangeLog | 11 +++++++++++ autogen.sh | 2 +- configure.ac | 3 +++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f6147a52..6d97dbde 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2008-01-10 Sebastian Dröge + + * autogen.sh: + Add -Wno-portability to the automake parameters to stop warnings + about GNU make extensions being used. We require GNU make in almost + every Makefile anyway. + + * configure.ac: + Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o + at the same time is required for per target flags. + 2008-01-09 Wim Taymans * gst/rtpmanager/gstrtpsession.c: (create_send_rtp_sink): diff --git a/autogen.sh b/autogen.sh index 956d8ddf..05a219ff 100755 --- a/autogen.sh +++ b/autogen.sh @@ -80,7 +80,7 @@ tool_run "$autoheader" echo timestamp > stamp-h.in 2> /dev/null tool_run "$autoconf" -tool_run "$automake" "-a -c" +tool_run "$automake" "-a -c -Wno-portability" # if enable exists, add an -enable option for each of the lines in that file if test -f enable; then diff --git a/configure.ac b/configure.ac index 9caf9dcd..1b0d08bd 100644 --- a/configure.ac +++ b/configure.ac @@ -150,6 +150,9 @@ AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no) AS_PROG_OBJC +dnl check if the compiler supports '-c' and '-o' options +AM_PROG_CC_C_O + AC_PATH_PROG(VALGRIND_PATH, valgrind, no) AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno") -- cgit v1.2.1