diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-13 21:09:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-13 21:09:29 +0900 |
commit | fa0bd7b359b128eb920a6d47f294fd3dfbc7bfab (patch) | |
tree | e4a5b79a216210ebde5dc8496b0d87f6e00e2fca | |
parent | 6f0877f3e64e31e47e4ddfc8c2c9fe8f38b8d739 (diff) | |
download | kaffeine-fa0bd7b359b128eb920a6d47f294fd3dfbc7bfab.tar.gz kaffeine-fa0bd7b359b128eb920a6d47f294fd3dfbc7bfab.zip |
Replaced _BSD_SOURCE, _SVID_SOURCE with _DEFAULT_SOURCE. Removed AC_CHECK_GNU_EXTENSIONS.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | kaffeine/src/player-parts/dummy-part/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kaffeine/src/player-parts/dummy-part/Makefile b/kaffeine/src/player-parts/dummy-part/Makefile index 009c681..b26150a 100644 --- a/kaffeine/src/player-parts/dummy-part/Makefile +++ b/kaffeine/src/player-parts/dummy-part/Makefile @@ -52,7 +52,7 @@ AUTOMAKE = ${SHELL} /partage/Linux/site/tmp/kaffeine-0.8.8/admin/missing --run a AWK = gawk CC = gcc CCDEPMODE = depmode=gcc3 -CFLAGS = -std=iso9899:1990 -W -Wall -Wchar-subscripts -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2 -Wformat-security -Wmissing-format-attribute +CFLAGS = -std=iso9899:1990 -W -Wall -Wchar-subscripts -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_DEFAULT_SOURCE -O2 -Wformat-security -Wmissing-format-attribute CFLAGS_DPMS = CFLAGS_GSTREAMER = CFLAGS_OGGVORBIS = @@ -66,7 +66,7 @@ CPPFLAGS = -DTQT_THREAD_SUPPORT -D_REENTRANT CXX = g++ CXXCPP = g++ -E CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -Wno-long-long -Wundef -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DTQT_NO_ASCII_CAST -DTQT_NO_STL -DTQT_NO_COMPAT -DTQT_NO_TRANSLATION +CXXFLAGS = -Wno-long-long -Wundef -D_XOPEN_SOURCE=500 -D_DEFAULT_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DTQT_NO_ASCII_CAST -DTQT_NO_STL -DTQT_NO_COMPAT -DTQT_NO_TRANSLATION CYGPATH_W = echo DCOPIDL = ${prefix}/bin/dcopidl DCOPIDL2CPP = ${prefix}/bin/dcopidl2cpp |