diff options
author | 2005-08-24 07:54:42 +0000 | |
---|---|---|
committer | 2005-08-24 07:54:42 +0000 | |
commit | bc799035ddd1b147e5ba5cac474fe6782507c020 (patch) | |
tree | 631edef5d3503852b9c6d1430a30287a15e8d825 /x11-plugins/wmmp3/files | |
parent | Fixed cp commandline and removed root:root chown. (diff) | |
download | historical-bc799035ddd1b147e5ba5cac474fe6782507c020.tar.gz historical-bc799035ddd1b147e5ba5cac474fe6782507c020.tar.bz2 historical-bc799035ddd1b147e5ba5cac474fe6782507c020.zip |
Added patch to make safety checks on X includes and libraries. Closes bug #103531.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'x11-plugins/wmmp3/files')
-rw-r--r-- | x11-plugins/wmmp3/files/wmmp3-0.12-x_includes_n_libraries.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-plugins/wmmp3/files/wmmp3-0.12-x_includes_n_libraries.patch b/x11-plugins/wmmp3/files/wmmp3-0.12-x_includes_n_libraries.patch new file mode 100644 index 000000000000..91e6c679dcda --- /dev/null +++ b/x11-plugins/wmmp3/files/wmmp3-0.12-x_includes_n_libraries.patch @@ -0,0 +1,20 @@ +--- configure.orig 2005-08-24 09:45:23.000000000 +0200 ++++ configure 2005-08-24 09:45:08.000000000 +0200 +@@ -1977,11 +1977,15 @@ + + + if test "$x_includes" != "NONE"; then +- CFLAGS="$CFLAGS -I$x_includes" ++ if test "$x_includes" != ""; then ++ CFLAGS="$CFLAGS -I$x_includes" ++ fi + fi + + if test "$x_libraries" != "NONE"; then +- LDFLAGS="$LDFLAGS -L$x_libraries" ++ if test "$x_libraries" != ""; then ++ LDFLAGS="$LDFLAGS -L$x_libraries" ++ fi + fi + + echo $ac_n "checking for XOpenDisplay in -lX11""... $ac_c" 1>&6 |