summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/dependencies/libart-lgpl/debian/patches/60_libart-config-static.patch
diff options
context:
space:
mode:
Diffstat (limited to 'ubuntu/maverick/dependencies/libart-lgpl/debian/patches/60_libart-config-static.patch')
-rw-r--r--ubuntu/maverick/dependencies/libart-lgpl/debian/patches/60_libart-config-static.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/ubuntu/maverick/dependencies/libart-lgpl/debian/patches/60_libart-config-static.patch b/ubuntu/maverick/dependencies/libart-lgpl/debian/patches/60_libart-config-static.patch
deleted file mode 100644
index dd4fc8c2e..000000000
--- a/ubuntu/maverick/dependencies/libart-lgpl/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
-+