diff options
author | simokawa <simokawa@FreeBSD.org> | 1999-02-05 00:22:41 +0800 |
---|---|---|
committer | simokawa <simokawa@FreeBSD.org> | 1999-02-05 00:22:41 +0800 |
commit | 94d8d81b308980751897348fb824f685a68fccb9 (patch) | |
tree | e5f2ae47ab8f74caa91dc9cf6e2cabd87e10adcd /audio | |
parent | a55cb2571d1d4d72965e61de4c09c5da629f2bcc (diff) | |
download | freebsd-ports-gnome-94d8d81b308980751897348fb824f685a68fccb9.tar.gz freebsd-ports-gnome-94d8d81b308980751897348fb824f685a68fccb9.tar.zst freebsd-ports-gnome-94d8d81b308980751897348fb824f685a68fccb9.zip |
Use $(CXX) as linker to fix problem on 3.0.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xamp/files/patch-ae | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/audio/xamp/files/patch-ae b/audio/xamp/files/patch-ae index 3137eac04cd2..5dd9e0a7a64d 100644 --- a/audio/xamp/files/patch-ae +++ b/audio/xamp/files/patch-ae @@ -1,5 +1,5 @@ ---- Makefile.in.orig Tue Feb 10 16:37:20 1998 -+++ Makefile.in Sun Sep 27 20:24:53 1998 +--- Makefile.in.orig Wed Feb 11 07:37:20 1998 ++++ Makefile.in Wed Feb 3 23:00:03 1999 @@ -14,7 +14,8 @@ DEFINES = -DOS_@OS_TYPE@ -DARCH_@ARCH_TYPE@ CFLAGS = @CFLAGS@ ${DEFINES} ${DEBUG} ${BACK} @@ -20,3 +20,12 @@ all: xamp +@@ -59,7 +63,7 @@ + cd pixmaps ; make + + xamp: images $(OBJ) +- $(CC) -o xamp $(OBJ) $(LDFLAGS) $(LIBS) ++ $(CXX) -o xamp $(OBJ) $(LDFLAGS) $(LIBS) + + install: + $(INSTALL) -m 755 xamp $(DESTDIR) |