diff options
author | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 1999-02-04 16:22:41 +0000 |
---|---|---|
committer | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 1999-02-04 16:22:41 +0000 |
commit | cf58d22a41c6abd6b3c660a7f4e8169720f56b61 (patch) | |
tree | 8fae7173f20434c417eaa432721f7e654163ea1d | |
parent | Upgrade to Apache 1.3.4 + mod_ssl 2.2.1 (diff) |
Use $(CXX) as linker to fix problem on 3.0.
-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) |