diff options
author | nectar <nectar@FreeBSD.org> | 2004-08-17 06:39:38 +0800 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2004-08-17 06:39:38 +0800 |
commit | 9b1b9d32ac37a6ba8e4aa066d87598f4e30ae8bf (patch) | |
tree | c0fa1bd1a4f0054bdc0b36bd684e73ccb6d00491 /games/xonix | |
parent | 5553969191a2a3a8b6df8acd862e26b28375548f (diff) | |
download | freebsd-ports-gnome-9b1b9d32ac37a6ba8e4aa066d87598f4e30ae8bf.tar.gz freebsd-ports-gnome-9b1b9d32ac37a6ba8e4aa066d87598f4e30ae8bf.tar.zst freebsd-ports-gnome-9b1b9d32ac37a6ba8e4aa066d87598f4e30ae8bf.zip |
Correct a setgid "games" vulnerability.
<URL: http://vuxml.freebsd.org/6fd9a1e9-efd3-11d8-9837-000c41e2cdad.html >
Submitted by: robert@OpenBSD.org
Diffstat (limited to 'games/xonix')
-rw-r--r-- | games/xonix/Makefile | 1 | ||||
-rw-r--r-- | games/xonix/files/patch-Imakefile | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/games/xonix/Makefile b/games/xonix/Makefile index e5e40d5236d3..0006a2bce807 100644 --- a/games/xonix/Makefile +++ b/games/xonix/Makefile @@ -7,6 +7,7 @@ PORTNAME= xonix PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= ftp://ftp.interface-business.de/pub/outgoing/ diff --git a/games/xonix/files/patch-Imakefile b/games/xonix/files/patch-Imakefile new file mode 100644 index 000000000000..f852de1d0902 --- /dev/null +++ b/games/xonix/files/patch-Imakefile @@ -0,0 +1,15 @@ +--- Imakefile.orig Tue Aug 17 00:17:20 2004 ++++ Imakefile Tue Aug 17 00:17:48 2004 +@@ -23,11 +23,10 @@ + + PROG = xonix + XONIXDIR = $(LIBDIR)/xonix +- CUTE = -DSEND_MAIL /* cute feature :-) */ + + DEPLIBS = XawClientDepLibs XpmDepLib + LOCAL_LIBRARIES = XawClientLibs XpmLib MathLibrary +- EXTRA_DEFINES = -DUSE_X11 -DXONIXDIR=\"$(XONIXDIR)\" $(CUTE) ++ EXTRA_DEFINES = -DUSE_X11 -DXONIXDIR=\"$(XONIXDIR)\" + /* CDEBUGFLAGS = DebuggableCDebugFlags */ + + SRCS = xonix.c x11.c stack.c |