diff options
author | Satoshi Taoka <taoka@FreeBSD.org> | 1999-03-18 08:53:23 +0000 |
---|---|---|
committer | Satoshi Taoka <taoka@FreeBSD.org> | 1999-03-18 08:53:23 +0000 |
commit | 108dbe262b06fb07db203a8b756ac5af23418b12 (patch) | |
tree | a88041c9acaf9620f5edd79026f787977becfd43 /security/gtkportscan/files | |
parent | 121181f4e6951c5828ae4a73ebe6e82f9b9a210f (diff) |
Notes
Diffstat (limited to 'security/gtkportscan/files')
-rw-r--r-- | security/gtkportscan/files/patch-aa | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/security/gtkportscan/files/patch-aa b/security/gtkportscan/files/patch-aa new file mode 100644 index 000000000000..077a2c39ee91 --- /dev/null +++ b/security/gtkportscan/files/patch-aa @@ -0,0 +1,30 @@ +--- Makefile.orig Thu Mar 11 18:58:41 1999 ++++ Makefile Thu Mar 18 17:22:45 1999 +@@ -1,21 +1,21 @@ + CC=gcc +-GTK_FLAGS=`gtk-config --cflags` `gtk-config --libs` ++GTK_FLAGS=`gtk12-config --cflags` `gtk12-config --libs` + + all: gtkportscan portscan + + portscan: portscan.c +- $(CC) -O2 -Wall portscan.c -o portscan -g ++ $(CC) -O2 -Wall portscan.c -o portscan -g ${CFLAGS} + + gtkportscan: gtkportscan.c +- $(CC) -Wall $(GTK_FLAGS) gtkportscan.c -o gtkportscan -g ++ $(CC) -Wall $(GTK_FLAGS) gtkportscan.c -o gtkportscan -g ${CFLAGS} + + install: +- cp portscan /usr/local/bin +- cp gtkportscan /usr/X11/bin ++ ${BSD_INSTALL_PROGRAM} portscan /usr/local/bin ++ ${BSD_INSTALL_PROGRAM} gtkportscan /usr/local/bin + + clean: + rm -f portscan gtkportscan + + uninstall: + rm -f /usr/local/bin/portscan +- rm -f /usr/X11/bin/gtkportscan ++ rm -f /usr/local/bin/gtkportscan |