diff options
author | Mateusz Kaduk <mateusz.kaduk@gmail.com> | 2005-05-16 16:52:41 +0000 |
---|---|---|
committer | Mateusz Kaduk <mateusz.kaduk@gmail.com> | 2005-05-16 16:52:41 +0000 |
commit | da9cb51751aab141adaf7df93ec0afd706f74d03 (patch) | |
tree | a7b6d3f0293693964dd920a587fd30615d555ca9 /configure.ac | |
parent | 5f6a6445d0156cb9728878688e09884b6a2b0188 (diff) | |
download | mana-da9cb51751aab141adaf7df93ec0afd706f74d03.tar.gz mana-da9cb51751aab141adaf7df93ec0afd706f74d03.tar.bz2 mana-da9cb51751aab141adaf7df93ec0afd706f74d03.tar.xz mana-da9cb51751aab141adaf7df93ec0afd706f74d03.zip |
Added --with-opengl option to configure and checking for guichan headers
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6df47582..cb04db7a 100755 --- a/configure.ac +++ b/configure.ac @@ -53,6 +53,22 @@ AC_CHECK_FUNCS([atexit floor getcwd gethostbyname memset mkdir select socket]) AM_INIT_AUTOMAKE +dnl Check for guichan headers +AC_CHECK_HEADERS(guichan.hpp, have_guichan_h=yes, have_guichan_h=no) +if test "$have_guichan_h" != yes; then + AC_MSG_ERROR([*** Library found but cannot find headers (guichan.sf.net) *** ]) +fi + +dnl Option to enable OpenGL +AC_ARG_WITH(opengl,[ --with-opengl use OpenGL ] ) +if test "x$with_opengl" == "xyes"; then + with_opengl=yes + OPENGL_CFLAGS=' -DUSE_OPENGL' + OPENGL_LIBS=' -lGL -lguichan-opengl' + AC_SUBST(OPENGL_CFLAGS) +else + with_opengl=no +fi dnl FIND_PATH(programm-name, variable-name, list of directories, dnl if-not-found, test-parameter) @@ -141,3 +157,9 @@ docs/Makefile ]) AC_OUTPUT + +echo +echo Build with OpenGL........... : $with_opengl +echo +echo configure comlete, not type \"make\" +echo |