2 # Process this file with autoconf to produce a configure script.
4 AC_INIT([lxappearance],[0.5.5],[http://lxde.org/])
5 AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign subdir-objects no-dist-gzip dist-xz])
8 IT_PROG_INTLTOOL([0.40.0])
14 # Support silent build rules. Disable by either passing --disable-silent-rules
15 # to configure or passing V=1 to make
16 AM_SILENT_RULES([yes])
18 AC_CONFIG_HEADERS([config.h])
19 AC_CONFIG_MACRO_DIR([m4])
27 # Checks for libraries.
29 # Checks for header files.
31 # Checks for typedefs, structures, and compiler characteristics.
33 # Checks for library functions.
37 AS_HELP_STRING([--enable-man],[regenerate roff man pages from Docbook @<:@default=yes@:>@]),
38 [case "${enableval}" in
39 yes) enable_man=yes ;;
41 *) AC_MSG_ERROR([bad value "${enableval}" for --enable-man, use "yes" (default) or "no".]) ;;
44 AC_ARG_ENABLE(more_warnings,
45 [AS_HELP_STRING([--enable-more-warnings],
46 [Add more warnings @<:@default=no@:>@])],
47 [enable_more_warnings="${enableval}"],
48 [enable_more_warnings=no]
52 AS_HELP_STRING([--enable-gtk3],[enable to use gtk-3.0 instead of gtk-2.0]),
53 [case "${enableval}" in
54 yes) enable_gtk3=yes ;;
56 *) AC_MSG_ERROR([bad value "${enableval}" for --enable-gtk3, use "yes" (default) or "no".]) ;;
59 PKG_CHECK_MODULES(XLIB, "x11")
63 if test "x$enable_gtk3" = "xyes" ; then
64 CFLAGS="$CFLAGS -DENABLE_GTK3"
65 gtk_modules="gtk+-3.0 >= 3.0.0"
67 gtk_modules="gtk+-2.0 >= 2.12.0 gthread-2.0"
70 PKG_CHECK_MODULES(GTK, [$gtk_modules])
75 [AS_HELP_STRING([--enable-dbus],
76 [Use Dbus support (usefull for lxsession > 0.4.9) @<:@default=no@:>@])],
77 [enable_dbus="${enableval}"],
82 if test x"$enable_dbus" = x"yes"; then
83 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.95 dbus-glib-1 >= 0.70])
84 CFLAGS="$CFLAGS -DENABLE_DBUS"
91 gmodule_modules="gmodule-export-2.0"
92 PKG_CHECK_MODULES(GMODULE, [$gmodule_modules])
93 AC_SUBST(GMODULE_CFLAGS)
94 AC_SUBST(GMODULE_LIBS)
96 # gio_modules="gthread-2.0 gio-unix-2.0 glib-2.0 >= 2.18.0"
97 # PKG_CHECK_MODULES(GIO, [$gio_modules])
98 # AC_SUBST(GIO_CFLAGS)
101 # menu_modules="libmenu-cache >= 0.3.2"
102 # PKG_CHECK_MODULES(MENU_CACHE, [$menu_modules])
103 # AC_SUBST(MENU_CACHE_CFLAGS)
104 # AC_SUBST(MENU_CACHE_LIBS)
106 if test x"$enable_more_warnings" = x"yes"; then
107 ADDITIONAL_FLAGS="-Wall -Werror=all -Werror=format -Werror=implicit-function-declaration -Werror=implicit-int -Werror=missing-braces -Werror=parentheses -Werror=return-type -Werror=strict-aliasing -Werror=switch -Wuninitialized -Werror=unused-label -Werror=unused-value -Wextra -Wno-missing-field-initializers -Wno-unused-parameter -Werror=missing-declarations -Wredundant-decls -Wmissing-noreturn -Wpointer-arith -Wcast-align -Wwrite-strings -Werror=inline -Werror=format-nonliteral -Wformat-nonliteral -Werror=format-security -Wformat-security -Winit-self -Werror=missing-include-dirs -Werror=undef -Werror=aggregate-return -Wmissing-format-attribute -Werror=nested-externs -fno-strict-aliasing -fmessage-length=0 -Wp,-D_FORTIFY_SOURCE=2 -DG_DISABLE_DEPRECATED -DG_DISABLE_SINGLE_INCLUDES -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_DEPRECATED -DGTK_DISABLE_SINGLE_INCLUDES"
109 AC_SUBST(ADDITIONAL_FLAGS)
112 [AS_HELP_STRING([--enable-man],
113 [regenerate roff man pages from Docbook @<:@default=no@:>@])],
114 [enable_man="${enableval}"],
118 if test "$enable_debug" = "yes"; then
119 # turn on debug and disable optimization
120 CPPFLAGS="$CPPFLAGS -DG_ENABLE_DEBUG -O0 -g"
122 # turn off glib debug checks
123 CPPFLAGS="$CPPFLAGS -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS -DG_DISABLE_CAST_CHECKS"
126 # Generate po/LINGUAS on the fly rather than relying on translators
127 # to maintain it manually. This also overcome the problem that Transifex
128 # cannot add a language to po/LINGUAS if a new po file is submitted.
129 rm -f $srcdir/po/LINGUAS
130 for po_file in `ls $srcdir/po/*.po | sort`;
132 lang=`echo "$po_file" | sed "s|.*/po/\(.*\)\.po|\1|g"`
133 echo $lang >> $srcdir/po/LINGUAS
136 GETTEXT_PACKAGE=lxappearance
137 AC_SUBST(GETTEXT_PACKAGE)
139 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.])
141 if test x"$enable_man" = x"yes"; then
142 AC_PATH_PROG([XSLTPROC], [xsltproc])
143 if test -z "$XSLTPROC"; then
147 dnl check for DocBook DTD and stylesheets in the local catalog.
148 JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN],
149 [DocBook XML DTD V4.1.2], [], enable_man=no)
150 JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
151 [DocBook XSL Stylesheets >= 1.70.1], [], enable_man=no)
154 AM_CONDITIONAL(ENABLE_MAN, test "x$enable_man" != "xno")
170 echo lxappearance....................... : Version $VERSION
172 echo Enable debug....................: "$enable_debug"
173 echo Enable Dbus support.............: "$enable_dbus"
174 echo Prefix..........................: $prefix
176 echo The binary will be installed in $prefix/bin
178 echo http://lxde.org/
180 echo "Ready to make lxappearance. Type 'make' to continue."