1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.52)
AC_INIT(gtk-industrial-engine, 0.2.32)
AC_CONFIG_SRCDIR(config.h.in)
AC_COPYRIGHT([Copyright 2002 Ximian, Inc.])
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AM_CONFIG_HEADER(config.h)
AC_PROG_CC
AC_PROG_INSTALL
AM_PROG_LIBTOOL
GETTEXT_PACKAGE=gtk-industrial-engine
AC_SUBST(GETTEXT_PACKAGE)
ALL_LINGUAS="de fr"
AM_GLIB_GNU_GETTEXT
AC_PROG_INTLTOOL([0.23])
PKG_CHECK_MODULES(GTK2,
gtk+-2.0 >= 2.0.0,,
AC_MSG_ERROR([GTK+-2.0 is required to compile gtk-engines]))
GTK2_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
AC_SUBST(GTK2_CFLAGS)
AC_SUBST(GTK2_LIBS)
AC_SUBST(GTK2_VERSION)
AM_PATH_GTK(1.2.9, ,
AC_MSG_ERROR([*** GTK+-1.2.9 not installed - please install first ***]))AC_CHECK_LIB(gtk, gtk_style_set_prop_experimental, :,
AC_MSG_ERROR([*** gtk_style_set_prop_experimental() not found; perhaps you have an old CVS version of GTK+ ***]),
$GTK_LIBS)
AC_CONFIG_FILES([
Makefile
icons/24x24/apps/Makefile
icons/24x24/Makefile
icons/32x32/apps/Makefile
icons/32x32/Makefile
icons/48x48/apps/Makefile
icons/48x48/devices/Makefile
icons/48x48/mimetypes/Makefile
icons/48x48/emblems/Makefile
icons/48x48/filesystems/Makefile
icons/48x48/Makefile
icons/72x72/filesystems/Makefile
icons/72x72/Makefile
icons/96x96/filesystems/Makefile
icons/96x96/Makefile
icons/cursors/Makefile
icons/scalable/devices/Makefile
icons/scalable/filesystems/Makefile
icons/scalable/Makefile
icons/Makefile
icons/192x192/apps/Makefile
icons/192x192/filesystems/Makefile
icons/192x192/Makefile
gtk1-engine/Makefile
gtk1-engine/gtk/Makefile
gtk2-engine/Makefile
gtk2-engine/gtk-2.0/Makefile
gtk2-engine/gtk-2.0/gtkrc
metacity/Makefile
po/Makefile.in
])
AC_OUTPUT
|