1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Description: Do not set rpath
Author: Ansgar Burchardt <ansgar@debian.org>
Origin: vendor
Last-Update: 2013-09-20
Do not set rpath for Boost libraries. While at it, also disable silent rules
to make finding problems easier.
Index: cclive-0.9.3/configure.ac
===================================================================
--- cclive-0.9.3.orig/configure.ac
+++ cclive-0.9.3/configure.ac
@@ -17,8 +17,8 @@ AC_USE_SYSTEM_EXTENSIONS
AC_DEFINE_UNQUOTED([CANONICAL_TARGET], "$target",
[Define to canonical target])
-AM_INIT_AUTOMAKE([1.11.1 -Wall -Werror dist-xz no-dist-gzip tar-ustar])
-AM_SILENT_RULES([yes])
+AM_INIT_AUTOMAKE([1.11.1 -Wall -Werror dist-xz no-dist-gzip tar-ustar subdir-objects])
+AM_SILENT_RULES([no])
# GNU Automake 1.12 requires this macro. Earlier versions do not
# recognize this macro. Work around this.
Index: cclive-0.9.3/m4/boost.m4
===================================================================
--- cclive-0.9.3.orig/m4/boost.m4
+++ cclive-0.9.3/m4/boost.m4
@@ -421,7 +421,7 @@ dnl generated only once above (before we
LDFLAGS=$boost_save_LDFLAGS
LIBS=$boost_save_LIBS
])
- Boost_lib_LDFLAGS="-L$boost_ldpath $boost_cv_rpath_link_ldflag$boost_ldpath"
+ Boost_lib_LDFLAGS="-L$boost_ldpath"
Boost_lib_LDPATH="$boost_ldpath"
break 6
else
|