openbsd-ports/audio/wmmixer/patches/patch-Imakefile
naddy ff0c13ae86 - C++ fix for compiling with gcc3.
- Use CXX for linking rather than CC.
2002-09-27 22:51:58 +00:00

20 lines
483 B
Plaintext

$OpenBSD: patch-Imakefile,v 1.2 2002/09/27 22:51:58 naddy Exp $
--- Imakefile.orig Sat Sep 5 17:11:33 1998
+++ Imakefile Sat Sep 28 00:52:35 2002
@@ -1,5 +1,7 @@
#ifdef NetBSDArchitecture
OSSAUDIO = -lossaudio
+#elif defined OpenBSDArchitecture
+OSSAUDIO = -lossaudio
#else
OSSAUDIO =
#endif
@@ -10,4 +12,6 @@ LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) $(OS
SRCS = wmmixer.cc
OBJS = wmmixer.o
-ComplexProgramTarget(wmmixer)
+wmmixer.man:
+
+ComplexCplusplusProgramTarget(wmmixer)