summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2001-01-30 00:18:35 +0000
committerMonty <xiphmont@xiph.org>2001-01-30 00:18:35 +0000
commit62adf113a7bf76ebc4cac799ef1db4a040b02639 (patch)
tree5cd81a09c6b46bc27fe3b7cf2f94900fe7520393 /configure.in
parent00ac3b2908f1580e4d26af1fdc63171c7f396123 (diff)
downloadogg-62adf113a7bf76ebc4cac799ef1db4a040b02639.tar.gz
Applied Timothy Wood's configure.in Darwin patch to add -fno-common to the build options
git-svn-id: http://svn.xiph.org/trunk/ogg@1223 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index b3eb14f..d027533 100644
--- a/configure.in
+++ b/configure.in
@@ -47,6 +47,11 @@ else
CFLAGS="-O20 -ffast-math -fsigned-char -mv8"
PROFILE="-pg -g -O20 -fsigned-char -mv8"
;;
+ *-*-darwin*)
+ DEBUG="-fno-common -g -Wall -fsigned-char"
+ CFLAGS="-fno-common -O4 -Wall -fsigned-char -ffast-math"
+ PROFILE="-fno-common -O4 -Wall -pg -g -fsigned-char -ffast-math"
+ ;;
*)
DEBUG="-g -Wall -fsigned-char"
CFLAGS="-O20 -fsigned-char"