Applied Timothy Wood's configure.in Darwin patch to add -fno-common to the build options

svn path=/trunk/ogg/; revision=1223
This commit is contained in:
Monty 2001-01-30 00:18:35 +00:00
parent 0f44d7dcb5
commit 4b2b02cc9b

View File

@ -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"