1998-06-11 01:21:14 +02:00
|
|
|
# Configure paths for GLIB
|
2001-04-03 20:27:59 +02:00
|
|
|
# Owen Taylor 1997-2001
|
1998-06-11 01:21:14 +02:00
|
|
|
|
2017-10-24 14:06:49 +02:00
|
|
|
# Increment this whenever this file is changed.
|
2021-01-27 12:55:37 +01:00
|
|
|
#serial 4
|
2017-10-24 14:06:49 +02:00
|
|
|
|
2000-07-14 21:22:54 +02:00
|
|
|
dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
|
2008-01-15 11:12:58 +01:00
|
|
|
dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject,
|
|
|
|
dnl gthread, or gio is specified in MODULES, pass to pkg-config
|
1998-06-11 01:21:14 +02:00
|
|
|
dnl
|
2004-01-28 03:46:30 +01:00
|
|
|
AC_DEFUN([AM_PATH_GLIB_2_0],
|
1998-06-11 01:21:14 +02:00
|
|
|
[dnl
|
2001-04-17 02:55:34 +02:00
|
|
|
dnl Get the cflags and libraries from pkg-config
|
1998-06-11 01:21:14 +02:00
|
|
|
dnl
|
m4macros: Allow information from pkg-config to be overridden
By using PKG_CHECK_VAR, we declare $GLIB_COMPILE_SCHEMAS,
$GLIB_GENMARSHAL, $GOBJECT_QUERY, $GLIB_MKENUMS and
$GLIB_COMPILE_RESOURCES as Autoconf "precious variables" with AC_ARG_VAR,
similar to $PKG_CONFIG and $CC, so that they can be put on a configure
command line:
./configure GLIB_COMPILE_RESOURCES=my-glib-compile-resources
If they are set to a non-empty value, PKG_CHECK_VAR will use that
instead of auto-detecting from pkg-config, so that builders can
override them, for example when cross-compiling.
Similarly, use the standard PKG_CHECK_MODULES macro to get GLib's CFLAGS
and LIBS.
It's possible that most of the rest of each macro can also disappear,
but for the moment I've given them the benefit of the doubt.
This does result in printing "checking for GLIB" twice (once for
PKG_CHECK_MODULES and once for GLib's custom checks), but if you're
using Autotools, you probably don't have a strong objection to overly
verbose output.
Signed-off-by: Simon McVittie <smcv@collabora.com>
2018-10-04 21:13:32 +02:00
|
|
|
|
|
|
|
dnl We can't use PKG_PREREQ because that needs 0.29.
|
|
|
|
m4_ifndef([PKG_PROG_PKG_CONFIG],
|
|
|
|
[pkg.m4 version 0.28 or later is required])
|
|
|
|
|
2002-02-28 11:03:24 +01:00
|
|
|
AC_ARG_ENABLE(glibtest, [ --disable-glibtest do not try to compile and run a test GLIB program],
|
1998-06-11 01:21:14 +02:00
|
|
|
, enable_glibtest=yes)
|
|
|
|
|
m4macros: Allow information from pkg-config to be overridden
By using PKG_CHECK_VAR, we declare $GLIB_COMPILE_SCHEMAS,
$GLIB_GENMARSHAL, $GOBJECT_QUERY, $GLIB_MKENUMS and
$GLIB_COMPILE_RESOURCES as Autoconf "precious variables" with AC_ARG_VAR,
similar to $PKG_CONFIG and $CC, so that they can be put on a configure
command line:
./configure GLIB_COMPILE_RESOURCES=my-glib-compile-resources
If they are set to a non-empty value, PKG_CHECK_VAR will use that
instead of auto-detecting from pkg-config, so that builders can
override them, for example when cross-compiling.
Similarly, use the standard PKG_CHECK_MODULES macro to get GLib's CFLAGS
and LIBS.
It's possible that most of the rest of each macro can also disappear,
but for the moment I've given them the benefit of the doubt.
This does result in printing "checking for GLIB" twice (once for
PKG_CHECK_MODULES and once for GLib's custom checks), but if you're
using Autotools, you probably don't have a strong objection to overly
verbose output.
Signed-off-by: Simon McVittie <smcv@collabora.com>
2018-10-04 21:13:32 +02:00
|
|
|
min_glib_version=ifelse([$1], [], [2.0.0], [$1])
|
|
|
|
pkg_config_args="glib-2.0 >= $min_glib_version"
|
1998-12-19 07:24:26 +01:00
|
|
|
for module in . $4
|
|
|
|
do
|
1998-12-15 16:40:01 +01:00
|
|
|
case "$module" in
|
|
|
|
gmodule)
|
2001-04-03 20:27:59 +02:00
|
|
|
pkg_config_args="$pkg_config_args gmodule-2.0"
|
1998-12-15 16:40:01 +01:00
|
|
|
;;
|
2004-11-17 04:38:39 +01:00
|
|
|
gmodule-no-export)
|
|
|
|
pkg_config_args="$pkg_config_args gmodule-no-export-2.0"
|
|
|
|
;;
|
2000-05-12 17:23:16 +02:00
|
|
|
gobject)
|
2001-04-03 20:27:59 +02:00
|
|
|
pkg_config_args="$pkg_config_args gobject-2.0"
|
2000-05-12 17:23:16 +02:00
|
|
|
;;
|
1998-12-15 16:40:01 +01:00
|
|
|
gthread)
|
2001-04-03 20:27:59 +02:00
|
|
|
pkg_config_args="$pkg_config_args gthread-2.0"
|
1998-12-15 16:40:01 +01:00
|
|
|
;;
|
2008-01-15 11:12:58 +01:00
|
|
|
gio*)
|
|
|
|
pkg_config_args="$pkg_config_args $module-2.0"
|
|
|
|
;;
|
1998-12-15 16:40:01 +01:00
|
|
|
esac
|
|
|
|
done
|
1998-08-17 02:00:51 +02:00
|
|
|
|
2007-11-08 06:48:35 +01:00
|
|
|
PKG_PROG_PKG_CONFIG([0.16])
|
2001-04-16 17:21:19 +02:00
|
|
|
|
1998-06-11 01:21:14 +02:00
|
|
|
no_glib=""
|
2001-04-03 20:27:59 +02:00
|
|
|
|
2007-01-08 05:42:31 +01:00
|
|
|
if test "x$PKG_CONFIG" = x ; then
|
2001-10-29 17:48:40 +01:00
|
|
|
no_glib=yes
|
2007-01-08 05:42:31 +01:00
|
|
|
PKG_CONFIG=no
|
2001-06-07 18:39:54 +02:00
|
|
|
fi
|
|
|
|
|
m4macros: Allow information from pkg-config to be overridden
By using PKG_CHECK_VAR, we declare $GLIB_COMPILE_SCHEMAS,
$GLIB_GENMARSHAL, $GOBJECT_QUERY, $GLIB_MKENUMS and
$GLIB_COMPILE_RESOURCES as Autoconf "precious variables" with AC_ARG_VAR,
similar to $PKG_CONFIG and $CC, so that they can be put on a configure
command line:
./configure GLIB_COMPILE_RESOURCES=my-glib-compile-resources
If they are set to a non-empty value, PKG_CHECK_VAR will use that
instead of auto-detecting from pkg-config, so that builders can
override them, for example when cross-compiling.
Similarly, use the standard PKG_CHECK_MODULES macro to get GLib's CFLAGS
and LIBS.
It's possible that most of the rest of each macro can also disappear,
but for the moment I've given them the benefit of the doubt.
This does result in printing "checking for GLIB" twice (once for
PKG_CHECK_MODULES and once for GLib's custom checks), but if you're
using Autotools, you probably don't have a strong objection to overly
verbose output.
Signed-off-by: Simon McVittie <smcv@collabora.com>
2018-10-04 21:13:32 +02:00
|
|
|
dnl For GLIB_CFLAGS and GLIB_LIBS
|
m4macros: Fix detection of glib-2.0 alone
We unconditionally appended ">= $min_glib_version" to the modules to
look for, even though we had already included
"glib-2.0 >= $min_glib_version" in our list. When requesting additional
modules, this was fine, for example
AM_PATH_GLIB_2_0([2.58], [:], [:], [gobject gio])
ended up asking pkg-config for
glib-2.0 >= 2.58 gobject-2.0 gio-2.0 >= 2.58
which is redundant (since they all share a version number) but
otherwise OK.
However,
AM_PATH_GLIB_2_0([2.58], [:], [:], [])
ended up asking pkg-config for
glib-2.0 >= 2.58 >= 2.58
which is not OK; the second ">=" was parsed as a bizarrely-named package
to check for, and obviously few people have ">=.pc" installed.
Signed-off-by: Simon McVittie <smcv@collabora.com>
Fixes: 4bb16f48 "m4macros: Allow information from pkg-config to be overridden"
2018-10-11 13:49:56 +02:00
|
|
|
PKG_CHECK_MODULES([GLIB], [$pkg_config_args], [:], [:])
|
m4macros: Allow information from pkg-config to be overridden
By using PKG_CHECK_VAR, we declare $GLIB_COMPILE_SCHEMAS,
$GLIB_GENMARSHAL, $GOBJECT_QUERY, $GLIB_MKENUMS and
$GLIB_COMPILE_RESOURCES as Autoconf "precious variables" with AC_ARG_VAR,
similar to $PKG_CONFIG and $CC, so that they can be put on a configure
command line:
./configure GLIB_COMPILE_RESOURCES=my-glib-compile-resources
If they are set to a non-empty value, PKG_CHECK_VAR will use that
instead of auto-detecting from pkg-config, so that builders can
override them, for example when cross-compiling.
Similarly, use the standard PKG_CHECK_MODULES macro to get GLib's CFLAGS
and LIBS.
It's possible that most of the rest of each macro can also disappear,
but for the moment I've given them the benefit of the doubt.
This does result in printing "checking for GLIB" twice (once for
PKG_CHECK_MODULES and once for GLib's custom checks), but if you're
using Autotools, you probably don't have a strong objection to overly
verbose output.
Signed-off-by: Simon McVittie <smcv@collabora.com>
2018-10-04 21:13:32 +02:00
|
|
|
|
|
|
|
dnl For the tools
|
|
|
|
PKG_CHECK_VAR([GLIB_GENMARSHAL], [glib-2.0], [glib_genmarshal])
|
|
|
|
PKG_CHECK_VAR([GOBJECT_QUERY], [glib-2.0], [gobject_query])
|
|
|
|
PKG_CHECK_VAR([GLIB_MKENUMS], [glib-2.0], [glib_mkenums])
|
|
|
|
PKG_CHECK_VAR([GLIB_COMPILE_RESOURCES], [gio-2.0], [glib_compile_resources])
|
|
|
|
|
2001-06-07 18:39:54 +02:00
|
|
|
AC_MSG_CHECKING(for GLIB - version >= $min_glib_version)
|
|
|
|
|
2001-10-29 17:48:40 +01:00
|
|
|
if test x$PKG_CONFIG != xno ; then
|
|
|
|
## don't try to run the test against uninstalled libtool libs
|
|
|
|
if $PKG_CONFIG --uninstalled $pkg_config_args; then
|
|
|
|
echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH"
|
|
|
|
enable_glibtest=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
no_glib=yes
|
|
|
|
fi
|
2001-06-07 18:39:54 +02:00
|
|
|
fi
|
|
|
|
|
2001-04-03 20:27:59 +02:00
|
|
|
if test x"$no_glib" = x ; then
|
2001-04-11 16:58:29 +02:00
|
|
|
glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \
|
1998-06-11 01:21:14 +02:00
|
|
|
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
|
2001-04-11 16:58:29 +02:00
|
|
|
glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \
|
1998-06-11 01:21:14 +02:00
|
|
|
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
|
2001-04-11 16:58:29 +02:00
|
|
|
glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \
|
1998-06-11 01:21:14 +02:00
|
|
|
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
|
|
|
|
if test "x$enable_glibtest" = "xyes" ; then
|
|
|
|
ac_save_CFLAGS="$CFLAGS"
|
|
|
|
ac_save_LIBS="$LIBS"
|
|
|
|
CFLAGS="$CFLAGS $GLIB_CFLAGS"
|
1998-12-31 21:58:03 +01:00
|
|
|
LIBS="$GLIB_LIBS $LIBS"
|
1998-06-11 01:21:14 +02:00
|
|
|
dnl
|
2020-06-12 15:02:30 +02:00
|
|
|
dnl Now check if the installed GLib is sufficiently new. (Also sanity
|
2001-04-17 02:55:34 +02:00
|
|
|
dnl checks the results of pkg-config to some extent)
|
1998-06-11 01:21:14 +02:00
|
|
|
dnl
|
|
|
|
rm -f conf.glibtest
|
2021-01-25 22:07:55 +01:00
|
|
|
AC_RUN_IFELSE([AC_LANG_SOURCE([[
|
1998-06-11 01:21:14 +02:00
|
|
|
#include <glib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int
|
2017-10-24 12:29:11 +02:00
|
|
|
main (void)
|
1998-06-11 01:21:14 +02:00
|
|
|
{
|
2010-09-23 13:57:22 +02:00
|
|
|
unsigned int major, minor, micro;
|
1998-06-11 01:21:14 +02:00
|
|
|
|
2009-11-03 17:38:58 +01:00
|
|
|
fclose (fopen ("conf.glibtest", "w"));
|
1998-06-11 01:21:14 +02:00
|
|
|
|
2013-10-19 19:03:56 +02:00
|
|
|
if (sscanf("$min_glib_version", "%u.%u.%u", &major, &minor, µ) != 3) {
|
1998-06-11 01:21:14 +02:00
|
|
|
printf("%s, bad version string\n", "$min_glib_version");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((glib_major_version != $glib_config_major_version) ||
|
|
|
|
(glib_minor_version != $glib_config_minor_version) ||
|
|
|
|
(glib_micro_version != $glib_config_micro_version))
|
|
|
|
{
|
2001-04-03 20:27:59 +02:00
|
|
|
printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n",
|
1998-06-11 01:21:14 +02:00
|
|
|
$glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version,
|
|
|
|
glib_major_version, glib_minor_version, glib_micro_version);
|
2001-04-03 20:27:59 +02:00
|
|
|
printf ("*** was found! If pkg-config was correct, then it is best\n");
|
|
|
|
printf ("*** to remove the old version of GLib. You may also be able to fix the error\n");
|
2020-06-12 15:02:30 +02:00
|
|
|
printf("*** by modifying your LD_LIBRARY_PATH environment variable, or by editing\n");
|
1998-06-11 01:21:14 +02:00
|
|
|
printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
|
|
|
|
printf("*** required on your system.\n");
|
2001-04-03 20:27:59 +02:00
|
|
|
printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
|
|
|
|
printf("*** to point to the correct configuration files\n");
|
1998-06-11 01:21:14 +02:00
|
|
|
}
|
|
|
|
else if ((glib_major_version != GLIB_MAJOR_VERSION) ||
|
|
|
|
(glib_minor_version != GLIB_MINOR_VERSION) ||
|
|
|
|
(glib_micro_version != GLIB_MICRO_VERSION))
|
|
|
|
{
|
2020-06-12 15:02:30 +02:00
|
|
|
printf("*** GLib header files (version %d.%d.%d) do not match\n",
|
1998-06-11 01:21:14 +02:00
|
|
|
GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
|
|
|
|
printf("*** library (version %d.%d.%d)\n",
|
|
|
|
glib_major_version, glib_minor_version, glib_micro_version);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((glib_major_version > major) ||
|
|
|
|
((glib_major_version == major) && (glib_minor_version > minor)) ||
|
|
|
|
((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro)))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-06-12 15:02:30 +02:00
|
|
|
printf("\n*** An old version of GLib (%u.%u.%u) was found.\n",
|
1998-06-11 01:21:14 +02:00
|
|
|
glib_major_version, glib_minor_version, glib_micro_version);
|
2020-06-12 15:02:30 +02:00
|
|
|
printf("*** You need a version of GLib newer than %u.%u.%u. The latest version of\n",
|
1998-06-11 01:21:14 +02:00
|
|
|
major, minor, micro);
|
2020-06-12 15:02:30 +02:00
|
|
|
printf("*** GLib is always available from ftp://ftp.gtk.org.\n");
|
1998-06-11 01:21:14 +02:00
|
|
|
printf("***\n");
|
|
|
|
printf("*** If you have already installed a sufficiently new version, this error\n");
|
2001-04-03 20:27:59 +02:00
|
|
|
printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
|
1998-06-11 01:21:14 +02:00
|
|
|
printf("*** being found. The easiest way to fix this is to remove the old version\n");
|
2020-06-12 15:02:30 +02:00
|
|
|
printf("*** of GLib, but you can also set the PKG_CONFIG environment to point to the\n");
|
2001-04-03 20:27:59 +02:00
|
|
|
printf("*** correct copy of pkg-config. (In this case, you will have to\n");
|
2020-06-12 15:02:30 +02:00
|
|
|
printf("*** modify your LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf\n");
|
1998-06-11 01:21:14 +02:00
|
|
|
printf("*** so that the correct libraries are found at run-time))\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2021-01-25 22:07:55 +01:00
|
|
|
]])],[],[no_glib=yes],[echo $ac_n "cross compiling; assumed OK... $ac_c"])
|
1998-06-11 01:21:14 +02:00
|
|
|
CFLAGS="$ac_save_CFLAGS"
|
|
|
|
LIBS="$ac_save_LIBS"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$no_glib" = x ; then
|
2000-05-11 02:23:45 +02:00
|
|
|
AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version))
|
1998-06-11 01:21:14 +02:00
|
|
|
ifelse([$2], , :, [$2])
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT(no)
|
2001-04-03 20:27:59 +02:00
|
|
|
if test "$PKG_CONFIG" = "no" ; then
|
|
|
|
echo "*** A new enough version of pkg-config was not found."
|
2001-07-26 22:11:42 +02:00
|
|
|
echo "*** See http://www.freedesktop.org/software/pkgconfig/"
|
1998-06-11 01:21:14 +02:00
|
|
|
else
|
|
|
|
if test -f conf.glibtest ; then
|
|
|
|
:
|
|
|
|
else
|
2020-06-12 15:02:30 +02:00
|
|
|
echo "*** Could not run GLib test program, checking why..."
|
2002-05-06 18:07:03 +02:00
|
|
|
ac_save_CFLAGS="$CFLAGS"
|
|
|
|
ac_save_LIBS="$LIBS"
|
1998-06-11 01:21:14 +02:00
|
|
|
CFLAGS="$CFLAGS $GLIB_CFLAGS"
|
|
|
|
LIBS="$LIBS $GLIB_LIBS"
|
2021-01-25 22:07:55 +01:00
|
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
1998-06-12 10:27:53 +02:00
|
|
|
#include <glib.h>
|
1998-06-11 01:21:14 +02:00
|
|
|
#include <stdio.h>
|
2021-01-25 22:07:55 +01:00
|
|
|
]], [[ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ]])],
|
1998-06-11 01:21:14 +02:00
|
|
|
[ echo "*** The test program compiled, but did not run. This usually means"
|
2020-06-12 15:02:30 +02:00
|
|
|
echo "*** that the run-time linker is not finding GLib or finding the wrong"
|
|
|
|
echo "*** version of GLib. If it is not finding GLib, you'll need to set your"
|
1998-06-11 01:21:14 +02:00
|
|
|
echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
|
|
|
|
echo "*** to the installed location Also, make sure you have run ldconfig if that"
|
|
|
|
echo "*** is required on your system"
|
|
|
|
echo "***"
|
|
|
|
echo "*** If you have an old version installed, it is best to remove it, although"
|
2001-04-17 02:55:34 +02:00
|
|
|
echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
|
1998-06-11 01:21:14 +02:00
|
|
|
[ echo "*** The test program failed to compile or link. See the file config.log for the"
|
2020-06-12 15:02:30 +02:00
|
|
|
echo "*** exact error that occurred. This usually means GLib is incorrectly installed."])
|
1998-06-11 01:21:14 +02:00
|
|
|
CFLAGS="$ac_save_CFLAGS"
|
|
|
|
LIBS="$ac_save_LIBS"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
GLIB_CFLAGS=""
|
|
|
|
GLIB_LIBS=""
|
2001-06-07 18:39:54 +02:00
|
|
|
GLIB_GENMARSHAL=""
|
|
|
|
GOBJECT_QUERY=""
|
|
|
|
GLIB_MKENUMS=""
|
2012-01-12 21:09:15 +01:00
|
|
|
GLIB_COMPILE_RESOURCES=""
|
1998-06-11 01:21:14 +02:00
|
|
|
ifelse([$3], , :, [$3])
|
|
|
|
fi
|
|
|
|
rm -f conf.glibtest
|
|
|
|
])
|