diff options
author | imura <imura@FreeBSD.org> | 2000-02-25 17:25:42 +0000 |
---|---|---|
committer | imura <imura@FreeBSD.org> | 2000-02-25 17:25:42 +0000 |
commit | 39ce4c52389a516c283326cdd13d9faf20406493 (patch) | |
tree | fdf6617d7f5a3377289ff46be914195cc8bd0080 /misc/peq/files | |
parent | 2b83ed8f081c240645b1842ac2232d6bc3c7112d (diff) | |
download | FreeBSD-ports-39ce4c52389a516c283326cdd13d9faf20406493.zip FreeBSD-ports-39ce4c52389a516c283326cdd13d9faf20406493.tar.gz |
Small modification to respect $(CXX).
Diffstat (limited to 'misc/peq/files')
-rw-r--r-- | misc/peq/files/patch-aa | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/misc/peq/files/patch-aa b/misc/peq/files/patch-aa index 625233f..38fffaa 100644 --- a/misc/peq/files/patch-aa +++ b/misc/peq/files/patch-aa @@ -1,16 +1,22 @@ *** Makefile.orig Fri Apr 2 19:52:27 1999 --- Makefile Fri Apr 2 19:51:11 1999 *************** -*** 7,13 **** - CC = g++ +*** 4,13 **** + VERSION = 0.7.1 + + # Your C++ compiler +! CC = g++ # Flags to pass to the C++ compiler ! FLAGS = -O -Wall # Your tar TAR = tar ---- 7,13 ---- - CC = g++ +--- 4,13 ---- + VERSION = 0.7.1 + + # Your C++ compiler +! CC = $(CXX) # Flags to pass to the C++ compiler ! FLAGS = -DPREFIX=\"${PREFIX}\" ${CFLAGS} -L /usr/X11R6/lib -I /usr/X11R6/include |