Your message with subj: (no subject) Thank you for your bug report. It only occurs with POSIXLY_CORRECT=3D1 environment variable exported, by= the=20 way. Anyway, I applied your patch, so the bug should be fixed in the latest development (CVS) version of KDE. The bug report will be closed. has caused the attached bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I'm talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Stephan Kulow (administrator, KDE bugs database) Received: (at submit) by bugs.kde.org; 24 Feb 2002 00:44:16 +0000 Received: (qmail 8716 invoked from network); 24 Feb 2002 00:44:16 -0000 Received: from spitfire.velocet.net (216.138.223.227) by max.tat.physik.uni-tuebingen.de with SMTP; 24 Feb 2002 00:44:16 -0000 Received: from stark.2y.net (H162.C233.tor.velocet.net [216.138.233.162]) by spitfire.velocet.net (Postfix) with ESMTP id 36BEEFB456E for ; Sun, 24 Feb 2002 00:44:14 +0000 (GMT) Received: from localhost ([127.0.0.1] helo=stark.2y.net ident=foobar) by stark.2y.net with smtp (Exim 3.34 #1 (Debian)) id 16emlx-0005NN-00 for ; Sat, 23 Feb 2002 19:44:13 -0500 Sender: stark@stark.2y.net To: submit@bugs.kde.org From: Gregory Stark Date: 23 Feb 2002 19:44:10 -0500 Message-ID: <87wux3wvxh.fsf@stark.2y.net> Lines: 21 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: max.tat.physik.uni-tuebingen.de 0/1000/N Package: arts Without this patch configure doesn't seem to detect GLib under any circumstances. --- configure.in.in.~1.65.~ Mon Feb 18 08:16:20 2002 +++ configure.in.in Sat Feb 23 19:42:25 2002 @@ -537,7 +537,7 @@ AC_MSG_CHECKING(for GLib-2.0 (at least $GLIB_VERSION)) if test "x$PKG_CONFIG" != "xno"; then -if $PKG_CONFIG $GLIB_PACKAGES --atleast-version $GLIB_VERSION >/dev/null 2>&1 ; then +if $PKG_CONFIG --atleast-version $GLIB_VERSION $GLIB_PACKAGES >/dev/null 2>&1 ; then GLIB_CFLAGS="`$PKG_CONFIG --cflags $GLIB_PACKAGES`" GLIB_LIBS="`$PKG_CONFIG --libs $GLIB_PACKAGES`" GLIB_DEPLIBS="$GLIB_LIBS" -- greg