aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure b/configure
index a0b989515f..cc3f3fcc38 100755
--- a/configure
+++ b/configure
@@ -209,15 +209,16 @@ hosttype=`uname -s`
echo $hosttype
case $hosttype in
Linux | OpenBSD | FreeBSD | NetBSD | BSD/OS | SunOS | HP-UX)
- echo "#define UNIX" >> config.h
+ echo "/* #define UNIX */" >> config.h
;;
IRIX)
- echo "#define UNIX" >> config.h
+ echo "/* #define UNIX */" >> config.h
ranlib=ar -r
;;
Darwin)
- echo "#define UNIX" >> config.h
+ echo "/* #define UNIX */" >> config.h
echo "#define MACOSX" >> config.h
+ LIBS="$LIBS -framework QuickTime -framework AudioUnit"
;;
esac