Files
86Box/src/lzf/configure.ac
OBattler e280faa2d6 86F format handler updated to 86F version 2.0 and bit by bit handling;
FDI stream images are now also handled by the 86F handler;
Both floppy drives' motors now spin separately;
Added Plantronics ColorPlus emulation per patch from PCem forum;
Applied all mainline PCem commits;
Fixed several bugs.
2016-11-02 22:39:07 +01:00

26 lines
374 B
Plaintext

AC_INIT
AC_CONFIG_SRCDIR([lzfP.h])
AC_CONFIG_HEADER(config.h)
AC_GNU_SOURCE
AC_SYS_LARGEFILE
AC_PROG_CC
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_HEADER_STDC
AC_C_CONST
AC_C_INLINE
AC_CHECK_HEADERS(getopt.h)
AC_CHECK_FUNCS(getopt_long)
if test "$GCC" = yes; then
CFLAGS="$CFLAGS -O3 -funroll-all-loops"
else
AC_MSG_RESULT(no gcc)
fi
AC_CONFIG_FILES([Makefile])
AC_OUTPUT