sugar-toolkit-gtk3/configure.ac

72 lines
1.7 KiB
Plaintext
Raw Normal View History

2007-11-23 17:13:55 +01:00
AC_INIT([Sugar],[0.75.0],[],[sugar])
2006-04-26 06:18:21 +02:00
AC_PREREQ([2.59])
2006-08-21 15:59:40 +02:00
AC_CONFIG_MACRO_DIR([m4])
2006-04-26 06:18:21 +02:00
AC_CONFIG_SRCDIR([configure.ac])
AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip])
2006-08-21 15:59:40 +02:00
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
AC_PATH_PROG([GLIB_GENMARSHAL], [glib-genmarshal])
2006-04-26 06:18:21 +02:00
AM_PATH_PYTHON
2006-08-21 15:59:40 +02:00
AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)])
2006-04-26 06:18:21 +02:00
2006-08-25 11:19:27 +02:00
AC_PATH_PROG(PYGTK_CODEGEN, pygtk-codegen-2.0, no)
PKG_CHECK_MODULES(SHELL, pygtk-2.0 gtk+-2.0)
2007-10-16 11:04:59 +02:00
PKG_CHECK_MODULES(LIB, pygtk-2.0 gtk+-2.0)
2007-01-23 22:13:03 +01:00
PYGTK_DEFSDIR=`$PKG_CONFIG --variable=defsdir pygtk-2.0`
AC_SUBST(PYGTK_DEFSDIR)
2006-07-05 17:00:11 +02:00
# Setup GETTEXT
#
ALL_LINGUAS="ar el fr ig ja ml pl yo de es ha it mk pa pt_BR"
2006-07-05 17:00:11 +02:00
GETTEXT_PACKAGE=sugar
2006-10-13 21:56:27 +02:00
AC_PROG_INTLTOOL([0.33])
2006-07-05 17:00:11 +02:00
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package])
AM_GLIB_GNU_GETTEXT
AC_ARG_ENABLE(update-mimedb,
AC_HELP_STRING([--disable-update-mimedb],
[disable the update-mime-database after install [default=no]]),,
enable_update_mimedb=yes)
AM_CONDITIONAL(ENABLE_UPDATE_MIMEDB, test x$enable_update_mimedb = xyes)
AC_CONFIG_FILES([bin/sugar], [chmod +x sugar])
2006-04-26 06:18:21 +02:00
AC_OUTPUT([
Makefile
bin/Makefile
data/Makefile
2007-05-21 17:36:08 +02:00
lib/Makefile
2007-10-16 11:04:59 +02:00
lib/sugar/Makefile
lib/sugar/activity/Makefile
lib/sugar/bundle/Makefile
lib/sugar/clipboard/Makefile
lib/sugar/graphics/Makefile
lib/sugar/presence/Makefile
lib/sugar/datastore/Makefile
services/Makefile
services/shell/Makefile
2007-01-04 20:17:10 +01:00
shell/Makefile
shell/controlpanel/Makefile
2007-02-25 23:53:10 +01:00
shell/intro/Makefile
shell/hardware/Makefile
2007-01-04 20:17:10 +01:00
shell/view/Makefile
shell/view/devices/Makefile
2007-03-15 21:37:15 +01:00
shell/view/devices/network/Makefile
2007-01-04 20:17:10 +01:00
shell/view/frame/Makefile
shell/view/home/Makefile
2007-01-04 20:17:10 +01:00
shell/model/Makefile
shell/model/devices/Makefile
2007-03-15 21:37:15 +01:00
shell/model/devices/network/Makefile
2006-07-05 17:00:11 +02:00
po/Makefile.in
2006-04-26 06:18:21 +02:00
])