diff options
author | edwin <edwin@FreeBSD.org> | 2003-02-06 01:34:24 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-02-06 01:34:24 +0000 |
commit | b0837936cb8440ee64fa49af6e1c6121423da063 (patch) | |
tree | 49e37edf0d78e852509c059e1a0c8274e155084c /security/gpasman | |
parent | 21b34fcfb4d7ef6f5b0ab1f9359e53904223ccf6 (diff) | |
download | FreeBSD-ports-b0837936cb8440ee64fa49af6e1c6121423da063.zip FreeBSD-ports-b0837936cb8440ee64fa49af6e1c6121423da063.tar.gz |
Maintainer update for security/gpasman:
core dump fix for files larger than 2048 bytes
PR: ports/46673
Submitted by: Dominik Brettnacher <domi@saargate.de>
Diffstat (limited to 'security/gpasman')
-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 5e87692..b47b786 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 abbcf95..0000000 --- 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 |