diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2000-07-15 16:45:18 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2000-07-15 16:45:18 +0000 |
commit | 05a96e6af784a21923f6751d01dd9a1c14df0e52 (patch) | |
tree | 4bf2a05c2b49fd0e2b1d0662d5bd88a0748bedc5 /security/gtkportscan/files | |
parent | 179f9d996f48815f0ef219a2fe664f626b780228 (diff) | |
download | ports-05a96e6af784a21923f6751d01dd9a1c14df0e52.tar.gz ports-05a96e6af784a21923f6751d01dd9a1c14df0e52.zip |
Notes
Diffstat (limited to 'security/gtkportscan/files')
-rw-r--r-- | security/gtkportscan/files/patch-aa | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/security/gtkportscan/files/patch-aa b/security/gtkportscan/files/patch-aa index 5eb7398ac64d..9dc42a9ae276 100644 --- a/security/gtkportscan/files/patch-aa +++ b/security/gtkportscan/files/patch-aa @@ -1,20 +1,20 @@ ---- Makefile.orig Thu Mar 11 01:58:41 1999 -+++ Makefile Sun Sep 12 20:59:30 1999 +--- Makefile.orig Thu Mar 11 17:58:41 1999 ++++ Makefile Sun Jul 16 00:45:14 2000 @@ -1,21 +1,21 @@ -CC=gcc -GTK_FLAGS=`gtk-config --cflags` `gtk-config --libs` +CC?=gcc -+GTK_FLAGS=`gtk12-config --cflags` `gtk12-config --libs` ++GTK_FLAGS=`$(GTK_CONFIG) --cflags` `$(GTK_CONFIG) --libs` all: gtkportscan portscan portscan: portscan.c - $(CC) -O2 -Wall portscan.c -o portscan -g -+ $(CC) $(CFLAgS) -Wall portscan.c -o portscan ${CFLAGS} ++ $(CC) $(CFLAGS) portscan.c -o portscan gtkportscan: gtkportscan.c - $(CC) -Wall $(GTK_FLAGS) gtkportscan.c -o gtkportscan -g -+ $(CC) -Wall $(GTK_FLAGS) gtkportscan.c -o gtkportscan ${CFLAGS} ++ $(CC) $(CFLAGS) $(GTK_FLAGS) gtkportscan.c -o gtkportscan install: - cp portscan /usr/local/bin |