* [gentoo-commits] gentoo-x86 commit in app-admin/paxtest/files: paxtest-0.9.9-Makefile.patch
@ 2010-08-09 12:31 Anthony G. Basile (blueness)
0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile (blueness) @ 2010-08-09 12:31 UTC (permalink / raw
To: gentoo-commits
blueness 10/08/09 12:31:06
Added: paxtest-0.9.9-Makefile.patch
Log:
Version bump to 0.9.9. See Bugs #322413 and #331599
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.1 app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch?rev=1.1&content-type=text/plain
Index: paxtest-0.9.9-Makefile.patch
===================================================================
diff -Naur paxtest-0.9.9.orig/Makefile paxtest-0.9.9/Makefile
--- paxtest-0.9.9.orig/Makefile 2010-02-22 18:47:19.000000000 -0500
+++ paxtest-0.9.9/Makefile 2010-08-09 07:50:53.000000000 -0400
@@ -52,11 +52,13 @@
endif
# for some reason the .c files need it, else GNU_STACK=RWE
-OPT_FLAGS := -O2 $(ASFLAGS)
+# Gentoo's CFLAGS should be honored
+OPT_FLAGS := $(CFLAGS) $(ASFLAGS)
PTHREAD := -lpthread
# define stripping of binaries/libs here, or set these on make's commandline,
# else you'll loose the chpax flags!
-LDFLAGS :=
+# Gentoo's LDFLAGS should be honored
+LDFLAGS := $(LDFLAGS)
SHLDFLAGS :=
ifndef RUNDIR
RUNDIR := .
@@ -136,7 +138,7 @@
$(EXEC_TESTS) $(MPROT_TESTS): body.o
$(CC) $(CFLAGS) -o $@.o -c $@.c
- $(CC) $(LDFLAGS) $(PTHREAD) -o $@ $< $@.o
+ $(CC) $(LDFLAGS) -o $@ $< $@.o $(PTHREAD)
$(RAND_TESTS): randbody.o
$(CC) $(CFLAGS) -o $@.o -c $@.c
@@ -185,7 +187,7 @@
$(MPROTSH_TESTS): body.o shlibtest.so
$(CC) $(CFLAGS) -o $@.o -c $@.c
- $(CC) $(LDFLAGS) $(DL) $(PTHREAD) -o $@ $@.o $^
+ $(CC) $(LDFLAGS) -o $@ $@.o $^ $(DL) $(PTHREAD)
# used for RANDEXEC'd binaries
retbody.o: body.c
@@ -194,12 +196,12 @@
# build as ET_EXEC (recommended by PaX Team, not really a requirement)
$(RET_TESTS): retbody.o
$(CC) $(CFLAGS) $(CC_ETEXEC) -o $@.o -c $@.c
- $(CC) $(LDFLAGS) $(LD_ETEXEC) $(PTHREAD) -o $@ $< $@.o
+ $(CC) $(LDFLAGS) $(LD_ETEXEC) -o $@ $< $@.o $(PTHREAD)
# build as ET_EXEC (not in Adamantix's Makefile)
$(RETX_TESTS): retbody.o
$(CC) $(CFLAGS) $(CC_ETEXEC) -o $@.o -c $@.c
- $(CC) $(LDFLAGS) $(LD_ETEXEC) $(PTHREAD) -o $@ $< $@.o
+ $(CC) $(LDFLAGS) $(LD_ETEXEC) -o $@ $< $@.o $(PTHREAD)
-$(PAXBIN) -C $@
$(PAXBIN) -SPXM $@
@@ -212,4 +214,4 @@
$(CC) $(SHLDFLAGS) -shared -o $@ $<
$(SHLIB_TESTS): body.o $(SHLIBS) shlibbss.o shlibdata.o
- $(CC) $(LDFLAGS) $(PTHREAD) -o $@ body.o $@.o $(SHLIBS) $(DL)
+ $(CC) $(LDFLAGS) -o $@ body.o $@.o $(SHLIBS) $(DL) $(PTHREAD)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-admin/paxtest/files: paxtest-0.9.9-Makefile.patch
@ 2010-08-10 15:14 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 3+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2010-08-10 15:14 UTC (permalink / raw
To: gentoo-commits
xarthisius 10/08/10 15:14:13
Modified: paxtest-0.9.9-Makefile.patch
Log:
Respect LDFLAGS wrt bug 332011. Thanks to Diego for report.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.2 app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch?r1=1.1&r2=1.2
Index: paxtest-0.9.9-Makefile.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- paxtest-0.9.9-Makefile.patch 9 Aug 2010 12:31:05 -0000 1.1
+++ paxtest-0.9.9-Makefile.patch 10 Aug 2010 15:14:13 -0000 1.2
@@ -12,9 +12,10 @@
# define stripping of binaries/libs here, or set these on make's commandline,
# else you'll loose the chpax flags!
-LDFLAGS :=
+-SHLDFLAGS :=
+# Gentoo's LDFLAGS should be honored
+LDFLAGS := $(LDFLAGS)
- SHLDFLAGS :=
++SHLDFLAGS := $(LDFLAGS)
ifndef RUNDIR
RUNDIR := .
@@ -136,7 +138,7 @@
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-admin/paxtest/files: paxtest-0.9.9-Makefile.patch
@ 2015-04-12 19:16 Manuel Rueger (mrueg)
0 siblings, 0 replies; 3+ messages in thread
From: Manuel Rueger (mrueg) @ 2015-04-12 19:16 UTC (permalink / raw
To: gentoo-commits
mrueg 15/04/12 19:16:25
Removed: paxtest-0.9.9-Makefile.patch
Log:
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-04-12 19:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-09 12:31 [gentoo-commits] gentoo-x86 commit in app-admin/paxtest/files: paxtest-0.9.9-Makefile.patch Anthony G. Basile (blueness)
-- strict thread matches above, loose matches on Subject: below --
2010-08-10 15:14 Kacper Kowalik (xarthisius)
2015-04-12 19:16 Manuel Rueger (mrueg)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox