diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-07-25 15:52:06 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-07-25 15:52:06 +0000 |
commit | 526914e16972839421b1fabcb96e65ae8c23f6d8 (patch) | |
tree | 4845fcd72aa47b68ed0d635cfcdcb1187078f435 /benchmarks | |
parent | a40415240d002297aa903190c25182b427cfe63f (diff) | |
download | pkgsrc-526914e16972839421b1fabcb96e65ae8c23f6d8.tar.gz |
Ensure we pass through LDFLAGS for rpath, fixes check-shlibs.
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/postal/distinfo | 3 | ||||
-rw-r--r-- | benchmarks/postal/patches/patch-Makefile.in | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/benchmarks/postal/distinfo b/benchmarks/postal/distinfo index 9f90958ac16..f20d9032295 100644 --- a/benchmarks/postal/distinfo +++ b/benchmarks/postal/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.7 2013/05/23 14:59:13 joerg Exp $ +$NetBSD: distinfo,v 1.8 2014/07/25 15:52:06 jperkin Exp $ SHA1 (postal-0.70.tgz) = d02dc900eb645aa993c5747fa434a0af4b0fb7e0 RMD160 (postal-0.70.tgz) = 2b23ab0d60abfeaad32adf7ba65134d0f267294a Size (postal-0.70.tgz) = 99965 bytes +SHA1 (patch-Makefile.in) = 45f7357ff4407033818599a76b9c929b6c09b127 SHA1 (patch-aa) = 0d85ec46202e0077d7f435547158eff65eab8a69 SHA1 (patch-ab) = 38ed0b1ad550b31e8d46639e43b243e0e2b99cf5 SHA1 (patch-ad) = 3707f465c6a69c94fd862fb7863a3c8cb6519366 diff --git a/benchmarks/postal/patches/patch-Makefile.in b/benchmarks/postal/patches/patch-Makefile.in new file mode 100644 index 00000000000..45b092242e2 --- /dev/null +++ b/benchmarks/postal/patches/patch-Makefile.in @@ -0,0 +1,17 @@ +$NetBSD: patch-Makefile.in,v 1.1 2014/07/25 15:52:06 jperkin Exp $ + +Pass through LDFLAGS for rpath. + +--- Makefile.in.orig 2008-05-26 09:32:26.000000000 +0000 ++++ Makefile.in +@@ -17,8 +17,8 @@ INSTALL=@INSTALL@ + + TESTEXE=ex-test + BASEOBJS=userlist.o thread.o results.o address.o tcp.o cmd5.o mutex.o logit.o expand.o @extra_objs@ +-LFLAGS=-lstdc++ @extra_ldflags@ +-CRYPTLFLAGS=-lstdc++ @crypt_ldflags@ ++LFLAGS=${LDFLAGS} -lstdc++ @extra_ldflags@ ++CRYPTLFLAGS=${LDFLAGS} -lstdc++ @crypt_ldflags@ + + + ALLOBJS=$(BASEOBJS) smtp.o client.o basictcp.o bhmusers.o smtpserver.o |