mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
8dac833ab2
PR: 12624 Submitted by: Jason Brazile <jason.brazile@netcetera.ch>
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
*** old/Imakefile Thu Apr 9 19:57:34 1998
|
|
--- Imakefile Mon Jul 12 15:28:20 1999
|
|
***************
|
|
*** 132,137 ****
|
|
--- 132,154 ----
|
|
ARCH_OBJS = utils.o
|
|
#endif
|
|
|
|
+
|
|
+ #if defined(FreeBSDArchitecture)
|
|
+ XCOMM Extra defines, include directories, loading flags, and libraries needed
|
|
+ XCOMM for the FreeBSD version. The assumption is that you are using Gnu gcc/g++
|
|
+
|
|
+ ARCH_CCDEFINES = -DVOXWARE_DACS -DXDisplay=_XDisplay
|
|
+ ARCH_CCFLAGS =
|
|
+ ARCH_CCINCLUDES =
|
|
+ ARCH_CCLDFLAGS = -L/usr/local/lib
|
|
+ ARCH_CCLDLIBS = $(APP_FORTLIBS) -lm
|
|
+ DEBUG_CCFLAGS = -Ddebug
|
|
+
|
|
+ DAC_OBJS = conv_config.o conv_device.o vw_converter.o
|
|
+ ARCH_OBJS = utils.o
|
|
+ #endif
|
|
+
|
|
+
|
|
#if defined(i386SVR4Architecture)
|
|
XCOMM This assumes you have the SoundBlaster card on your machine
|
|
ARCH_CCDEFINES = -DSOUNDBLASTER
|
|
***************
|
|
*** 243,248 ****
|
|
--- 260,270 ----
|
|
MakeObjectFromSrcFlags(sgi_dac, $(OPTIMIZE_CCFLAGS))
|
|
#endif
|
|
#if defined(LinuxArchitecture)
|
|
+ MakeObjectFromSrcFlags(utils, $(OPTIMIZE_CCFLAGS))
|
|
+ MakeObjectFromSrcFlags(conv_device, $(OPTIMIZE_CCFLAGS))
|
|
+ MakeObjectFromSrcFlags(vw_converter, $(OPTIMIZE_CCFLAGS))
|
|
+ #endif
|
|
+ #if defined(FreeBSDArchitecture)
|
|
MakeObjectFromSrcFlags(utils, $(OPTIMIZE_CCFLAGS))
|
|
MakeObjectFromSrcFlags(conv_device, $(OPTIMIZE_CCFLAGS))
|
|
MakeObjectFromSrcFlags(vw_converter, $(OPTIMIZE_CCFLAGS))
|