20130320
[gdash.git] / configure.in
blob37c299828c04f8ab720db916ed92e6032b1caaf4
1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT(GDash, 20130317unstable, [http://code.google.com/p/gdash/])
4 AC_CONFIG_SRCDIR([src/gtkmain.cpp])
5 AM_INIT_AUTOMAKE
6 AM_CONFIG_HEADER(config.h)
7 AM_SILENT_RULES([yes])
9 AC_PROG_CC
10 AC_PROG_CXX
11 AM_PROG_CC_C_O
12 PKG_PROG_PKG_CONFIG
14 AC_ISC_POSIX
15 AC_HEADER_STDC
17 AC_CHECK_FUNCS([setlocale])
19 AM_GNU_GETTEXT([external])
20 AM_GNU_GETTEXT_VERSION([0.17])
22 AC_PROG_INSTALL
24 AC_CHECK_HEADERS([stdint.h stdlib.h])
25 AC_CHECK_FUNCS([strchr strrchr])
26 AC_FUNC_MEMCMP
27 AC_FUNC_MALLOC
28 AC_TYPE_UINT32_T
30 AC_ARG_WITH(gtk,
31   [AS_HELP_STRING([--without-gtk], [disables using gtk+])],
32   [with_gtk=$withval],
33   [with_gtk=yes])
34 AC_ARG_WITH(sdl,
35   [AS_HELP_STRING([--without-sdl], [disables using sdl])],
36   [with_sdl=$withval],
37   [with_sdl=yes])
39 if test x"$with_gtk" = "xno" -a x"$with_sdl" = "xno"; then
40   AC_MSG_ERROR(You cannot disable both SDL and GTK. Rerun with --with-gtk or --with-sdl.)
43 AM_PATH_GLIB_2_0(2.12.0, :, AC_MSG_ERROR(Test for GLIB failed. See the file 'INSTALL' for help.), gthread)
45 dnl this conditional must ALWAYS be run, not inside the if below.
46 AM_CONDITIONAL(GTK, test x"$with_gtk" = "xyes")
47 if test x"$with_gtk" = "xyes" ; then
48   AC_DEFINE(HAVE_GTK,,[Use GTK.])
49   AM_PATH_GTK_2_0(2.12.0, :, AC_MSG_ERROR(Test for GTK+ failed. See the file 'INSTALL' for help.))
52 AM_CONDITIONAL(SDL, test x"$with_sdl" = "xyes")
53 if test x"$with_sdl" = "xyes" ; then
54   AC_DEFINE(HAVE_SDL,,[Use SDL.])
55   AM_PATH_SDL(1.2.0, :, AC_MSG_ERROR(Test for SDL failed. See the file 'INSTALL' for help.))
58 AX_CHECK_GL
60 PKG_CHECK_MODULES(LIBPNG, [libpng], AC_DEFINE(HAVE_LIBPNG, 1, Define if you have libpng), [])
63 AC_CONFIG_FILES([
64 Makefile
65 po/Makefile.in
66 include/Makefile
67 src/Makefile
68 caves/Makefile
69 docs/Makefile
70 sound/Makefile
71 music/Makefile
73 AC_OUTPUT