From 4a5d3f3fe6702a5468bdb562706852dd7753bf80 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Sun, 24 Apr 2022 02:04:25 +0200 Subject: dev-R/ps: new version Signed-off-by: Alessandro Barbieri --- dev-R/ps/files/ps-1.7.0-fPIE.patch | 15 +++++++++++++++ dev-R/ps/files/ps-respect-LDFLAGS.patch | 15 --------------- 2 files changed, 15 insertions(+), 15 deletions(-) create mode 100644 dev-R/ps/files/ps-1.7.0-fPIE.patch delete mode 100644 dev-R/ps/files/ps-respect-LDFLAGS.patch (limited to 'dev-R/ps/files') diff --git a/dev-R/ps/files/ps-1.7.0-fPIE.patch b/dev-R/ps/files/ps-1.7.0-fPIE.patch new file mode 100644 index 000000000..eeb966bfd --- /dev/null +++ b/dev-R/ps/files/ps-1.7.0-fPIE.patch @@ -0,0 +1,15 @@ +--- a/src/Makevars.in ++++ b/src/Makevars.in +@@ -8,10 +8,10 @@ + all: px @TARGETS@ $(SHLIB) + + px: px.c +- $(CC) $(CFLAGS) $(LDFLAGS) -Wall px.c -o px ++ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall px.c -o px + + interrupt: interrupt.c +- $(CC) $(CFLAGS) $(LDFLAGS) -Wall interrupt.c -o interrupt ++ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall interrupt.c -o interrupt + + clean: + rm -rf $(SHLIB) $(OBJECTS) px.exe px interrupt.exe interrupt diff --git a/dev-R/ps/files/ps-respect-LDFLAGS.patch b/dev-R/ps/files/ps-respect-LDFLAGS.patch deleted file mode 100644 index a1ab2933e..000000000 --- a/dev-R/ps/files/ps-respect-LDFLAGS.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/src/Makevars.in -+++ b/src/Makevars.in -@@ -8,10 +8,10 @@ - all: px @TARGETS@ $(SHLIB) - - px: px.c -- $(CC) $(CFLAGS) -Wall px.c -o px -+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall px.c -o px - - interrupt: interrupt.c -- $(CC) $(CFLAGS) -Wall interrupt.c -o interrupt -+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall interrupt.c -o interrupt - - clean: - rm -rf $(SHLIB) $(OBJECTS) px.exe px interrupt.exe interrupt -- cgit v1.2.3-65-gdbad