patches/ltrace/0.5.3/170-lib-supcc.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sun May 11 18:42:30 2014 +0200 (2014-05-11)
changeset 3316 42590ff8521c
permissions -rw-r--r--
binutils/binutils: do not forget to extract elf2flt

In case we're using a custom (aka local) binutils source, we still
need to extract and patch elf2flt.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
rsc@1968
     1
Index: ltrace-0.5.3/configure
rsc@1968
     2
===================================================================
rsc@1968
     3
--- ltrace-0.5.3/configure
rsc@1968
     4
+++ ltrace-0.5.3/configure
rsc@1968
     5
@@ -78,7 +78,10 @@ fi
rsc@1968
     6
 rm -f conftest.c a.out
rsc@1968
     7
 
rsc@1968
     8
 CFLAGS='-g -O2'
rsc@1968
     9
-LIBS='-lelf -lsupc++ -liberty '
rsc@1968
    10
+LIBS='-lelf'
rsc@1968
    11
+[ -n "$HAVE_LIBSUPC__" ] && LIBS="$LIBS -lsupc++"
rsc@1968
    12
+[ -n "$HAVE_LIBIBERTY" ] && LIBS="$LIBS -liberty"
rsc@1968
    13
+
rsc@1968
    14
 INSTALL='install -c'
rsc@1968
    15
 iquote='-iquote '
rsc@1968
    16
 iquoteend=''