1 # configure.ac with sensible comments
3 ### INITIALIZATION ############################################################
6 # Args: (human-readable package name, package version, bug report address,
8 AC_INIT([chimara], [0.1])
9 # Sanity check to make sure we are running Autoconf from the right directory
10 AC_CONFIG_SRCDIR(libchimara/chimara-glk.c)
12 AM_INIT_AUTOMAKE([-Wall])
14 ### DECLARE PROGRAMS ##########################################################
16 AC_PROG_CC # C compiler
17 AM_PROG_CC_C_O # Automake requires this for per-target CFLAGS
18 AC_PROG_INSTALL # Install
19 m4_defun([_LT_AC_LANG_CXX_CONFIG], [:]) # Disable unnecessary Libtool checks
20 m4_defun([_LT_AC_LANG_F77_CONFIG], [:]) # to save time (1.5 only)
21 LT_INIT # Libtool 2.2.6 and up
22 #LT_INIT([dlopen]) # Should call it this way, but
23 #LT_PREREQ([2.2.6]) # ...goddamn Fedora 10 still has 1.5
24 AC_PROG_LIBTOOL # Old way of declaring Libtool
25 AM_GLIB_GNU_GETTEXT # Use GLib gettext instead of standard
26 IT_PROG_INTLTOOL([0.35.0]) # Intltool
27 PKG_PROG_PKG_CONFIG # pkg_config
28 GTK_DOC_CHECK(1.9) # Gtk-Doc
30 ### TYPES #####################################################################
35 ### INTERNATIONALIZATION ######################################################
37 GETTEXT_PACKAGE=chimara
38 AC_SUBST(GETTEXT_PACKAGE)
39 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [GETTEXT package name])
41 ### CHECK FOR LIBRARIES #######################################################
43 GTK_REQUIRED_VERSION=2.8
44 GLIB_REQUIRED_VERSION=2.6
46 AC_SUBST(GTK_REQUIRED_VERSION)
47 AC_SUBST(GLIB_REQUIRED_VERSION)
49 # Libraries needed to build Chimara library
50 PKG_CHECK_MODULES([CHIMARA], [
51 glib-2.0 >= $GLIB_REQUIRED_VERSION
52 gtk+-2.0 >= $GTK_REQUIRED_VERSION
57 CHIMARA_LIBS="$CHIMARA_LIBS -lm"
58 AC_SUBST(CHIMARA_LIBS)
59 # Libraries needed to build test programs
60 PKG_CHECK_MODULES([TEST], [
61 gtk+-2.0 >= $GTK_REQUIRED_VERSION
65 ### GTK-DOC ###################################################################
67 # Allow gtkdocize to automatically copy the macro definition for
68 # GTK_DOC_CHECK to the project.
69 # AC_CONFIG_MACRO_DIR(m4)
71 ### OUTPUT ####################################################################
73 # Output platform-specific definitions to config.h
74 AC_CONFIG_HEADERS([config.h])
75 # List of other files for Autoconf to output
82 interpreters/frotz/Makefile
83 interpreters/nitfol/Makefile
86 docs/reference/Makefile
87 docs/reference/version.xml