From 8f6b50132da371cbf66fd28b0bc1eefc2cb82135 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 19 Feb 2016 14:32:48 -0500 Subject: Switched to CMake build system --- configure.ac | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac deleted file mode 100644 index da0bd69..0000000 --- a/configure.ac +++ /dev/null @@ -1,44 +0,0 @@ -AC_INIT(mazeoflife, version-3.0) -AC_PREREQ([2.59]) -AM_INIT_AUTOMAKE([1.10 no-define foreign]) -AC_PROG_CXX -AC_CONFIG_FILES([Makefile]) - -dnl Check for SDL -SDL_VERSION=2.0.0 -AM_PATH_SDL2($SDL_VERSION, - :, - AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]) -) -CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" -LIBS="$LIBS $SDL_LIBS" - -dnl Check for SDL2_ttf -AC_ARG_WITH([sdl-ttf2-include-path], - [AS_HELP_STRING([--with-sdl2-ttf-include-path], - [location of the SDL2_ttf headers, defaults to /usr/include/SDL2])], - [SDLTTF_CXXFLAGS="-I$withval"], - [SDLTTF_CXXFLAGS="-I/usr/include/SDL2"]) -AC_SUBST([SDLTTF_CXXFLAGS]) - -AC_ARG_WITH([sdl2-ttf-lib-path], - [AS_HELP_STRING([--with-sdl2-ttf-lib-path], [location of the SDL2_ttf library])], - [SDLTTF_LIBS="-L$withval -lSDL2_ttf"], - [SDLTTF_LIBS="-lSDL2_ttf"]) -AC_SUBST([SDLTTF_LIBS]) - -dnl Check for SDL2_net -AC_ARG_WITH([sdl2-net-include-path], - [AS_HELP_STRING([--with-sdl2-net-include-path], - [location of the SDL2_net headers, defaults to /usr/include/SDL2])], - [SDLNET_CXXFLAGS="-I$withval"], - [SDLNET_CXXFLAGS="-I/usr/include/SDL2"]) -AC_SUBST([SDLNET_CXXFLAGS]) - -AC_ARG_WITH([sdl2-net-lib-path], - [AS_HELP_STRING([--with-sdl2-net-lib-path], [location of the SDL2_net library])], - [SDLNET_LIBS="-L$withval -lSDL2_net"], - [SDLNET_LIBS="-lSDL2_net"]) -AC_SUBST([SDLNET_LIBS]) - -AC_OUTPUT -- cgit 1.4.1