diff options
author | R. Imura <imura@FreeBSD.org> | 2000-02-25 17:25:42 +0000 |
---|---|---|
committer | R. Imura <imura@FreeBSD.org> | 2000-02-25 17:25:42 +0000 |
commit | 9d118e448111b38d7864d53eeff1caa3070a6070 (patch) | |
tree | e013124e1d352aae23e86f56361e1fbd71125234 | |
parent | 10490fe70bacd041fe8e6b42a9dd4daacf2e727e (diff) | |
download | freebsd-ports-9d118e448111b38d7864d53eeff1caa3070a6070.zip |
Small modification to respect $(CXX).
-rw-r--r-- | audio/krio/files/patch-aa | 6 | ||||
-rw-r--r-- | misc/peq/files/patch-aa | 14 |
2 files changed, 14 insertions, 6 deletions
diff --git a/audio/krio/files/patch-aa b/audio/krio/files/patch-aa index 4e578c7ae22f..6ee408cdd8c2 100644 --- a/audio/krio/files/patch-aa +++ b/audio/krio/files/patch-aa @@ -1,8 +1,10 @@ --- Makefile.orig Wed Jul 21 21:39:27 1999 +++ Makefile Fri Feb 18 23:18:40 2000 -@@ -2,9 +2,12 @@ +@@ -1,10 +1,13 @@ + # anyone waht to clean this up for me, and perhaps make it use autoconf? - CC = g++ +-CC = g++ ++CC = $(CXX) RIODIR = rio107 -CFLAGS = -Wall -O1 -I/usr/X11R6/include/qt -I/usr/include/kde -I/usr/include/qt -I$(RIODIR) -# CFLAGS = -DDEBUG_MESSAGES -Wall -O1 -I/usr/X11R6/include/qt -I/usr/include/kde -I/usr/include/qt -I$(RIODIR) diff --git a/misc/peq/files/patch-aa b/misc/peq/files/patch-aa index 625233f45ef4..38fffaa1d850 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 |