2013-01-23 17:28:19 +00:00
|
|
|
# configure.ac for anaconda widgets
|
|
|
|
#
|
|
|
|
# Copyright (C) 2011 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This copyrighted material is made available to anyone wishing to use,
|
|
|
|
# modify, copy, or redistribute it subject to the terms and conditions of
|
|
|
|
# the GNU General Public License v.2, or (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY expressed or implied, including the implied warranties of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
# Public License for more details. You should have received a copy of the
|
|
|
|
# GNU General Public License along with this program; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the
|
|
|
|
# source code or documentation are not subject to the GNU General Public
|
|
|
|
# License and may only be used or replicated with the express permission of
|
|
|
|
# Red Hat, Inc.
|
|
|
|
#
|
|
|
|
|
2016-04-10 04:00:00 +00:00
|
|
|
m4_define(python_required_version, 3.4)
|
|
|
|
|
2013-01-23 17:28:19 +00:00
|
|
|
AC_PREREQ([2.63])
|
2017-01-09 02:09:07 +00:00
|
|
|
AC_INIT([AnacondaWidgets], [3.3], [clumens@redhat.com])
|
2016-04-10 04:00:00 +00:00
|
|
|
|
|
|
|
# Disable building static libraries.
|
|
|
|
# This needs to be set before initializing automake
|
|
|
|
AC_DISABLE_STATIC
|
|
|
|
|
2014-04-07 12:38:09 +00:00
|
|
|
AM_INIT_AUTOMAKE([foreign])
|
2013-01-23 17:28:19 +00:00
|
|
|
AM_SILENT_RULES([yes])
|
|
|
|
|
2016-04-10 04:00:00 +00:00
|
|
|
AM_PATH_PYTHON(python_required_version)
|
2013-01-23 17:28:19 +00:00
|
|
|
|
|
|
|
AC_CONFIG_SRCDIR([src/BaseWindow.c])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
|
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
|
2015-05-30 11:20:59 +00:00
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
|
2013-01-23 17:28:19 +00:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
|
2017-01-09 02:09:07 +00:00
|
|
|
# Define this so gettext.h works instead of using the whole gettext macro
|
|
|
|
CFLAGS="${CFLAGS} -DENABLE_NLS"
|
2013-01-23 17:28:19 +00:00
|
|
|
|
2014-04-07 12:38:09 +00:00
|
|
|
dnl Make sure that autoconf fails if the gobject-introspection macro
|
|
|
|
dnl is not expanded.
|
2015-05-30 11:20:59 +00:00
|
|
|
m4_ifdef([GOBJECT_INTROSPECTION_CHECK],
|
|
|
|
[GOBJECT_INTROSPECTION_CHECK([0.6.7])],
|
|
|
|
[found_introspection=no
|
|
|
|
AM_CONDITIONAL(HAVE_INTROSPECTION, false)])
|
2017-01-09 02:09:07 +00:00
|
|
|
|
2015-05-30 11:20:59 +00:00
|
|
|
# Complain if introspection was not enabled
|
2014-04-07 12:38:09 +00:00
|
|
|
AS_IF([test "x$found_introspection" = xyes], [:],
|
2015-05-30 11:20:59 +00:00
|
|
|
[ANACONDA_SOFT_FAILURE([GObject introspection must be enabled])])
|
2013-01-23 17:28:19 +00:00
|
|
|
|
2015-05-30 11:20:59 +00:00
|
|
|
# Add gtk-doc's html-dir option without pulling in the rest of gtk-doc
|
|
|
|
AC_ARG_WITH([html-dir],
|
|
|
|
AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
|
|
|
|
[with_html_dir='${datadir}/gtk-doc/html'])
|
|
|
|
HTML_DIR="$with_html_dir"
|
|
|
|
AC_SUBST([HTML_DIR])
|
2013-01-23 17:28:19 +00:00
|
|
|
|
2015-05-30 11:20:59 +00:00
|
|
|
ANACONDA_PKG_CHECK_MODULES([GLADEUI], [gladeui-2.0 >= 3.10])
|
|
|
|
ANACONDA_PKG_CHECK_MODULES([GTK], [gtk+-x11-3.0 >= 3.11.3])
|
|
|
|
ANACONDA_PKG_CHECK_MODULES([LIBXKLAVIER], [libxklavier >= 5.2.1])
|
|
|
|
ANACONDA_PKG_CHECK_EXISTS([gobject-introspection-1.0 >= 1.30])
|
2013-01-23 17:28:19 +00:00
|
|
|
|
2017-01-09 02:09:07 +00:00
|
|
|
# Use AM_PATH_GLIB_2_0 to define some extra glib-related variables
|
|
|
|
AM_PATH_GLIB_2_0
|
|
|
|
|
2015-05-30 11:20:59 +00:00
|
|
|
AC_CHECK_HEADERS([libintl.h stdlib.h string.h unistd.h locale.h],
|
|
|
|
[],
|
|
|
|
[ANACONDA_SOFT_FAILURE([Header file $ac_header not found.])],
|
|
|
|
[])
|
2013-01-23 17:28:19 +00:00
|
|
|
|
2015-05-30 11:20:59 +00:00
|
|
|
AC_CHECK_FUNCS([setlocale],
|
|
|
|
[],
|
|
|
|
[ANACONDA_SOFT_FAILURE([Function $ac_func not found.])])
|
2015-03-23 11:36:12 +00:00
|
|
|
|
2013-01-23 17:28:19 +00:00
|
|
|
AC_CONFIG_FILES([Makefile
|
|
|
|
doc/Makefile
|
|
|
|
glade/Makefile
|
|
|
|
src/Makefile
|
2017-01-09 02:09:07 +00:00
|
|
|
python/Makefile])
|
2013-01-23 17:28:19 +00:00
|
|
|
AC_OUTPUT
|
2015-05-30 11:20:59 +00:00
|
|
|
|
|
|
|
# Gently advise the user about the build failures they are about to encounter
|
|
|
|
ANACONDA_FAILURES
|