pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/lua-lpeg
Module Name: pkgsrc
Committed By: wiz
Date: Wed Jul 12 11:07:36 UTC 2017
Modified Files:
pkgsrc/devel/lua-lpeg: Makefile distinfo
Added Files:
pkgsrc/devel/lua-lpeg/patches: patch-makefile
Log Message:
Honor LDFLAGS. Fixes RELRO build.
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/lua-lpeg/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/lua-lpeg/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/lua-lpeg/patches/patch-makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/lua-lpeg/Makefile
diff -u pkgsrc/devel/lua-lpeg/Makefile:1.13 pkgsrc/devel/lua-lpeg/Makefile:1.14
--- pkgsrc/devel/lua-lpeg/Makefile:1.13 Mon Jan 30 21:16:34 2017
+++ pkgsrc/devel/lua-lpeg/Makefile Wed Jul 12 11:07:36 2017
@@ -1,5 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2017/01/30 21:16:34 alnsn Exp $
-#
+# $NetBSD: Makefile,v 1.14 2017/07/12 11:07:36 wiz Exp $
DISTNAME= lpeg-1.0.1
PKGNAME= ${DISTNAME:S/lpeg/${LUA_PKGPREFIX}-lpeg/}
Index: pkgsrc/devel/lua-lpeg/distinfo
diff -u pkgsrc/devel/lua-lpeg/distinfo:1.7 pkgsrc/devel/lua-lpeg/distinfo:1.8
--- pkgsrc/devel/lua-lpeg/distinfo:1.7 Tue Jan 24 08:18:48 2017
+++ pkgsrc/devel/lua-lpeg/distinfo Wed Jul 12 11:07:36 2017
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.7 2017/01/24 08:18:48 alnsn Exp $
+$NetBSD: distinfo,v 1.8 2017/07/12 11:07:36 wiz Exp $
SHA1 (lpeg-1.0.1.tar.gz) = b2f81624e0ce9c99c0731287c3475fac1f1c0f50
RMD160 (lpeg-1.0.1.tar.gz) = ce31666f7d55ad6957c2b274983d7d201fa797dd
SHA512 (lpeg-1.0.1.tar.gz) = 7b43fbee7eff443000986684bc56bba6d2796a31cf860740746c70e155bdea1b62a46b93f97e2747e3ef0f63e965148778ac2985d0f2d83e1e37ec4ebbabf4aa
Size (lpeg-1.0.1.tar.gz) = 71527 bytes
+SHA1 (patch-makefile) = b68221029ee287aa72605f69d679eae45dfa34a3
Added files:
Index: pkgsrc/devel/lua-lpeg/patches/patch-makefile
diff -u /dev/null pkgsrc/devel/lua-lpeg/patches/patch-makefile:1.1
--- /dev/null Wed Jul 12 11:07:36 2017
+++ pkgsrc/devel/lua-lpeg/patches/patch-makefile Wed Jul 12 11:07:36 2017
@@ -0,0 +1,15 @@
+$NetBSD: patch-makefile,v 1.1 2017/07/12 11:07:36 wiz Exp $
+
+Honor LDFLAGS for RELRO builds.
+
+--- makefile.orig 2017-01-14 18:57:16.000000000 +0000
++++ makefile
+@@ -36,7 +36,7 @@ macosx:
+ make lpeg.so "DLLFLAGS = -bundle -undefined dynamic_lookup"
+
+ lpeg.so: $(FILES)
+- env $(CC) $(DLLFLAGS) $(FILES) -o lpeg.so
++ env $(CC) $(LDFLAGS) $(DLLFLAGS) $(FILES) -o lpeg.so
+
+ $(FILES): makefile
+
Home |
Main Index |
Thread Index |
Old Index