Enable assembly under mingw32

This commit is contained in:
Bradley Bell 2001-10-13 01:31:41 +00:00
parent 32634b77ae
commit 98439a6160

View file

@ -22,6 +22,7 @@ AC_STDC_HEADERS
NO_ASM=0 NO_ASM=0
NO_NETWORK=0 NO_NETWORK=0
GL_LIBS="GL GLU" GL_LIBS="GL GLU"
NASM_PROG=nasm
AC_CYGWIN AC_CYGWIN
if test x$CYGWIN = xyes; then if test x$CYGWIN = xyes; then
@ -32,10 +33,10 @@ fi
AC_MINGW32 AC_MINGW32
AM_CONDITIONAL(MINGW32, test x$MINGW32 = xyes) AM_CONDITIONAL(MINGW32, test x$MINGW32 = xyes)
if test x$MINGW32 = xyes; then if test x$MINGW32 = xyes; then
GL_LIBS="opengl32 glu32" AC_MSG_WARN([mingw32 found, disabling network])
AC_MSG_WARN([mingw32 found, disabling network and assembler])
NO_ASM=1
NO_NETWORK=1 NO_NETWORK=1
GL_LIBS="opengl32 glu32"
NASM_PROG=nasmw
fi fi
CFLAGS="$CFLAGS -g -O2 -Wall" CFLAGS="$CFLAGS -g -O2 -Wall"
@ -167,7 +168,7 @@ else
fi fi
fi fi
AC_PATH_PROG(NASM, nasm, no) AC_PATH_PROG(NASM, $NASM_PROG, no)
CFLAGS="-I\$(top_srcdir)/input/linux/include -I\$(top_srcdir)/arch/linux/include $CFLAGS" CFLAGS="-I\$(top_srcdir)/input/linux/include -I\$(top_srcdir)/arch/linux/include $CFLAGS"
fi fi
@ -189,11 +190,11 @@ if test "$NASM" = "no"; then
fi fi
if test "$NO_ASM" = 1; then if test "$NO_ASM" = 1; then
AC_DEFINE(NO_ASM) AC_DEFINE(NO_ASM)
NASMFLAGS="" NASMFLAGS="-i\$(srcdir)/ $NASMFLAGS"
else else
case $host_os in case $host_os in
cygwin) cygwin)
NASMFLAGS="-f win32 -i\$(srcdir)/" NASMFLAGS="-f win32 $NASMFLAGS"
;; ;;
msdosdjgpp) msdosdjgpp)
NASMFLAGS="-f coff -i\$(srcdir)/" NASMFLAGS="-f coff -i\$(srcdir)/"