diff options
author | edwin <edwin@FreeBSD.org> | 2003-02-06 09:34:24 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-02-06 09:34:24 +0800 |
commit | b0837936cb8440ee64fa49af6e1c6121423da063 (patch) | |
tree | 49e37edf0d78e852509c059e1a0c8274e155084c | |
parent | 21b34fcfb4d7ef6f5b0ab1f9359e53904223ccf6 (diff) | |
download | freebsd-ports-gnome-b0837936cb8440ee64fa49af6e1c6121423da063.tar.gz freebsd-ports-gnome-b0837936cb8440ee64fa49af6e1c6121423da063.tar.zst freebsd-ports-gnome-b0837936cb8440ee64fa49af6e1c6121423da063.zip |
Maintainer update for security/gpasman:
core dump fix for files larger than 2048 bytes
PR: ports/46673
Submitted by: Dominik Brettnacher <domi@saargate.de>
-rw-r--r-- | security/gpasman/Makefile | 1 | ||||
-rw-r--r-- | security/gpasman/files/patch-ab | 23 |
2 files changed, 1 insertions, 23 deletions
diff --git a/security/gpasman/Makefile b/security/gpasman/Makefile index 5e87692d77dd..b47b78604f0a 100644 --- a/security/gpasman/Makefile +++ b/security/gpasman/Makefile @@ -7,6 +7,7 @@ PORTNAME= gpasman PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://gpasman.nl.linux.org/ diff --git a/security/gpasman/files/patch-ab b/security/gpasman/files/patch-ab deleted file mode 100644 index abbcf95df031..000000000000 --- a/security/gpasman/files/patch-ab +++ /dev/null @@ -1,23 +0,0 @@ ---- src/Makefile.in.orig Fri Sep 3 00:50:10 1999 -+++ src/Makefile.in Sat Jul 1 18:19:43 2000 -@@ -26,9 +26,9 @@ - - - CC = @CC@ --CFLAGS = @DEFS@ @CFLAGS@ $(shell @GTKCONFIG@ --cflags) -+CFLAGS = @DEFS@ @CFLAGS@ `@GTKCONFIG@ --cflags` - LDFLAGS = @LDFLAGS@ --LIBS = @LIBS@ $(shell @GTKCONFIG@ --libs) -+LIBS = @LIBS@ `@GTKCONFIG@ --libs` - INSTALL = @INSTALL@ - - SRCS = librc2.c file.c gpasman.c -@@ -39,7 +39,7 @@ - $(CC) -o gpasman $(OBJS) $(LDFLAGS) $(LIBS) - - .c.o: $(SRCS) -- $(CC) -O2 -Wall $(CFLAGS) -c -o $@ $< -+ $(CC) $(CFLAGS) -c -o $@ $< - - clean: - rm -f $(OBJS) gpasman core *~ *.bak |