diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2014-09-17 22:23:19 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-09-17 22:23:19 +0200 |
commit | 634771a9b02658f529b9106041cb60a252a6cb16 (patch) | |
tree | 9d0e0d118674f008b485ee0a4136fb732a4aa06d /debian/patches/60_libart-config-static.patch | |
parent | da755a6dd6ce5a90715440d53a743b61ac5b1fef (diff) | |
download | libart-lgpl-r14.0.0.tar.gz libart-lgpl-r14.0.0.zip |
Packaging files are located in separate git repository
Diffstat (limited to 'debian/patches/60_libart-config-static.patch')
-rw-r--r-- | debian/patches/60_libart-config-static.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/debian/patches/60_libart-config-static.patch b/debian/patches/60_libart-config-static.patch deleted file mode 100644 index dd4fc8c..0000000 --- a/debian/patches/60_libart-config-static.patch +++ /dev/null @@ -1,38 +0,0 @@ -Add --static support to libart2-config --libs to avoid -lm -Debian #375812, GNOME #531278 - -Index: libart-config.in -=================================================================== ---- libart-config.in (revision 280) -+++ libart-config.in (working copy) -@@ -3,6 +3,8 @@ - prefix=@prefix@ - exec_prefix=@exec_prefix@ - exec_prefix_set=no -+libs="" -+output_libs=no - - usage="\ - Usage: libart-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]" -@@ -43,8 +45,11 @@ while test $# -gt 0; do - echo $includes - ;; - --libs) -- libdirs=-L@libdir@ -- echo $libdirs -lart_lgpl_2 -lm -+ libs="$libs -L@libdir@ -lart_lgpl_2" -+ output_libs=yes -+ ;; -+ --static) -+ libs="$libs -lm" - ;; - *) - echo "${usage}" 1>&2 -@@ -54,3 +59,7 @@ while test $# -gt 0; do - shift - done - -+if test $output_libs = yes ; then -+ echo $libs -+fi -+ |