diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2022-03-09 16:24:38 -0800 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2022-03-09 16:24:38 -0800 |
commit | 537bd5f5dea823e71d408e31f1c839891fc8b294 (patch) | |
tree | 6b6ffc085307e00b0a72386fedfdbff893c39121 /app-text/lowdown/files | |
parent | sys-libs/pam_wrapper: depend on newer PAM (non split-usr) (diff) | |
download | gentoo-537bd5f5dea823e71d408e31f1c839891fc8b294.tar.gz gentoo-537bd5f5dea823e71d408e31f1c839891fc8b294.tar.bz2 gentoo-537bd5f5dea823e71d408e31f1c839891fc8b294.zip |
app-text/lowdown: Version bump to 0.11.1 (fix #832797)
Closes: https://bugs.gentoo.org/832797
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'app-text/lowdown/files')
-rw-r--r-- | app-text/lowdown/files/lowdown-0.11.1-linking.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-text/lowdown/files/lowdown-0.11.1-linking.patch b/app-text/lowdown/files/lowdown-0.11.1-linking.patch new file mode 100644 index 000000000000..89595d54fb02 --- /dev/null +++ b/app-text/lowdown/files/lowdown-0.11.1-linking.patch @@ -0,0 +1,33 @@ +diff --git a/Makefile b/Makefile +index 7705432..4208e47 100644 +--- a/Makefile ++++ b/Makefile +@@ -173,8 +173,8 @@ installwww: www + $(INSTALL) -m 0444 lowdown.tar.gz $(WWWDIR)/snapshots + $(INSTALL) -m 0444 lowdown.tar.gz.sha512 $(WWWDIR)/snapshots + +-lowdown: liblowdown.a main.o +- $(CC) -o $@ main.o liblowdown.a $(LDFLAGS) $(LDADD_MD5) -lm ++lowdown: liblowdown.so main.o ++ $(CC) -o $@ main.o $(LDADD_MD5) -lm -llowdown $(LDFLAGS) + + lowdown-diff: lowdown + ln -f lowdown lowdown-diff +@@ -183,7 +183,7 @@ liblowdown.a: $(OBJS) $(COMPAT_OBJS) + $(AR) rs $@ $(OBJS) $(COMPAT_OBJS) + + liblowdown.so: $(OBJS) $(COMPAT_OBJS) +- $(CC) -shared -o $@.$(LIBVER) $(OBJS) $(COMPAT_OBJS) $(LDFLAGS) $(LDADD_MD5) -Wl,-soname,$@.$(LIBVER) ++ $(CC) -shared -o $@.$(LIBVER) $(OBJS) $(COMPAT_OBJS) $(LDFLAGS) $(LDADD_MD5) -lm -Wl,-soname,$@.$(LIBVER) + ln -sf $@.$(LIBVER) $@ + + install: bins +@@ -218,7 +218,7 @@ install_shared: liblowdown.so install_lib_common + install_static: liblowdown.a install_lib_common + $(INSTALL_LIB) liblowdown.a $(DESTDIR)$(LIBDIR) + +-install_libs: install_shared install_static ++install_libs: install_shared + + distcheck: lowdown.tar.gz.sha512 + mandoc -Tlint -Werror man/*.[135] |