Pass pkg-config options before the other args so it works even if

2001-04-11  Alexander Larsson  <alexl@redhat.com>

	* glib-2.0.m4: Pass pkg-config options
	before the other args so it works even if
	POSIXLY_CORRECT is set.
This commit is contained in:
Alexander Larsson 2001-04-11 14:58:29 +00:00 committed by Alexander Larsson
parent 58bfca360d
commit 88c035caa5
10 changed files with 58 additions and 10 deletions

View File

@ -1,3 +1,9 @@
2001-04-11 Alexander Larsson <alexl@redhat.com>
* glib-2.0.m4: Pass pkg-config options
before the other args so it works even if
POSIXLY_CORRECT is set.
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org> Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
* configure.in: increment version to 1.3.4 (binary 0, interface 0). * configure.in: increment version to 1.3.4 (binary 0, interface 0).

View File

@ -1,3 +1,9 @@
2001-04-11 Alexander Larsson <alexl@redhat.com>
* glib-2.0.m4: Pass pkg-config options
before the other args so it works even if
POSIXLY_CORRECT is set.
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org> Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
* configure.in: increment version to 1.3.4 (binary 0, interface 0). * configure.in: increment version to 1.3.4 (binary 0, interface 0).

View File

@ -1,3 +1,9 @@
2001-04-11 Alexander Larsson <alexl@redhat.com>
* glib-2.0.m4: Pass pkg-config options
before the other args so it works even if
POSIXLY_CORRECT is set.
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org> Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
* configure.in: increment version to 1.3.4 (binary 0, interface 0). * configure.in: increment version to 1.3.4 (binary 0, interface 0).

View File

@ -1,3 +1,9 @@
2001-04-11 Alexander Larsson <alexl@redhat.com>
* glib-2.0.m4: Pass pkg-config options
before the other args so it works even if
POSIXLY_CORRECT is set.
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org> Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
* configure.in: increment version to 1.3.4 (binary 0, interface 0). * configure.in: increment version to 1.3.4 (binary 0, interface 0).

View File

@ -1,3 +1,9 @@
2001-04-11 Alexander Larsson <alexl@redhat.com>
* glib-2.0.m4: Pass pkg-config options
before the other args so it works even if
POSIXLY_CORRECT is set.
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org> Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
* configure.in: increment version to 1.3.4 (binary 0, interface 0). * configure.in: increment version to 1.3.4 (binary 0, interface 0).

View File

@ -1,3 +1,9 @@
2001-04-11 Alexander Larsson <alexl@redhat.com>
* glib-2.0.m4: Pass pkg-config options
before the other args so it works even if
POSIXLY_CORRECT is set.
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org> Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
* configure.in: increment version to 1.3.4 (binary 0, interface 0). * configure.in: increment version to 1.3.4 (binary 0, interface 0).

View File

@ -1,3 +1,9 @@
2001-04-11 Alexander Larsson <alexl@redhat.com>
* glib-2.0.m4: Pass pkg-config options
before the other args so it works even if
POSIXLY_CORRECT is set.
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org> Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
* configure.in: increment version to 1.3.4 (binary 0, interface 0). * configure.in: increment version to 1.3.4 (binary 0, interface 0).

View File

@ -1,3 +1,9 @@
2001-04-11 Alexander Larsson <alexl@redhat.com>
* glib-2.0.m4: Pass pkg-config options
before the other args so it works even if
POSIXLY_CORRECT is set.
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org> Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
* configure.in: increment version to 1.3.4 (binary 0, interface 0). * configure.in: increment version to 1.3.4 (binary 0, interface 0).

View File

@ -46,13 +46,13 @@ AC_ARG_ENABLE(glibtest, [ --disable-glibtest Do not try to compile and ru
fi fi
if test x"$no_glib" = x ; then if test x"$no_glib" = x ; then
GLIB_CFLAGS=`$PKG_CONFIG $pkg_config_args --cflags` GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args`
GLIB_LIBS=`$PKG_CONFIG $pkg_config_args --libs` GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args`
glib_config_major_version=`$PKG_CONFIG glib-2.0 --modversion | \ glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
glib_config_minor_version=`$PKG_CONFIG glib-2.0 --modversion | \ glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
glib_config_micro_version=`$PKG_CONFIG glib-2.0 --modversion | \ glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
if test "x$enable_glibtest" = "xyes" ; then if test "x$enable_glibtest" = "xyes" ; then
ac_save_CFLAGS="$CFLAGS" ac_save_CFLAGS="$CFLAGS"

View File

@ -46,13 +46,13 @@ AC_ARG_ENABLE(glibtest, [ --disable-glibtest Do not try to compile and ru
fi fi
if test x"$no_glib" = x ; then if test x"$no_glib" = x ; then
GLIB_CFLAGS=`$PKG_CONFIG $pkg_config_args --cflags` GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args`
GLIB_LIBS=`$PKG_CONFIG $pkg_config_args --libs` GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args`
glib_config_major_version=`$PKG_CONFIG glib-2.0 --modversion | \ glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
glib_config_minor_version=`$PKG_CONFIG glib-2.0 --modversion | \ glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
glib_config_micro_version=`$PKG_CONFIG glib-2.0 --modversion | \ glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
if test "x$enable_glibtest" = "xyes" ; then if test "x$enable_glibtest" = "xyes" ; then
ac_save_CFLAGS="$CFLAGS" ac_save_CFLAGS="$CFLAGS"