-*- mode: m4 -*- AC_PREREQ(2.52) dnl the pygtk version number m4_define(pygtk_major_version, 2) m4_define(pygtk_minor_version, 1) m4_define(pygtk_micro_version, 0) m4_define(pygtk_version, pygtk_major_version.pygtk_minor_version.pygtk_micro_version) dnl versions of packages we require ... m4_define(glib_required_version, 2.2.0) m4_define(pango_required_version, 1.0.0) m4_define(atk_required_version, 1.0.0) m4_define(gtk_required_version, 2.2.0) m4_define(libglade_required_version, 2.0.0) m4_define(gtkgl_required_version, 1.99.0) AC_INIT(pygtk, pygtk_version, [http://bugzilla.gnome.org/enter_bug.cgi?product=pygtk]) AC_DEFINE(PYGTK_MAJOR_VERSION, pygtk_major_version, [PyGtk major version]) AC_DEFINE(PYGTK_MINOR_VERSION, pygtk_minor_version, [PyGtk minor version]) AC_DEFINE(PYGTK_MICRO_VERSION, pygtk_micro_version, [PyGtk macro version]) AC_CONFIG_SRCDIR([gtk/gtkmodule.c]) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE AC_CHECK_FUNCS(bind_textdomain_codeset) dnl put the ACLOCAL flags in the makefile ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" AC_CANONICAL_BUILD AC_CANONICAL_HOST AC_MSG_CHECKING([for some Win32 platform]) case "$host" in *-*-mingw*|*-*-cygwin*) platform_win32=yes ;; *) platform_win32=no ;; esac AC_MSG_RESULT([$platform_win32]) AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes") AC_MSG_CHECKING([for native Win32]) case "$host" in *-*-mingw*) os_win32=yes ;; *) os_win32=no ;; esac AC_MSG_RESULT([$os_win32]) AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes") AC_DISABLE_STATIC AC_LIBTOOL_WIN32_DLL AC_PROG_LIBTOOL AM_PATH_PYTHON(2.2) AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)]) AC_ARG_ENABLE(thread, AC_HELP_STRING([--disable-thread], [Disable pygtk threading support]),, enable_thread=yes) AM_CHECK_PYMOD(thread,,,enable_thread=no) AC_MSG_CHECKING(whether to enable threading in pygtk) if test "x$enable_thread" != xno; then extra_mods=gthread AC_DEFINE(ENABLE_PYGTK_THREADING) AC_MSG_RESULT(yes) else extra_mods= AC_MSG_RESULT(no) fi dnl get rid of the -export-dynamic stuff from the configure flags ... export_dynamic=`(./libtool --config; echo eval echo \\$export_dynamic_flag_spec) | sh` dnl glib AM_PATH_GLIB_2_0(glib_required_version,,[AC_MSG_ERROR(maybe you want the gtk-gnome-1-2 branch?)],gobject $extra_mods) if test -n "$export_dynamic"; then GLIB_LIBS=`echo $GLIB_LIBS | sed -e "s/$export_dynamic//"` fi dnl atk PKG_CHECK_MODULES(ATK, atk >= atk_required_version,,[AC_MSG_ERROR(maybe you want the gtk-gnome-1-2 branch?)]) AC_SUBST(ATK_CFLAGS) AC_SUBST(ATK_LIBS) if test -n "$export_dynamic"; then ATK_LIBS=`echo $ATK_LIBS | sed -e "s/$export_dynamic//"` fi dnl pango PKG_CHECK_MODULES(PANGO, pango >= pango_required_version,,[AC_MSG_ERROR(maybe you want the gtk-gnome-1-2 branch?)]) AC_SUBST(PANGO_CFLAGS) AC_SUBST(PANGO_LIBS) if test -n "$export_dynamic"; then PANGO_LIBS=`echo $PANGO_LIBS | sed -e "s/$export_dynamic//"` fi dnl gtk+ AM_PATH_GTK_2_0(gtk_required_version,,[AC_MSG_ERROR(maybe you want the gtk-gnome-1-2 branch?)],$extra_mods) if test -n "$export_dynamic"; then GTK_LIBS=`echo $GTK_LIBS | sed -e "s/$export_dynamic//"` fi dnl libglade build_libglade=false PKG_CHECK_MODULES(LIBGLADE, libglade-2.0 >= libglade_required_version, build_libglade=true, build_libglade=false) AC_SUBST(LIBGLADE_CFLAGS) AC_SUBST(LIBGLADE_LIBS) AM_CONDITIONAL(BUILD_LIBGLADE, $build_libglade) if test -n "$export_dynamic"; then LIBGLADE_LIBS=`echo $LIBGLADE_LIBS | sed -e "s/$export_dynamic//"` fi dnl gtkgl build_gtkgl=false PKG_CHECK_MODULES(GTKGL, gtkgl-2.0 >= gtkgl_required_version, build_gtkgl=true, build_gtkgl=false) AC_SUBST(GTKGL_CFLAGS) AC_SUBST(GTKGL_LIBS) AM_CONDITIONAL(BUILD_GTKGL, $build_gtkgl) if test -n "$export_dynamic"; then GTKGL_LIBS=`echo $GTKGL_LIBS | sed -e "s/$export_dynamic//"` fi AC_ARG_ENABLE(numpy, AC_HELP_STRING([--disable-numpy], [Disable numeric python features]),, enable_numpy=yes) dnl checks to see if Numeric Python is installed. if test "x$enable_numpy" != xno; then save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES" AC_CHECK_HEADER([Numeric/arrayobject.h], [AC_DEFINE(HAVE_NUMPY,,[whether to include numeric python support])],, [#include ]) CPPFLAGS="$save_CPPFLAGS" fi dnl add debugging options ... changequote(,)dnl if test "x$GCC" = xyes; then case " $CFLAGS " in *[\ \ ]-Wall[\ \ ]*) ;; *) CFLAGS="$CFLAGS -Wall" ;; esac case " $CFLAGS " in *[\ \ ]-std=c9x[\ \ ]*) ;; *) CFLAGS="$CFLAGS -std=c9x" ;; esac fi changequote([,])dnl AC_CONFIG_FILES( Makefile pygtk-2.0.pc codegen/Makefile gtk/Makefile docs/Makefile codegen/pygtk-codegen-2.0 pygtk.spec PKG-INFO) AC_OUTPUT