mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
fix bug compiling assembly files on intel mac (SF#1422598 http://sourceforge.net/tracker/index.php?func=detail&aid=1422598&group_id=13478&atid=113478)
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
|
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
|
||||||
|
|
||||||
AC_INIT(src/flac/main.c)
|
AC_INIT(src/flac/main.c)
|
||||||
AM_INIT_AUTOMAKE(flac, 1.1.3-beta2)
|
AM_INIT_AUTOMAKE(flac, 1.1.3)
|
||||||
|
|
||||||
# Don't automagically regenerate autoconf/automake generated files unless
|
# Don't automagically regenerate autoconf/automake generated files unless
|
||||||
# explicitly requested. Eases autobuilding -mdz
|
# explicitly requested. Eases autobuilding -mdz
|
||||||
@@ -73,6 +73,7 @@ AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
|
|||||||
case "$host" in
|
case "$host" in
|
||||||
i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
|
i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
|
||||||
*-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
|
*-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
|
||||||
|
*-*-darwin*) OBJ_FORMAT=macho ;;
|
||||||
*) OBJ_FORMAT=elf ;;
|
*) OBJ_FORMAT=elf ;;
|
||||||
esac
|
esac
|
||||||
AC_SUBST(OBJ_FORMAT)
|
AC_SUBST(OBJ_FORMAT)
|
||||||
@@ -263,7 +264,7 @@ fi
|
|||||||
|
|
||||||
OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
|
OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
|
||||||
if test "x$debug" = xtrue; then
|
if test "x$debug" = xtrue; then
|
||||||
OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -O0 -DDEBUG"
|
OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -DDEBUG"
|
||||||
else
|
else
|
||||||
OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O2 -DNDEBUG"
|
OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O2 -DNDEBUG"
|
||||||
if test "x$GCC" = xyes; then
|
if test "x$GCC" = xyes; then
|
||||||
|
|||||||
Reference in New Issue
Block a user