diff options
author | David Seifert <soap@gentoo.org> | 2021-03-13 13:05:13 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-03-13 13:05:13 +0100 |
commit | 1b574f0df77237c1ab159e390b47a1d47db6a6ef (patch) | |
tree | a8df392c4e7f9fa8e11d62ed084bb767adc20a07 /sci-biology/embassy-signature | |
parent | sci-biology/embassy-structure: Port to EAPI 7 (diff) | |
download | gentoo-1b574f0df77237c1ab159e390b47a1d47db6a6ef.tar.gz gentoo-1b574f0df77237c1ab159e390b47a1d47db6a6ef.tar.bz2 gentoo-1b574f0df77237c1ab159e390b47a1d47db6a6ef.zip |
sci-biology/embassy-signature: Fix building against clang/LLD
Closes: https://bugs.gentoo.org/731894
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/embassy-signature')
-rw-r--r-- | sci-biology/embassy-signature/files/embassy-signature-0.1.650_fix-build-system.patch | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/sci-biology/embassy-signature/files/embassy-signature-0.1.650_fix-build-system.patch b/sci-biology/embassy-signature/files/embassy-signature-0.1.650_fix-build-system.patch index 32e4d684cbb3..10bee217bab1 100644 --- a/sci-biology/embassy-signature/files/embassy-signature-0.1.650_fix-build-system.patch +++ b/sci-biology/embassy-signature/files/embassy-signature-0.1.650_fix-build-system.patch @@ -1,12 +1,6 @@ - configure.ac | 49 +++++++------------------------------------------ - src/Makefile.am | 6 ++---- - 2 files changed, 9 insertions(+), 46 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 2f5ddd0..827543f 100644 --- a/configure.ac +++ b/configure.ac -@@ -635,33 +635,6 @@ AS_CASE([${host_os}], +@@ -635,33 +635,6 @@ @@ -40,7 +34,7 @@ index 2f5ddd0..827543f 100644 dnl FIXME: This does no longer seem required with Autoconf 2.67? dnl Intel MacOSX 10.6 puts X11 in a non-standard place dnl AS_IF([test "x${with_x}" != "xno"], -@@ -737,21 +710,6 @@ AX_LIB_POSTGRESQL +@@ -737,21 +710,6 @@ @@ -62,7 +56,7 @@ index 2f5ddd0..827543f 100644 dnl Test if --enable-localforce given locallink="no" embprefix="/usr/local" -@@ -874,6 +832,13 @@ AC_ARG_ENABLE([systemlibs], +@@ -874,6 +832,13 @@ AM_CONDITIONAL([ESYSTEMLIBS], [test "x${enable_systemlibs}" = "xyes"]) @@ -76,11 +70,9 @@ index 2f5ddd0..827543f 100644 # Enable the purify tool: --enable-purify, sets CC and LIBTOOL -diff --git a/src/Makefile.am b/src/Makefile.am -index d77e43c..849f17a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am -@@ -17,9 +17,7 @@ AM_CPPFLAGS = -I../../../nucleus -I../../../ajax/pcre \ +@@ -17,9 +17,7 @@ -I../../../ajax/ensembl -I../../../ajax/ajaxdb \ -I../../../ajax/acd -I../../../plplot else @@ -91,10 +83,21 @@ index d77e43c..849f17a 100644 endif if ISSHARED -@@ -68,5 +66,5 @@ LDADD = ../../../nucleus/libnucleus.la ../../../ajax/acd/libacd.la \ +@@ -34,7 +32,7 @@ + -lnucleus -lacd -lajaxdb -lensembl -lajaxg -lajax -lepcre \ + $(NLAIXLIBS) -leplplot + else +-AIX_CFLAGS = -Wl,-bdynamic -Wl,-brtl -L${embprefix}/lib -lnucleus -lacd \ ++AIX_CFLAGS = -Wl,-bdynamic -Wl,-brtl -lnucleus -lacd \ + -lajaxdb -lensembl -lajaxg -lajax -lepcre $(NLAIXLIBS) -leplplot + endif + endif +@@ -67,6 +65,6 @@ + ../../../plplot/libeplplot.la \ $(XLIB) else - LDADD = -L${embprefix}/lib -lnucleus -lacd -lajaxdb -lensembl -lajaxg \ +-LDADD = -L${embprefix}/lib -lnucleus -lacd -lajaxdb -lensembl -lajaxg \ - -lajax -lepcre $(NLADD) -leplplot $(XLIB) ++LDADD = -lnucleus -lacd -lajaxdb -lensembl -lajaxg \ + -lajax $(NLADD) $(XLIB) endif |