patches/ltrace/0.5.3/170-lib-supcc.patch
author Robert Schwebel <rsc@pengutronix.de>
Sat May 15 07:42:55 2010 +0200 (2010-05-15)
changeset 1968 dc6e202afe24
permissions -rw-r--r--
debug/ltrace: fix LDFLAGS for libsupc++ and libiberty

The configure script correctly detects libsupc++ and libiberty, but in
the linker stage it tries to link in both libraries without taking care
of the test result.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
[yann.morin.1998@anciens.enib.fr: rework patch depth to be -p1]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.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=''