l3afpad/configure.ac

76 lines
2.1 KiB
Plaintext
Raw Normal View History

2012-05-21 09:46:32 +02:00
AC_INIT(L3afpad, 0.8.18.1.9, caleb@calno.com)
2011-12-12 14:29:30 +01:00
AM_INIT_AUTOMAKE($PACKAGE_TARNAME, $PACKAGE_VERSION)
AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE([enable])
2011-12-12 14:37:14 +01:00
AC_SYS_LARGEFILE
2011-12-12 14:29:30 +01:00
AC_PROG_INTLTOOL(, no-xml) # require >= 0.31 for autoreconf
AC_PROG_CC
if test "$GCC" = "yes"; then
2011-12-12 14:35:35 +01:00
CFLAGS="$CFLAGS -Wall"
2011-12-12 14:29:30 +01:00
fi
AM_PROG_CC_C_O
PKG_CHECK_MODULES(GTK, gtk+-3.0)
AC_ARG_ENABLE(print,
AC_HELP_STRING([--disable-print], [force to disable print feature]))
2011-12-12 14:35:35 +01:00
if test "$enable_print" = "no"; then
AC_DEFINE(ENABLE_PRINT, 0, [Define to 0 if you disable print.])
fi
2011-12-12 14:29:30 +01:00
2011-12-12 14:55:40 +01:00
AC_ARG_ENABLE(statistics,
AC_HELP_STRING([--disable-statistics], [force to disable statistics]))
if test "$enable_statistics" = "no"; then
AC_DEFINE(ENABLE_STATISTICS, 0, [Define to 0 if you disable statistics.])
fi
2011-12-12 14:37:14 +01:00
AC_ARG_ENABLE(xinput2,
AC_HELP_STRING([--disable-xinput2], [force to disable Xinput2]))
if test "$enable_xinput2" = "no"; then
AC_DEFINE(ENABLE_XINPUT2, 0, [Define to 0 if you disable Xinput2.])
fi
2011-12-12 14:29:30 +01:00
AC_ARG_ENABLE(emacs,
2011-12-12 14:35:35 +01:00
AC_HELP_STRING([--enable-emacs], [implement Emacs key theme (experimental)]))
if test "$enable_emacs" = "yes"; then
AC_DEFINE(ENABLE_EMACS, 1, [Define to 1 if you enable Emacs key theme.])
fi
2011-12-12 14:29:30 +01:00
2011-12-12 14:37:14 +01:00
AC_ARG_ENABLE(gtkgrid,
AC_HELP_STRING([--enable-gtkgrid], [Enable GtkGrid]))
if test "$enable_gtkgrid" = "yes"; then
AC_DEFINE(USE_GTK_GRID, 1, [Define to 1 if you enable GtkGrid.])
fi
AC_ARG_ENABLE(search-history,
AC_HELP_STRING([--enable-search-history], [force to enable search history]))
if test "$enable_search_history" = "yes"; then
AC_DEFINE(SEARCH_HISTORY, 1, [Define to 1 if you enable search history.])
fi
2011-12-12 14:29:30 +01:00
GETTEXT_PACKAGE="$PACKAGE"
AC_SUBST(GETTEXT_PACKAGE)
AM_GLIB_DEFINE_LOCALEDIR(LOCALEDIR)
AC_OUTPUT([
Makefile
src/Makefile
data/Makefile
2011-12-12 14:46:28 +01:00
data/icons/16x16/Makefile
data/icons/20x20/Makefile
data/icons/22x22/Makefile
data/icons/24x24/Makefile
data/icons/32x32/Makefile
data/icons/36x36/Makefile
data/icons/40x40/Makefile
data/icons/48x48/Makefile
data/icons/64x64/Makefile
data/icons/72x72/Makefile
data/icons/96x96/Makefile
data/icons/128x128/Makefile
data/icons/192x192/Makefile
data/icons/256x256/Makefile
data/icons/Makefile
2011-12-12 14:29:30 +01:00
po/Makefile.in
])