You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/smpeg/files/smpeg-0.4.4-config.patch

19 lines
476 B

Only dump -L/-rpath if libdir is non-standard
--- a/smpeg-config.in
+++ b/smpeg-config.in
@@ -45,11 +45,13 @@
echo $includes -I@includedir@/smpeg `@SDL_CONFIG@ --cflags`
;;
--libs)
+ if [ "@libdir@" != "/usr/lib" ]; then
if [ "`uname`" = "SunOS" ]; then
libdirs="-L@libdir@ -R@libdir@"
else
libdirs="-L@libdir@ @SMPEG_RLD_FLAGS@"
fi
+ fi
echo $libdirs -lsmpeg `@SDL_CONFIG@ --libs`
;;
*)