34 lines
972 B
Diff
34 lines
972 B
Diff
--- Makefile.am
|
|
+++ Makefile.am
|
|
@@ -1,7 +1,7 @@
|
|
# The top-level input Makefile for ISMAP
|
|
|
|
# require automake 1.4
|
|
-AUTOMAKE_OPTIONS = 1.4
|
|
+AUTOMAKE_OPTIONS = 1.4 foreign
|
|
|
|
## Any directories that you want built and installed should go here.
|
|
SUBDIRS = src docs
|
|
--- configure.in
|
|
+++ configure.in
|
|
@@ -65,19 +65,10 @@
|
|
|
|
AC_LANG_CPLUSPLUS
|
|
AM_PROG_CC_STDC
|
|
-AC_OPT_FLAGS
|
|
|
|
SDLMM_CXXFLAGS="$SDLMM_CXXFLAGS $SDL_CFLAGS"
|
|
SDLMM_LIBS="-lSDLmm $SDL_LIBS"
|
|
|
|
-AC_ARG_ENABLE(pedantic,[ --enable-pedantic Use -pedantic and -Werror compile flags (with gcc)], [
|
|
-if test "x${GXX-}" = xyes -a "$enable_pedantic" = "yes"; then
|
|
- AC_SYS_COMPILER_FLAG(-pedantic,pedantic,CXXFLAGS,no)
|
|
- AC_SYS_COMPILER_FLAG(-Werror,Werror,CXXFLAGS,no)
|
|
- AC_SYS_COMPILER_FLAG(-Wno-long-long,Wnolonglong,CXXFLAGS,no)
|
|
-fi
|
|
-], [])
|
|
-
|
|
AC_MSG_CHECKING(for assert() use)
|
|
AC_ARG_ENABLE(assertions,[ --disable-assertions Disable the use of assert().], [
|
|
if test "$enable_assertions" = "yes"; then
|