diff options
author | 2011-10-02 18:58:09 +0000 | |
---|---|---|
committer | 2011-10-02 18:58:09 +0000 | |
commit | d89c888d0ad11c94c10a4006f45b77316aba48c6 (patch) | |
tree | ab7580c7fa3964b34a6d10ed9fefbf55bd0b914d /net-libs/udns/files | |
parent | app-office/grisbi: Bump to 0.8.8 (diff) | |
download | gentoo-2-d89c888d0ad11c94c10a4006f45b77316aba48c6.tar.gz gentoo-2-d89c888d0ad11c94c10a4006f45b77316aba48c6.tar.bz2 gentoo-2-d89c888d0ad11c94c10a4006f45b77316aba48c6.zip |
Version bump. Respect LDFLAGS, bug #336040 wrt Diego Elio Pettenò.
(Portage version: 2.1.10.20/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/udns/files')
-rw-r--r-- | net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch b/net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch new file mode 100644 index 000000000000..c7afaf8192b2 --- /dev/null +++ b/net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch @@ -0,0 +1,13 @@ +=== modified file 'Makefile.in' +--- Makefile.in 2011-10-02 18:48:41 +0000 ++++ Makefile.in 2011-10-02 18:50:00 +0000 +@@ -72,7 +72,7 @@ + sharedlib: $(SOLIBV) + + $(SOLIBV): $(SOBJS) +- $(CC) -shared -Wl,--soname,$(SOLIBV) -o $@ $(SOBJS) ++ $(CC) $(LDFLAGS) -shared -Wl,--soname,$(SOLIBV) -o $@ $(SOBJS) + $(SOLIB): $(SOLIBV) + rm -f $@ + ln -s $(SOLIBV) $@ + |