mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
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.
This commit is contained in:
parent
4a3f163052
commit
25a75c7cc8
3 changed files with 15 additions and 1 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
2008-01-10 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* 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 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/gst/gstreamer-sections.txt:
|
||||
|
|
|
@ -84,7 +84,7 @@ echo timestamp > stamp-h.in 2> /dev/null
|
|||
|
||||
tool_run "$autoconf"
|
||||
debug "automake: $automake"
|
||||
tool_run "$automake" "--add-missing --copy"
|
||||
tool_run "$automake" "--add-missing --copy -Wno-portability"
|
||||
|
||||
test -n "$NOCONFIGURE" && {
|
||||
echo "skipping configure stage for package $package, as requested."
|
||||
|
|
|
@ -260,6 +260,9 @@ dnl *** checks for programs ***
|
|||
dnl find a compiler
|
||||
AC_PROG_CC
|
||||
|
||||
dnl check if the compiler supports '-c' and '-o' options
|
||||
AM_PROG_CC_C_O
|
||||
|
||||
dnl find an assembler
|
||||
AM_PROG_AS
|
||||
|
||||
|
|
Loading…
Reference in a new issue