Merge lp:~indicator-applet-developers/libindicator/ubuntu into lp:~ubuntu-desktop/libindicator/ubuntu

Proposed by Ted Gould
Status: Merged
Merged at revision: 272
Proposed branch: lp:~indicator-applet-developers/libindicator/ubuntu
Merge into: lp:~ubuntu-desktop/libindicator/ubuntu
Diff against target: 2067 lines (+416/-359)
12 files modified
Makefile.in (+2/-0)
aclocal.m4 (+31/-31)
config.guess (+59/-90)
config.sub (+34/-13)
configure (+242/-211)
configure.ac (+2/-2)
debian/changelog (+16/-1)
debian/source/format (+1/-0)
libindicator/Makefile.in (+2/-0)
libindicator/indicator-image-helper.c (+23/-11)
tests/Makefile.in (+2/-0)
tools/Makefile.in (+2/-0)
To merge this branch: bzr merge lp:~indicator-applet-developers/libindicator/ubuntu
Reviewer Review Type Date Requested Status
Ken VanDine Pending
Review via email: mp+32506@code.launchpad.net

Description of the change

0.3.11

To post a comment you must log in.
Revision history for this message
Karl Lattimer (karl-qdh) wrote :

This doesn't look right.
My branch has "Diff: 72 lines (+22/-12) 1 file modified",
this has "2067 lines (+416/-359) 12 files modified".

Looks like an older branch I'd deleted because I'd messed up pushing requesting a merge in the wrong place?

Revision history for this message
Ken VanDine (ken-vandine) wrote :

It's a diff of a source package branch, which includes an import of the release tarball (configure, Makefile.in, etc). So if you made a change in this type of a packaging branch, it would pick up changes to all the autotools stuff that got touched.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'Makefile.in'
--- Makefile.in 2010-07-15 14:58:36 +0000
+++ Makefile.in 2010-08-12 19:45:57 +0000
@@ -170,6 +170,8 @@
170PACKAGE_VERSION = @PACKAGE_VERSION@170PACKAGE_VERSION = @PACKAGE_VERSION@
171PATH_SEPARATOR = @PATH_SEPARATOR@171PATH_SEPARATOR = @PATH_SEPARATOR@
172PKG_CONFIG = @PKG_CONFIG@172PKG_CONFIG = @PKG_CONFIG@
173PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
174PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
173PREFIX = @PREFIX@175PREFIX = @PREFIX@
174RANLIB = @RANLIB@176RANLIB = @RANLIB@
175SED = @SED@177SED = @SED@
176178
=== modified file 'aclocal.m4'
--- aclocal.m4 2010-07-15 14:58:36 +0000
+++ aclocal.m4 2010-08-12 19:45:57 +0000
@@ -13,8 +13,8 @@
1313
14m4_ifndef([AC_AUTOCONF_VERSION],14m4_ifndef([AC_AUTOCONF_VERSION],
15 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl15 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,16m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],,
17[m4_warning([this file was generated for autoconf 2.65.17[m4_warning([this file was generated for autoconf 2.67.
18You have another version of autoconf. It may work, but is not guaranteed to.18You have another version of autoconf. It may work, but is not guaranteed to.
19If you have problems, you may need to regenerate the build system entirely.19If you have problems, you may need to regenerate the build system entirely.
20To do so, use the procedure documented by the package, typically `autoreconf'.])])20To do so, use the procedure documented by the package, typically `autoreconf'.])])
@@ -7986,6 +7986,7 @@
7986m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])7986m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
79877987
7988# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-7988# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
7989# serial 1 (pkg-config-0.24)
7989# 7990#
7990# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.7991# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
7991#7992#
@@ -8013,7 +8014,10 @@
8013AC_DEFUN([PKG_PROG_PKG_CONFIG],8014AC_DEFUN([PKG_PROG_PKG_CONFIG],
8014[m4_pattern_forbid([^_?PKG_[A-Z_]+$])8015[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
8015m4_pattern_allow([^PKG_CONFIG(_PATH)?$])8016m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
8016AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl8017AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
8018AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
8019AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
8020
8017if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then8021if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
8018 AC_PATH_TOOL([PKG_CONFIG], [pkg-config])8022 AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
8019fi8023fi
@@ -8026,7 +8030,6 @@
8026 AC_MSG_RESULT([no])8030 AC_MSG_RESULT([no])
8027 PKG_CONFIG=""8031 PKG_CONFIG=""
8028 fi8032 fi
8029
8030fi[]dnl8033fi[]dnl
8031])# PKG_PROG_PKG_CONFIG8034])# PKG_PROG_PKG_CONFIG
80328035
@@ -8035,34 +8038,31 @@
8035# Check to see whether a particular set of modules exists. Similar8038# Check to see whether a particular set of modules exists. Similar
8036# to PKG_CHECK_MODULES(), but does not set variables or print errors.8039# to PKG_CHECK_MODULES(), but does not set variables or print errors.
8037#8040#
8038#8041# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
8039# Similar to PKG_CHECK_MODULES, make sure that the first instance of8042# only at the first occurence in configure.ac, so if the first place
8040# this or PKG_CHECK_MODULES is called, or make sure to call8043# it's called might be skipped (such as if it is within an "if", you
8041# PKG_CHECK_EXISTS manually8044# have to call PKG_CHECK_EXISTS manually
8042# --------------------------------------------------------------8045# --------------------------------------------------------------
8043AC_DEFUN([PKG_CHECK_EXISTS],8046AC_DEFUN([PKG_CHECK_EXISTS],
8044[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl8047[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
8045if test -n "$PKG_CONFIG" && \8048if test -n "$PKG_CONFIG" && \
8046 AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then8049 AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
8047 m4_ifval([$2], [$2], [:])8050 m4_default([$2], [:])
8048m4_ifvaln([$3], [else8051m4_ifvaln([$3], [else
8049 $3])dnl8052 $3])dnl
8050fi])8053fi])
80518054
8052
8053# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])8055# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
8054# ---------------------------------------------8056# ---------------------------------------------
8055m4_define([_PKG_CONFIG],8057m4_define([_PKG_CONFIG],
8056[if test -n "$PKG_CONFIG"; then8058[if test -n "$$1"; then
8057 if test -n "$$1"; then8059 pkg_cv_[]$1="$$1"
8058 pkg_cv_[]$1="$$1"8060 elif test -n "$PKG_CONFIG"; then
8059 else8061 PKG_CHECK_EXISTS([$3],
8060 PKG_CHECK_EXISTS([$3],8062 [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
8061 [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],8063 [pkg_failed=yes])
8062 [pkg_failed=yes])8064 else
8063 fi8065 pkg_failed=untried
8064else
8065 pkg_failed=untried
8066fi[]dnl8066fi[]dnl
8067])# _PKG_CONFIG8067])# _PKG_CONFIG
80688068
@@ -8104,16 +8104,17 @@
8104See the pkg-config man page for more details.])8104See the pkg-config man page for more details.])
81058105
8106if test $pkg_failed = yes; then8106if test $pkg_failed = yes; then
8107 AC_MSG_RESULT([no])
8107 _PKG_SHORT_ERRORS_SUPPORTED8108 _PKG_SHORT_ERRORS_SUPPORTED
8108 if test $_pkg_short_errors_supported = yes; then8109 if test $_pkg_short_errors_supported = yes; then
8109 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`8110 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
8110 else 8111 else
8111 $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`8112 $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
8112 fi8113 fi
8113 # Put the nasty error message in config.log where it belongs8114 # Put the nasty error message in config.log where it belongs
8114 echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD8115 echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
81158116
8116 ifelse([$4], , [AC_MSG_ERROR(dnl8117 m4_default([$4], [AC_MSG_ERROR(
8117[Package requirements ($2) were not met:8118[Package requirements ($2) were not met:
81188119
8119$$1_PKG_ERRORS8120$$1_PKG_ERRORS
@@ -8121,25 +8122,24 @@
8121Consider adjusting the PKG_CONFIG_PATH environment variable if you8122Consider adjusting the PKG_CONFIG_PATH environment variable if you
8122installed software in a non-standard prefix.8123installed software in a non-standard prefix.
81238124
8124_PKG_TEXT8125_PKG_TEXT])dnl
8125])],8126 ])
8126 [AC_MSG_RESULT([no])
8127 $4])
8128elif test $pkg_failed = untried; then8127elif test $pkg_failed = untried; then
8129 ifelse([$4], , [AC_MSG_FAILURE(dnl8128 AC_MSG_RESULT([no])
8129 m4_default([$4], [AC_MSG_FAILURE(
8130[The pkg-config script could not be found or is too old. Make sure it8130[The pkg-config script could not be found or is too old. Make sure it
8131is in your PATH or set the PKG_CONFIG environment variable to the full8131is in your PATH or set the PKG_CONFIG environment variable to the full
8132path to pkg-config.8132path to pkg-config.
81338133
8134_PKG_TEXT8134_PKG_TEXT
81358135
8136To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],8136To get pkg-config, see <http://pkg-config.freedesktop.org/>.])dnl
8137 [$4])8137 ])
8138else8138else
8139 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS8139 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
8140 $1[]_LIBS=$pkg_cv_[]$1[]_LIBS8140 $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
8141 AC_MSG_RESULT([yes])8141 AC_MSG_RESULT([yes])
8142 ifelse([$3], , :, [$3])8142 $3
8143fi[]dnl8143fi[]dnl
8144])# PKG_CHECK_MODULES8144])# PKG_CHECK_MODULES
81458145
81468146
=== modified file 'config.guess'
--- config.guess 2010-04-09 16:57:53 +0000
+++ config.guess 2010-08-12 19:45:57 +0000
@@ -1,10 +1,10 @@
1#! /bin/sh1#! /bin/sh
2# Attempt to guess a canonical system name.2# Attempt to guess a canonical system name.
3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 20094# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5# Free Software Foundation, Inc.5# Free Software Foundation, Inc.
66
7timestamp='2009-06-10'7timestamp='2009-12-30'
88
9# This file is free software; you can redistribute it and/or modify it9# This file is free software; you can redistribute it and/or modify it
10# under the terms of the GNU General Public License as published by10# under the terms of the GNU General Public License as published by
@@ -27,16 +27,16 @@
27# the same distribution terms that you use for the rest of that program.27# the same distribution terms that you use for the rest of that program.
2828
2929
30# Originally written by Per Bothner <per@bothner.com>.30# Originally written by Per Bothner. Please send patches (context
31# Please send patches to <config-patches@gnu.org>. Submit a context31# diff format) to <config-patches@gnu.org> and include a ChangeLog
32# diff and a properly formatted ChangeLog entry.32# entry.
33#33#
34# This script attempts to guess a canonical system name similar to34# This script attempts to guess a canonical system name similar to
35# config.sub. If it succeeds, it prints the system name on stdout, and35# config.sub. If it succeeds, it prints the system name on stdout, and
36# exits with 0. Otherwise, it exits with 1.36# exits with 0. Otherwise, it exits with 1.
37#37#
38# The plan is that this can be called by configure scripts if you38# You can get the latest version of this script from:
39# don't specify an explicit build system type.39# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
4040
41me=`echo "$0" | sed -e 's,.*/,,'`41me=`echo "$0" | sed -e 's,.*/,,'`
4242
@@ -56,8 +56,9 @@
56GNU config.guess ($timestamp)56GNU config.guess ($timestamp)
5757
58Originally written by Per Bothner.58Originally written by Per Bothner.
59Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,59Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
602002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.602001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
61Software Foundation, Inc.
6162
62This is free software; see the source for copying conditions. There is NO63This is free software; see the source for copying conditions. There is NO
63warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."64warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -333,6 +334,9 @@
333 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)334 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
334 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`335 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
335 exit ;;336 exit ;;
337 i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
338 echo i386-pc-auroraux${UNAME_RELEASE}
339 exit ;;
336 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)340 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
337 eval $set_cc_for_build341 eval $set_cc_for_build
338 SUN_ARCH="i386"342 SUN_ARCH="i386"
@@ -807,12 +811,12 @@
807 i*:PW*:*)811 i*:PW*:*)
808 echo ${UNAME_MACHINE}-pc-pw32812 echo ${UNAME_MACHINE}-pc-pw32
809 exit ;;813 exit ;;
810 *:Interix*:[3456]*)814 *:Interix*:*)
811 case ${UNAME_MACHINE} in815 case ${UNAME_MACHINE} in
812 x86)816 x86)
813 echo i586-pc-interix${UNAME_RELEASE}817 echo i586-pc-interix${UNAME_RELEASE}
814 exit ;;818 exit ;;
815 EM64T | authenticamd | genuineintel)819 authenticamd | genuineintel | EM64T)
816 echo x86_64-unknown-interix${UNAME_RELEASE}820 echo x86_64-unknown-interix${UNAME_RELEASE}
817 exit ;;821 exit ;;
818 IA64)822 IA64)
@@ -854,6 +858,20 @@
854 i*86:Minix:*:*)858 i*86:Minix:*:*)
855 echo ${UNAME_MACHINE}-pc-minix859 echo ${UNAME_MACHINE}-pc-minix
856 exit ;;860 exit ;;
861 alpha:Linux:*:*)
862 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
863 EV5) UNAME_MACHINE=alphaev5 ;;
864 EV56) UNAME_MACHINE=alphaev56 ;;
865 PCA56) UNAME_MACHINE=alphapca56 ;;
866 PCA57) UNAME_MACHINE=alphapca56 ;;
867 EV6) UNAME_MACHINE=alphaev6 ;;
868 EV67) UNAME_MACHINE=alphaev67 ;;
869 EV68*) UNAME_MACHINE=alphaev68 ;;
870 esac
871 objdump --private-headers /bin/sh | grep -q ld.so.1
872 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
873 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
874 exit ;;
857 arm*:Linux:*:*)875 arm*:Linux:*:*)
858 eval $set_cc_for_build876 eval $set_cc_for_build
859 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \877 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
@@ -876,6 +894,17 @@
876 frv:Linux:*:*)894 frv:Linux:*:*)
877 echo frv-unknown-linux-gnu895 echo frv-unknown-linux-gnu
878 exit ;;896 exit ;;
897 i*86:Linux:*:*)
898 LIBC=gnu
899 eval $set_cc_for_build
900 sed 's/^ //' << EOF >$dummy.c
901 #ifdef __dietlibc__
902 LIBC=dietlibc
903 #endif
904EOF
905 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
906 echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
907 exit ;;
879 ia64:Linux:*:*)908 ia64:Linux:*:*)
880 echo ${UNAME_MACHINE}-unknown-linux-gnu909 echo ${UNAME_MACHINE}-unknown-linux-gnu
881 exit ;;910 exit ;;
@@ -901,39 +930,18 @@
901 #endif930 #endif
902 #endif931 #endif
903EOF932EOF
904 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '933 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
905 /^CPU/{
906 s: ::g
907 p
908 }'`"
909 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }934 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
910 ;;935 ;;
911 or32:Linux:*:*)936 or32:Linux:*:*)
912 echo or32-unknown-linux-gnu937 echo or32-unknown-linux-gnu
913 exit ;;938 exit ;;
914 ppc:Linux:*:*)
915 echo powerpc-unknown-linux-gnu
916 exit ;;
917 ppc64:Linux:*:*)
918 echo powerpc64-unknown-linux-gnu
919 exit ;;
920 alpha:Linux:*:*)
921 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
922 EV5) UNAME_MACHINE=alphaev5 ;;
923 EV56) UNAME_MACHINE=alphaev56 ;;
924 PCA56) UNAME_MACHINE=alphapca56 ;;
925 PCA57) UNAME_MACHINE=alphapca56 ;;
926 EV6) UNAME_MACHINE=alphaev6 ;;
927 EV67) UNAME_MACHINE=alphaev67 ;;
928 EV68*) UNAME_MACHINE=alphaev68 ;;
929 esac
930 objdump --private-headers /bin/sh | grep -q ld.so.1
931 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
932 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
933 exit ;;
934 padre:Linux:*:*)939 padre:Linux:*:*)
935 echo sparc-unknown-linux-gnu940 echo sparc-unknown-linux-gnu
936 exit ;;941 exit ;;
942 parisc64:Linux:*:* | hppa64:Linux:*:*)
943 echo hppa64-unknown-linux-gnu
944 exit ;;
937 parisc:Linux:*:* | hppa:Linux:*:*)945 parisc:Linux:*:* | hppa:Linux:*:*)
938 # Look for CPU level946 # Look for CPU level
939 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in947 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
@@ -942,8 +950,11 @@
942 *) echo hppa-unknown-linux-gnu ;;950 *) echo hppa-unknown-linux-gnu ;;
943 esac951 esac
944 exit ;;952 exit ;;
945 parisc64:Linux:*:* | hppa64:Linux:*:*)953 ppc64:Linux:*:*)
946 echo hppa64-unknown-linux-gnu954 echo powerpc64-unknown-linux-gnu
955 exit ;;
956 ppc:Linux:*:*)
957 echo powerpc-unknown-linux-gnu
947 exit ;;958 exit ;;
948 s390:Linux:*:* | s390x:Linux:*:*)959 s390:Linux:*:* | s390x:Linux:*:*)
949 echo ${UNAME_MACHINE}-ibm-linux960 echo ${UNAME_MACHINE}-ibm-linux
@@ -966,58 +977,6 @@
966 xtensa*:Linux:*:*)977 xtensa*:Linux:*:*)
967 echo ${UNAME_MACHINE}-unknown-linux-gnu978 echo ${UNAME_MACHINE}-unknown-linux-gnu
968 exit ;;979 exit ;;
969 i*86:Linux:*:*)
970 # The BFD linker knows what the default object file format is, so
971 # first see if it will tell us. cd to the root directory to prevent
972 # problems with other programs or directories called `ld' in the path.
973 # Set LC_ALL=C to ensure ld outputs messages in English.
974 ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \
975 | sed -ne '/supported targets:/!d
976 s/[ ][ ]*/ /g
977 s/.*supported targets: *//
978 s/ .*//
979 p'`
980 case "$ld_supported_targets" in
981 elf32-i386)
982 TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
983 ;;
984 esac
985 # Determine whether the default compiler is a.out or elf
986 eval $set_cc_for_build
987 sed 's/^ //' << EOF >$dummy.c
988 #include <features.h>
989 #ifdef __ELF__
990 # ifdef __GLIBC__
991 # if __GLIBC__ >= 2
992 LIBC=gnu
993 # else
994 LIBC=gnulibc1
995 # endif
996 # else
997 LIBC=gnulibc1
998 # endif
999 #else
1000 #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
1001 LIBC=gnu
1002 #else
1003 LIBC=gnuaout
1004 #endif
1005 #endif
1006 #ifdef __dietlibc__
1007 LIBC=dietlibc
1008 #endif
1009EOF
1010 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
1011 /^LIBC/{
1012 s: ::g
1013 p
1014 }'`"
1015 test x"${LIBC}" != x && {
1016 echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
1017 exit
1018 }
1019 test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; }
1020 ;;
1021 i*86:DYNIX/ptx:4*:*)980 i*86:DYNIX/ptx:4*:*)
1022 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.981 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
1023 # earlier versions are messed up and put the nodename in both982 # earlier versions are messed up and put the nodename in both
@@ -1247,6 +1206,16 @@
1247 *:Darwin:*:*)1206 *:Darwin:*:*)
1248 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown1207 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
1249 case $UNAME_PROCESSOR in1208 case $UNAME_PROCESSOR in
1209 i386)
1210 eval $set_cc_for_build
1211 if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
1212 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
1213 (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
1214 grep IS_64BIT_ARCH >/dev/null
1215 then
1216 UNAME_PROCESSOR="x86_64"
1217 fi
1218 fi ;;
1250 unknown) UNAME_PROCESSOR=powerpc ;;1219 unknown) UNAME_PROCESSOR=powerpc ;;
1251 esac1220 esac
1252 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}1221 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
12531222
=== modified file 'config.sub'
--- config.sub 2010-04-09 16:57:53 +0000
+++ config.sub 2010-08-12 19:45:57 +0000
@@ -1,10 +1,10 @@
1#! /bin/sh1#! /bin/sh
2# Configuration validation subroutine script.2# Configuration validation subroutine script.
3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 20094# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5# Free Software Foundation, Inc.5# Free Software Foundation, Inc.
66
7timestamp='2009-06-11'7timestamp='2010-01-22'
88
9# This file is (in principle) common to ALL GNU software.9# This file is (in principle) common to ALL GNU software.
10# The presence of a machine in this file suggests that SOME GNU software10# The presence of a machine in this file suggests that SOME GNU software
@@ -32,13 +32,16 @@
3232
3333
34# Please send patches to <config-patches@gnu.org>. Submit a context34# Please send patches to <config-patches@gnu.org>. Submit a context
35# diff and a properly formatted ChangeLog entry.35# diff and a properly formatted GNU ChangeLog entry.
36#36#
37# Configuration subroutine to validate and canonicalize a configuration type.37# Configuration subroutine to validate and canonicalize a configuration type.
38# Supply the specified configuration type as an argument.38# Supply the specified configuration type as an argument.
39# If it is invalid, we print an error message on stderr and exit with code 1.39# If it is invalid, we print an error message on stderr and exit with code 1.
40# Otherwise, we print the canonical config type on stdout and succeed.40# Otherwise, we print the canonical config type on stdout and succeed.
4141
42# You can get the latest version of this script from:
43# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
44
42# This file is supposed to be the same for all GNU packages45# This file is supposed to be the same for all GNU packages
43# and recognize all the CPU types, system types and aliases46# and recognize all the CPU types, system types and aliases
44# that are meaningful with *any* GNU software.47# that are meaningful with *any* GNU software.
@@ -72,8 +75,9 @@
72version="\75version="\
73GNU config.sub ($timestamp)76GNU config.sub ($timestamp)
7477
75Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,78Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
762002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.792001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
80Software Foundation, Inc.
7781
78This is free software; see the source for copying conditions. There is NO82This is free software; see the source for copying conditions. There is NO
79warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."83warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -149,7 +153,7 @@
149 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\153 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
150 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \154 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
151 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \155 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
152 -apple | -axis | -knuth | -cray)156 -apple | -axis | -knuth | -cray | -microblaze)
153 os=157 os=
154 basic_machine=$1158 basic_machine=$1
155 ;;159 ;;
@@ -284,6 +288,7 @@
284 | pdp10 | pdp11 | pj | pjl \288 | pdp10 | pdp11 | pj | pjl \
285 | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \289 | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
286 | pyramid \290 | pyramid \
291 | rx \
287 | score \292 | score \
288 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \293 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
289 | sh64 | sh64le \294 | sh64 | sh64le \
@@ -291,13 +296,14 @@
291 | sparcv8 | sparcv9 | sparcv9b | sparcv9v \296 | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
292 | spu | strongarm \297 | spu | strongarm \
293 | tahoe | thumb | tic4x | tic80 | tron \298 | tahoe | thumb | tic4x | tic80 | tron \
299 | ubicom32 \
294 | v850 | v850e \300 | v850 | v850e \
295 | we32k \301 | we32k \
296 | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \302 | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
297 | z8k | z80)303 | z8k | z80)
298 basic_machine=$basic_machine-unknown304 basic_machine=$basic_machine-unknown
299 ;;305 ;;
300 m6811 | m68hc11 | m6812 | m68hc12)306 m6811 | m68hc11 | m6812 | m68hc12 | picochip)
301 # Motorola 68HC11/12.307 # Motorola 68HC11/12.
302 basic_machine=$basic_machine-unknown308 basic_machine=$basic_machine-unknown
303 os=-none309 os=-none
@@ -340,7 +346,7 @@
340 | lm32-* \346 | lm32-* \
341 | m32c-* | m32r-* | m32rle-* \347 | m32c-* | m32r-* | m32rle-* \
342 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \348 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
343 | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \349 | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \
344 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \350 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
345 | mips16-* \351 | mips16-* \
346 | mips64-* | mips64el-* \352 | mips64-* | mips64el-* \
@@ -368,15 +374,17 @@
368 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \374 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
369 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \375 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
370 | pyramid-* \376 | pyramid-* \
371 | romp-* | rs6000-* \377 | romp-* | rs6000-* | rx-* \
372 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \378 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
373 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \379 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
374 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \380 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
375 | sparclite-* \381 | sparclite-* \
376 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \382 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
377 | tahoe-* | thumb-* \383 | tahoe-* | thumb-* \
378 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \384 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
385 | tile-* | tilegx-* \
379 | tron-* \386 | tron-* \
387 | ubicom32-* \
380 | v850-* | v850e-* | vax-* \388 | v850-* | v850e-* | vax-* \
381 | we32k-* \389 | we32k-* \
382 | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \390 | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
@@ -726,6 +734,9 @@
726 basic_machine=ns32k-utek734 basic_machine=ns32k-utek
727 os=-sysv735 os=-sysv
728 ;;736 ;;
737 microblaze)
738 basic_machine=microblaze-xilinx
739 ;;
729 mingw32)740 mingw32)
730 basic_machine=i386-pc741 basic_machine=i386-pc
731 os=-mingw32742 os=-mingw32
@@ -1076,6 +1087,11 @@
1076 basic_machine=tic6x-unknown1087 basic_machine=tic6x-unknown
1077 os=-coff1088 os=-coff
1078 ;;1089 ;;
1090 # This must be matched before tile*.
1091 tilegx*)
1092 basic_machine=tilegx-unknown
1093 os=-linux-gnu
1094 ;;
1079 tile*)1095 tile*)
1080 basic_machine=tile-unknown1096 basic_machine=tile-unknown
1081 os=-linux-gnu1097 os=-linux-gnu
@@ -1247,6 +1263,9 @@
1247 # First match some system type aliases1263 # First match some system type aliases
1248 # that might get confused with valid system types.1264 # that might get confused with valid system types.
1249 # -solaris* is a basic system type, with this one exception.1265 # -solaris* is a basic system type, with this one exception.
1266 -auroraux)
1267 os=-auroraux
1268 ;;
1250 -solaris1 | -solaris1.*)1269 -solaris1 | -solaris1.*)
1251 os=`echo $os | sed -e 's|solaris1|sunos4|'`1270 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1252 ;;1271 ;;
@@ -1268,8 +1287,8 @@
1268 # -sysv* is not here because it comes later, after sysvr4.1287 # -sysv* is not here because it comes later, after sysvr4.
1269 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \1288 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1270 | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\1289 | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
1271 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \1290 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
1272 | -kopensolaris* \1291 | -sym* | -kopensolaris* \
1273 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \1292 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
1274 | -aos* | -aros* \1293 | -aos* | -aros* \
1275 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \1294 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
@@ -1290,7 +1309,7 @@
1290 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \1309 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1291 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \1310 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1292 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \1311 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1293 | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)1312 | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
1294 # Remember, each alternative MUST END IN *, to match a version number.1313 # Remember, each alternative MUST END IN *, to match a version number.
1295 ;;1314 ;;
1296 -qnx*)1315 -qnx*)
@@ -1423,6 +1442,8 @@
1423 -dicos*)1442 -dicos*)
1424 os=-dicos1443 os=-dicos
1425 ;;1444 ;;
1445 -nacl*)
1446 ;;
1426 -none)1447 -none)
1427 ;;1448 ;;
1428 *)1449 *)
14291450
=== modified file 'configure'
--- configure 2010-07-15 14:58:36 +0000
+++ configure 2010-08-12 19:45:57 +0000
@@ -1,13 +1,13 @@
1#! /bin/sh1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.65 for libindicator 0.3.10.3# Generated by GNU Autoconf 2.67 for libindicator 0.3.11.
4#4#
5# Report bugs to <ted@canonical.com>.5# Report bugs to <ted@canonical.com>.
6#6#
7#7#
8# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,8# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
9# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,9# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
10# Inc.10# Foundation, Inc.
11#11#
12#12#
13# This configure script is free software; the Free Software Foundation13# This configure script is free software; the Free Software Foundation
@@ -319,7 +319,7 @@
319 test -d "$as_dir" && break319 test -d "$as_dir" && break
320 done320 done
321 test -z "$as_dirs" || eval "mkdir $as_dirs"321 test -z "$as_dirs" || eval "mkdir $as_dirs"
322 } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"322 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
323323
324324
325} # as_fn_mkdir_p325} # as_fn_mkdir_p
@@ -359,19 +359,19 @@
359fi # as_fn_arith359fi # as_fn_arith
360360
361361
362# as_fn_error ERROR [LINENO LOG_FD]362# as_fn_error STATUS ERROR [LINENO LOG_FD]
363# ---------------------------------363# ----------------------------------------
364# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are364# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
365# provided, also output the error to LOG_FD, referencing LINENO. Then exit the365# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
366# script with status $?, using 1 if that was 0.366# script with STATUS, using 1 if that was 0.
367as_fn_error ()367as_fn_error ()
368{368{
369 as_status=$?; test $as_status -eq 0 && as_status=1369 as_status=$1; test $as_status -eq 0 && as_status=1
370 if test "$3"; then370 if test "$4"; then
371 as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack371 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
372 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3372 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
373 fi373 fi
374 $as_echo "$as_me: error: $1" >&2374 $as_echo "$as_me: error: $2" >&2
375 as_fn_exit $as_status375 as_fn_exit $as_status
376} # as_fn_error376} # as_fn_error
377377
@@ -682,7 +682,7 @@
682exec 6>&1682exec 6>&1
683683
684# Name of the host.684# Name of the host.
685# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,685# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
686# so uname gets run too.686# so uname gets run too.
687ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`687ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
688688
@@ -701,8 +701,8 @@
701# Identity of this package.701# Identity of this package.
702PACKAGE_NAME='libindicator'702PACKAGE_NAME='libindicator'
703PACKAGE_TARNAME='libindicator'703PACKAGE_TARNAME='libindicator'
704PACKAGE_VERSION='0.3.10'704PACKAGE_VERSION='0.3.11'
705PACKAGE_STRING='libindicator 0.3.10'705PACKAGE_STRING='libindicator 0.3.11'
706PACKAGE_BUGREPORT='ted@canonical.com'706PACKAGE_BUGREPORT='ted@canonical.com'
707PACKAGE_URL=''707PACKAGE_URL=''
708708
@@ -752,6 +752,8 @@
752EXPANDED_SYSCONFDIR752EXPANDED_SYSCONFDIR
753LIBINDICATOR_LIBS753LIBINDICATOR_LIBS
754LIBINDICATOR_CFLAGS754LIBINDICATOR_CFLAGS
755PKG_CONFIG_LIBDIR
756PKG_CONFIG_PATH
755PKG_CONFIG757PKG_CONFIG
756GLIB_GENMARSHAL758GLIB_GENMARSHAL
757GLIB_MKENUMS759GLIB_MKENUMS
@@ -888,6 +890,8 @@
888CPPFLAGS890CPPFLAGS
889CPP891CPP
890PKG_CONFIG892PKG_CONFIG
893PKG_CONFIG_PATH
894PKG_CONFIG_LIBDIR
891LIBINDICATOR_CFLAGS895LIBINDICATOR_CFLAGS
892LIBINDICATOR_LIBS'896LIBINDICATOR_LIBS'
893897
@@ -952,8 +956,9 @@
952 fi956 fi
953957
954 case $ac_option in958 case $ac_option in
955 *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;959 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
956 *) ac_optarg=yes ;;960 *=) ac_optarg= ;;
961 *) ac_optarg=yes ;;
957 esac962 esac
958963
959 # Accept the important Cygnus configure options, so we can diagnose typos.964 # Accept the important Cygnus configure options, so we can diagnose typos.
@@ -998,7 +1003,7 @@
998 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`1003 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
999 # Reject names that are not valid shell variable names.1004 # Reject names that are not valid shell variable names.
1000 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&1005 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1001 as_fn_error "invalid feature name: $ac_useropt"1006 as_fn_error $? "invalid feature name: $ac_useropt"
1002 ac_useropt_orig=$ac_useropt1007 ac_useropt_orig=$ac_useropt
1003 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`1008 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1004 case $ac_user_opts in1009 case $ac_user_opts in
@@ -1024,7 +1029,7 @@
1024 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`1029 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
1025 # Reject names that are not valid shell variable names.1030 # Reject names that are not valid shell variable names.
1026 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&1031 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1027 as_fn_error "invalid feature name: $ac_useropt"1032 as_fn_error $? "invalid feature name: $ac_useropt"
1028 ac_useropt_orig=$ac_useropt1033 ac_useropt_orig=$ac_useropt
1029 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`1034 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1030 case $ac_user_opts in1035 case $ac_user_opts in
@@ -1228,7 +1233,7 @@
1228 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`1233 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1229 # Reject names that are not valid shell variable names.1234 # Reject names that are not valid shell variable names.
1230 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&1235 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1231 as_fn_error "invalid package name: $ac_useropt"1236 as_fn_error $? "invalid package name: $ac_useropt"
1232 ac_useropt_orig=$ac_useropt1237 ac_useropt_orig=$ac_useropt
1233 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`1238 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1234 case $ac_user_opts in1239 case $ac_user_opts in
@@ -1244,7 +1249,7 @@
1244 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`1249 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1245 # Reject names that are not valid shell variable names.1250 # Reject names that are not valid shell variable names.
1246 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&1251 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1247 as_fn_error "invalid package name: $ac_useropt"1252 as_fn_error $? "invalid package name: $ac_useropt"
1248 ac_useropt_orig=$ac_useropt1253 ac_useropt_orig=$ac_useropt
1249 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`1254 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1250 case $ac_user_opts in1255 case $ac_user_opts in
@@ -1274,8 +1279,8 @@
1274 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)1279 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1275 x_libraries=$ac_optarg ;;1280 x_libraries=$ac_optarg ;;
12761281
1277 -*) as_fn_error "unrecognized option: \`$ac_option'1282 -*) as_fn_error $? "unrecognized option: \`$ac_option'
1278Try \`$0 --help' for more information."1283Try \`$0 --help' for more information"
1279 ;;1284 ;;
12801285
1281 *=*)1286 *=*)
@@ -1283,7 +1288,7 @@
1283 # Reject names that are not valid shell variable names.1288 # Reject names that are not valid shell variable names.
1284 case $ac_envvar in #(1289 case $ac_envvar in #(
1285 '' | [0-9]* | *[!_$as_cr_alnum]* )1290 '' | [0-9]* | *[!_$as_cr_alnum]* )
1286 as_fn_error "invalid variable name: \`$ac_envvar'" ;;1291 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
1287 esac1292 esac
1288 eval $ac_envvar=\$ac_optarg1293 eval $ac_envvar=\$ac_optarg
1289 export $ac_envvar ;;1294 export $ac_envvar ;;
@@ -1301,13 +1306,13 @@
13011306
1302if test -n "$ac_prev"; then1307if test -n "$ac_prev"; then
1303 ac_option=--`echo $ac_prev | sed 's/_/-/g'`1308 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1304 as_fn_error "missing argument to $ac_option"1309 as_fn_error $? "missing argument to $ac_option"
1305fi1310fi
13061311
1307if test -n "$ac_unrecognized_opts"; then1312if test -n "$ac_unrecognized_opts"; then
1308 case $enable_option_checking in1313 case $enable_option_checking in
1309 no) ;;1314 no) ;;
1310 fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;1315 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1311 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;1316 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1312 esac1317 esac
1313fi1318fi
@@ -1330,7 +1335,7 @@
1330 [\\/$]* | ?:[\\/]* ) continue;;1335 [\\/$]* | ?:[\\/]* ) continue;;
1331 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;1336 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1332 esac1337 esac
1333 as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"1338 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1334done1339done
13351340
1336# There might be people who depend on the old broken behavior: `$host'1341# There might be people who depend on the old broken behavior: `$host'
@@ -1344,8 +1349,8 @@
1344if test "x$host_alias" != x; then1349if test "x$host_alias" != x; then
1345 if test "x$build_alias" = x; then1350 if test "x$build_alias" = x; then
1346 cross_compiling=maybe1351 cross_compiling=maybe
1347 $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.1352 $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
1348 If a cross compiler is detected then cross compile mode will be used." >&21353 If a cross compiler is detected then cross compile mode will be used" >&2
1349 elif test "x$build_alias" != "x$host_alias"; then1354 elif test "x$build_alias" != "x$host_alias"; then
1350 cross_compiling=yes1355 cross_compiling=yes
1351 fi1356 fi
@@ -1360,9 +1365,9 @@
1360ac_pwd=`pwd` && test -n "$ac_pwd" &&1365ac_pwd=`pwd` && test -n "$ac_pwd" &&
1361ac_ls_di=`ls -di .` &&1366ac_ls_di=`ls -di .` &&
1362ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||1367ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1363 as_fn_error "working directory cannot be determined"1368 as_fn_error $? "working directory cannot be determined"
1364test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||1369test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1365 as_fn_error "pwd does not report name of working directory"1370 as_fn_error $? "pwd does not report name of working directory"
13661371
13671372
1368# Find the source files, if location was not specified.1373# Find the source files, if location was not specified.
@@ -1401,11 +1406,11 @@
1401fi1406fi
1402if test ! -r "$srcdir/$ac_unique_file"; then1407if test ! -r "$srcdir/$ac_unique_file"; then
1403 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."1408 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1404 as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"1409 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
1405fi1410fi
1406ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"1411ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1407ac_abs_confdir=`(1412ac_abs_confdir=`(
1408 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"1413 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
1409 pwd)`1414 pwd)`
1410# When building in place, set srcdir=.1415# When building in place, set srcdir=.
1411if test "$ac_abs_confdir" = "$ac_pwd"; then1416if test "$ac_abs_confdir" = "$ac_pwd"; then
@@ -1431,7 +1436,7 @@
1431 # Omit some internal or obsolete options to make the list less imposing.1436 # Omit some internal or obsolete options to make the list less imposing.
1432 # This message is too long to be a string in the A/UX 3.1 sh.1437 # This message is too long to be a string in the A/UX 3.1 sh.
1433 cat <<_ACEOF1438 cat <<_ACEOF
1434\`configure' configures libindicator 0.3.10 to adapt to many kinds of systems.1439\`configure' configures libindicator 0.3.11 to adapt to many kinds of systems.
14351440
1436Usage: $0 [OPTION]... [VAR=VALUE]...1441Usage: $0 [OPTION]... [VAR=VALUE]...
14371442
@@ -1445,7 +1450,7 @@
1445 --help=short display options specific to this package1450 --help=short display options specific to this package
1446 --help=recursive display the short help of all the included packages1451 --help=recursive display the short help of all the included packages
1447 -V, --version display version information and exit1452 -V, --version display version information and exit
1448 -q, --quiet, --silent do not print \`checking...' messages1453 -q, --quiet, --silent do not print \`checking ...' messages
1449 --cache-file=FILE cache test results in FILE [disabled]1454 --cache-file=FILE cache test results in FILE [disabled]
1450 -C, --config-cache alias for \`--cache-file=config.cache'1455 -C, --config-cache alias for \`--cache-file=config.cache'
1451 -n, --no-create do not create output files1456 -n, --no-create do not create output files
@@ -1501,7 +1506,7 @@
15011506
1502if test -n "$ac_init_help"; then1507if test -n "$ac_init_help"; then
1503 case $ac_init_help in1508 case $ac_init_help in
1504 short | recursive ) echo "Configuration of libindicator 0.3.10:";;1509 short | recursive ) echo "Configuration of libindicator 0.3.11:";;
1505 esac1510 esac
1506 cat <<\_ACEOF1511 cat <<\_ACEOF
15071512
@@ -1538,6 +1543,10 @@
1538 you have headers in a nonstandard directory <include dir>1543 you have headers in a nonstandard directory <include dir>
1539 CPP C preprocessor1544 CPP C preprocessor
1540 PKG_CONFIG path to pkg-config utility1545 PKG_CONFIG path to pkg-config utility
1546 PKG_CONFIG_PATH
1547 directories to add to pkg-config's search path
1548 PKG_CONFIG_LIBDIR
1549 path overriding pkg-config's built-in search path
1541 LIBINDICATOR_CFLAGS1550 LIBINDICATOR_CFLAGS
1542 C compiler flags for LIBINDICATOR, overriding pkg-config1551 C compiler flags for LIBINDICATOR, overriding pkg-config
1543 LIBINDICATOR_LIBS1552 LIBINDICATOR_LIBS
@@ -1609,10 +1618,10 @@
1609test -n "$ac_init_help" && exit $ac_status1618test -n "$ac_init_help" && exit $ac_status
1610if $ac_init_version; then1619if $ac_init_version; then
1611 cat <<\_ACEOF1620 cat <<\_ACEOF
1612libindicator configure 0.3.101621libindicator configure 0.3.11
1613generated by GNU Autoconf 2.651622generated by GNU Autoconf 2.67
16141623
1615Copyright (C) 2009 Free Software Foundation, Inc.1624Copyright (C) 2010 Free Software Foundation, Inc.
1616This configure script is free software; the Free Software Foundation1625This configure script is free software; the Free Software Foundation
1617gives unlimited permission to copy, distribute and modify it.1626gives unlimited permission to copy, distribute and modify it.
1618_ACEOF1627_ACEOF
@@ -1728,7 +1737,7 @@
1728 mv -f conftest.er1 conftest.err1737 mv -f conftest.er1 conftest.err
1729 fi1738 fi
1730 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&51739 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1731 test $ac_status = 0; } >/dev/null && {1740 test $ac_status = 0; } > conftest.i && {
1732 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||1741 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
1733 test ! -s conftest.err1742 test ! -s conftest.err
1734 }; then :1743 }; then :
@@ -1795,7 +1804,7 @@
1795 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack1804 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1796 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&51805 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1797$as_echo_n "checking for $2... " >&6; }1806$as_echo_n "checking for $2... " >&6; }
1798if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :1807if eval "test \"\${$3+set}\"" = set; then :
1799 $as_echo_n "(cached) " >&61808 $as_echo_n "(cached) " >&6
1800else1809else
1801 cat confdefs.h - <<_ACEOF >conftest.$ac_ext1810 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1825,7 +1834,7 @@
1825 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack1834 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1826 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&51835 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1827$as_echo_n "checking for $2... " >&6; }1836$as_echo_n "checking for $2... " >&6; }
1828if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :1837if eval "test \"\${$3+set}\"" = set; then :
1829 $as_echo_n "(cached) " >&61838 $as_echo_n "(cached) " >&6
1830else1839else
1831 cat confdefs.h - <<_ACEOF >conftest.$ac_ext1840 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1887,8 +1896,8 @@
1887This file contains any messages produced by compilers while1896This file contains any messages produced by compilers while
1888running configure, to aid debugging if configure makes a mistake.1897running configure, to aid debugging if configure makes a mistake.
18891898
1890It was created by libindicator $as_me 0.3.10, which was1899It was created by libindicator $as_me 0.3.11, which was
1891generated by GNU Autoconf 2.65. Invocation command line was1900generated by GNU Autoconf 2.67. Invocation command line was
18921901
1893 $ $0 $@1902 $ $0 $@
18941903
@@ -1998,11 +2007,9 @@
1998 {2007 {
1999 echo2008 echo
20002009
2001 cat <<\_ASBOX2010 $as_echo "## ---------------- ##
2002## ---------------- ##
2003## Cache variables. ##2011## Cache variables. ##
2004## ---------------- ##2012## ---------------- ##"
2005_ASBOX
2006 echo2013 echo
2007 # The following way of writing the cache mishandles newlines in values,2014 # The following way of writing the cache mishandles newlines in values,
2008(2015(
@@ -2036,11 +2043,9 @@
2036)2043)
2037 echo2044 echo
20382045
2039 cat <<\_ASBOX2046 $as_echo "## ----------------- ##
2040## ----------------- ##
2041## Output variables. ##2047## Output variables. ##
2042## ----------------- ##2048## ----------------- ##"
2043_ASBOX
2044 echo2049 echo
2045 for ac_var in $ac_subst_vars2050 for ac_var in $ac_subst_vars
2046 do2051 do
@@ -2053,11 +2058,9 @@
2053 echo2058 echo
20542059
2055 if test -n "$ac_subst_files"; then2060 if test -n "$ac_subst_files"; then
2056 cat <<\_ASBOX2061 $as_echo "## ------------------- ##
2057## ------------------- ##
2058## File substitutions. ##2062## File substitutions. ##
2059## ------------------- ##2063## ------------------- ##"
2060_ASBOX
2061 echo2064 echo
2062 for ac_var in $ac_subst_files2065 for ac_var in $ac_subst_files
2063 do2066 do
@@ -2071,11 +2074,9 @@
2071 fi2074 fi
20722075
2073 if test -s confdefs.h; then2076 if test -s confdefs.h; then
2074 cat <<\_ASBOX2077 $as_echo "## ----------- ##
2075## ----------- ##
2076## confdefs.h. ##2078## confdefs.h. ##
2077## ----------- ##2079## ----------- ##"
2078_ASBOX
2079 echo2080 echo
2080 cat confdefs.h2081 cat confdefs.h
2081 echo2082 echo
@@ -2130,7 +2131,12 @@
2130ac_site_file1=NONE2131ac_site_file1=NONE
2131ac_site_file2=NONE2132ac_site_file2=NONE
2132if test -n "$CONFIG_SITE"; then2133if test -n "$CONFIG_SITE"; then
2133 ac_site_file1=$CONFIG_SITE2134 # We do not want a PATH search for config.site.
2135 case $CONFIG_SITE in #((
2136 -*) ac_site_file1=./$CONFIG_SITE;;
2137 */*) ac_site_file1=$CONFIG_SITE;;
2138 *) ac_site_file1=./$CONFIG_SITE;;
2139 esac
2134elif test "x$prefix" != xNONE; then2140elif test "x$prefix" != xNONE; then
2135 ac_site_file1=$prefix/share/config.site2141 ac_site_file1=$prefix/share/config.site
2136 ac_site_file2=$prefix/etc/config.site2142 ac_site_file2=$prefix/etc/config.site
@@ -2145,7 +2151,11 @@
2145 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&52151 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
2146$as_echo "$as_me: loading site script $ac_site_file" >&6;}2152$as_echo "$as_me: loading site script $ac_site_file" >&6;}
2147 sed 's/^/| /' "$ac_site_file" >&52153 sed 's/^/| /' "$ac_site_file" >&5
2148 . "$ac_site_file"2154 . "$ac_site_file" \
2155 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2156$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2157as_fn_error $? "failed to load site script $ac_site_file
2158See \`config.log' for more details" "$LINENO" 5 ; }
2149 fi2159 fi
2150done2160done
21512161
@@ -2221,7 +2231,7 @@
2221$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}2231$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2222 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&52232 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
2223$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}2233$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
2224 as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 52234 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
2225fi2235fi
2226## -------------------- ##2236## -------------------- ##
2227## Main body of script. ##2237## Main body of script. ##
@@ -2243,16 +2253,22 @@
22432253
2244ac_aux_dir=2254ac_aux_dir=
2245for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do2255for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
2246 for ac_t in install-sh install.sh shtool; do2256 if test -f "$ac_dir/install-sh"; then
2247 if test -f "$ac_dir/$ac_t"; then2257 ac_aux_dir=$ac_dir
2248 ac_aux_dir=$ac_dir2258 ac_install_sh="$ac_aux_dir/install-sh -c"
2249 ac_install_sh="$ac_aux_dir/$ac_t -c"2259 break
2250 break 22260 elif test -f "$ac_dir/install.sh"; then
2251 fi2261 ac_aux_dir=$ac_dir
2252 done2262 ac_install_sh="$ac_aux_dir/install.sh -c"
2263 break
2264 elif test -f "$ac_dir/shtool"; then
2265 ac_aux_dir=$ac_dir
2266 ac_install_sh="$ac_aux_dir/shtool install -c"
2267 break
2268 fi
2253done2269done
2254if test -z "$ac_aux_dir"; then2270if test -z "$ac_aux_dir"; then
2255 as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 52271 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
2256fi2272fi
22572273
2258# These three variables are undocumented and unsupported,2274# These three variables are undocumented and unsupported,
@@ -2368,11 +2384,11 @@
2368'2384'
2369case `pwd` in2385case `pwd` in
2370 *[\\\"\#\$\&\'\`$am_lf]*)2386 *[\\\"\#\$\&\'\`$am_lf]*)
2371 as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;2387 as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;;
2372esac2388esac
2373case $srcdir in2389case $srcdir in
2374 *[\\\"\#\$\&\'\`$am_lf\ \ ]*)2390 *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
2375 as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;2391 as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;;
2376esac2392esac
23772393
2378# Do `set' in a subshell so we don't clobber the current shell's2394# Do `set' in a subshell so we don't clobber the current shell's
@@ -2394,7 +2410,7 @@
2394 # if, for instance, CONFIG_SHELL is bash and it inherits a2410 # if, for instance, CONFIG_SHELL is bash and it inherits a
2395 # broken ls alias from the environment. This has actually2411 # broken ls alias from the environment. This has actually
2396 # happened. Such a system could not be considered "sane".2412 # happened. Such a system could not be considered "sane".
2397 as_fn_error "ls -t appears to fail. Make sure there is not a broken2413 as_fn_error $? "ls -t appears to fail. Make sure there is not a broken
2398alias in your environment" "$LINENO" 52414alias in your environment" "$LINENO" 5
2399 fi2415 fi
24002416
@@ -2404,7 +2420,7 @@
2404 # Ok.2420 # Ok.
2405 :2421 :
2406else2422else
2407 as_fn_error "newly created file is older than distributed files!2423 as_fn_error $? "newly created file is older than distributed files!
2408Check your system clock" "$LINENO" 52424Check your system clock" "$LINENO" 5
2409fi2425fi
2410{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&52426{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
@@ -2642,7 +2658,7 @@
2642$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }2658$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
2643set x ${MAKE-make}2659set x ${MAKE-make}
2644ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`2660ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2645if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :2661if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then :
2646 $as_echo_n "(cached) " >&62662 $as_echo_n "(cached) " >&6
2647else2663else
2648 cat >conftest.make <<\_ACEOF2664 cat >conftest.make <<\_ACEOF
@@ -2650,7 +2666,7 @@
2650all:2666all:
2651 @echo '@@@%%%=$(MAKE)=@@@%%%'2667 @echo '@@@%%%=$(MAKE)=@@@%%%'
2652_ACEOF2668_ACEOF
2653# GNU make sometimes prints "make[1]: Entering...", which would confuse us.2669# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
2654case `${MAKE-make} -f conftest.make 2>/dev/null` in2670case `${MAKE-make} -f conftest.make 2>/dev/null` in
2655 *@@@%%%=?*=@@@%%%*)2671 *@@@%%%=?*=@@@%%%*)
2656 eval ac_cv_prog_make_${ac_make}_set=yes;;2672 eval ac_cv_prog_make_${ac_make}_set=yes;;
@@ -2684,7 +2700,7 @@
2684 am__isrc=' -I$(srcdir)'2700 am__isrc=' -I$(srcdir)'
2685 # test to see if srcdir already configured2701 # test to see if srcdir already configured
2686 if test -f $srcdir/config.status; then2702 if test -f $srcdir/config.status; then
2687 as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 52703 as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
2688 fi2704 fi
2689fi2705fi
26902706
@@ -2700,7 +2716,7 @@
27002716
2701# Define the identity of the package.2717# Define the identity of the package.
2702 PACKAGE=libindicator2718 PACKAGE=libindicator
2703 VERSION=0.3.102719 VERSION=0.3.11
27042720
27052721
2706cat >>confdefs.h <<_ACEOF2722cat >>confdefs.h <<_ACEOF
@@ -3139,8 +3155,8 @@
31393155
3140test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&53156test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3141$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3157$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3142as_fn_error "no acceptable C compiler found in \$PATH3158as_fn_error $? "no acceptable C compiler found in \$PATH
3143See \`config.log' for more details." "$LINENO" 5; }3159See \`config.log' for more details" "$LINENO" 5 ; }
31443160
3145# Provide some information about the compiler.3161# Provide some information about the compiler.
3146$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&53162$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
@@ -3254,9 +3270,8 @@
32543270
3255{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&53271{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3256$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3272$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3257{ as_fn_set_status 773273as_fn_error 77 "C compiler cannot create executables
3258as_fn_error "C compiler cannot create executables3274See \`config.log' for more details" "$LINENO" 5 ; }
3259See \`config.log' for more details." "$LINENO" 5; }; }
3260else3275else
3261 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&53276 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3262$as_echo "yes" >&6; }3277$as_echo "yes" >&6; }
@@ -3298,8 +3313,8 @@
3298else3313else
3299 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&53314 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3300$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3315$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3301as_fn_error "cannot compute suffix of executables: cannot compile and link3316as_fn_error $? "cannot compute suffix of executables: cannot compile and link
3302See \`config.log' for more details." "$LINENO" 5; }3317See \`config.log' for more details" "$LINENO" 5 ; }
3303fi3318fi
3304rm -f conftest conftest$ac_cv_exeext3319rm -f conftest conftest$ac_cv_exeext
3305{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&53320{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
@@ -3356,9 +3371,9 @@
3356 else3371 else
3357 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&53372 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3358$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3373$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3359as_fn_error "cannot run C compiled programs.3374as_fn_error $? "cannot run C compiled programs.
3360If you meant to cross compile, use \`--host'.3375If you meant to cross compile, use \`--host'.
3361See \`config.log' for more details." "$LINENO" 5; }3376See \`config.log' for more details" "$LINENO" 5 ; }
3362 fi3377 fi
3363 fi3378 fi
3364fi3379fi
@@ -3409,8 +3424,8 @@
34093424
3410{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&53425{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3411$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3426$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3412as_fn_error "cannot compute suffix of object files: cannot compile3427as_fn_error $? "cannot compute suffix of object files: cannot compile
3413See \`config.log' for more details." "$LINENO" 5; }3428See \`config.log' for more details" "$LINENO" 5 ; }
3414fi3429fi
3415rm -f conftest.$ac_cv_objext conftest.$ac_ext3430rm -f conftest.$ac_cv_objext conftest.$ac_ext
3416fi3431fi
@@ -4114,8 +4129,8 @@
41144129
4115test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&54130test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4116$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}4131$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
4117as_fn_error "no acceptable C compiler found in \$PATH4132as_fn_error $? "no acceptable C compiler found in \$PATH
4118See \`config.log' for more details." "$LINENO" 5; }4133See \`config.log' for more details" "$LINENO" 5 ; }
41194134
4120# Provide some information about the compiler.4135# Provide some information about the compiler.
4121$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&54136$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
@@ -4490,7 +4505,7 @@
4490fi4505fi
4491set dummy $CC; ac_cc=`$as_echo "$2" |4506set dummy $CC; ac_cc=`$as_echo "$2" |
4492 sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`4507 sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
4493if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then :4508if eval "test \"\${ac_cv_prog_cc_${ac_cc}_c_o+set}\"" = set; then :
4494 $as_echo_n "(cached) " >&64509 $as_echo_n "(cached) " >&6
4495else4510else
4496 cat confdefs.h - <<_ACEOF >conftest.$ac_ext4511 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4649,7 +4664,7 @@
4649 # Broken: fails on valid input.4664 # Broken: fails on valid input.
4650continue4665continue
4651fi4666fi
4652rm -f conftest.err conftest.$ac_ext4667rm -f conftest.err conftest.i conftest.$ac_ext
46534668
4654 # OK, works on sane cases. Now check whether nonexistent headers4669 # OK, works on sane cases. Now check whether nonexistent headers
4655 # can be detected and how.4670 # can be detected and how.
@@ -4665,11 +4680,11 @@
4665ac_preproc_ok=:4680ac_preproc_ok=:
4666break4681break
4667fi4682fi
4668rm -f conftest.err conftest.$ac_ext4683rm -f conftest.err conftest.i conftest.$ac_ext
46694684
4670done4685done
4671# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.4686# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
4672rm -f conftest.err conftest.$ac_ext4687rm -f conftest.i conftest.err conftest.$ac_ext
4673if $ac_preproc_ok; then :4688if $ac_preproc_ok; then :
4674 break4689 break
4675fi4690fi
@@ -4708,7 +4723,7 @@
4708 # Broken: fails on valid input.4723 # Broken: fails on valid input.
4709continue4724continue
4710fi4725fi
4711rm -f conftest.err conftest.$ac_ext4726rm -f conftest.err conftest.i conftest.$ac_ext
47124727
4713 # OK, works on sane cases. Now check whether nonexistent headers4728 # OK, works on sane cases. Now check whether nonexistent headers
4714 # can be detected and how.4729 # can be detected and how.
@@ -4724,18 +4739,18 @@
4724ac_preproc_ok=:4739ac_preproc_ok=:
4725break4740break
4726fi4741fi
4727rm -f conftest.err conftest.$ac_ext4742rm -f conftest.err conftest.i conftest.$ac_ext
47284743
4729done4744done
4730# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.4745# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
4731rm -f conftest.err conftest.$ac_ext4746rm -f conftest.i conftest.err conftest.$ac_ext
4732if $ac_preproc_ok; then :4747if $ac_preproc_ok; then :
47334748
4734else4749else
4735 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&54750 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4736$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}4751$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
4737as_fn_error "C preprocessor \"$CPP\" fails sanity check4752as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
4738See \`config.log' for more details." "$LINENO" 5; }4753See \`config.log' for more details" "$LINENO" 5 ; }
4739fi4754fi
47404755
4741ac_ext=c4756ac_ext=c
@@ -4796,7 +4811,7 @@
4796 done4811 done
4797IFS=$as_save_IFS4812IFS=$as_save_IFS
4798 if test -z "$ac_cv_path_GREP"; then4813 if test -z "$ac_cv_path_GREP"; then
4799 as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 54814 as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
4800 fi4815 fi
4801else4816else
4802 ac_cv_path_GREP=$GREP4817 ac_cv_path_GREP=$GREP
@@ -4862,7 +4877,7 @@
4862 done4877 done
4863IFS=$as_save_IFS4878IFS=$as_save_IFS
4864 if test -z "$ac_cv_path_EGREP"; then4879 if test -z "$ac_cv_path_EGREP"; then
4865 as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 54880 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
4866 fi4881 fi
4867else4882else
4868 ac_cv_path_EGREP=$EGREP4883 ac_cv_path_EGREP=$EGREP
@@ -5014,7 +5029,7 @@
50145029
5015# Make sure we can run config.sub.5030# Make sure we can run config.sub.
5016$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||5031$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
5017 as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 55032 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
50185033
5019{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&55034{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
5020$as_echo_n "checking build system type... " >&6; }5035$as_echo_n "checking build system type... " >&6; }
@@ -5025,16 +5040,16 @@
5025test "x$ac_build_alias" = x &&5040test "x$ac_build_alias" = x &&
5026 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`5041 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
5027test "x$ac_build_alias" = x &&5042test "x$ac_build_alias" = x &&
5028 as_fn_error "cannot guess build type; you must specify one" "$LINENO" 55043 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
5029ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||5044ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
5030 as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 55045 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
50315046
5032fi5047fi
5033{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&55048{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
5034$as_echo "$ac_cv_build" >&6; }5049$as_echo "$ac_cv_build" >&6; }
5035case $ac_cv_build in5050case $ac_cv_build in
5036*-*-*) ;;5051*-*-*) ;;
5037*) as_fn_error "invalid value of canonical build" "$LINENO" 5;;5052*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;;
5038esac5053esac
5039build=$ac_cv_build5054build=$ac_cv_build
5040ac_save_IFS=$IFS; IFS='-'5055ac_save_IFS=$IFS; IFS='-'
@@ -5059,7 +5074,7 @@
5059 ac_cv_host=$ac_cv_build5074 ac_cv_host=$ac_cv_build
5060else5075else
5061 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||5076 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
5062 as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 55077 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
5063fi5078fi
50645079
5065fi5080fi
@@ -5067,7 +5082,7 @@
5067$as_echo "$ac_cv_host" >&6; }5082$as_echo "$ac_cv_host" >&6; }
5068case $ac_cv_host in5083case $ac_cv_host in
5069*-*-*) ;;5084*-*-*) ;;
5070*) as_fn_error "invalid value of canonical host" "$LINENO" 5;;5085*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;;
5071esac5086esac
5072host=$ac_cv_host5087host=$ac_cv_host
5073ac_save_IFS=$IFS; IFS='-'5088ac_save_IFS=$IFS; IFS='-'
@@ -5140,7 +5155,7 @@
5140 done5155 done
5141IFS=$as_save_IFS5156IFS=$as_save_IFS
5142 if test -z "$ac_cv_path_SED"; then5157 if test -z "$ac_cv_path_SED"; then
5143 as_fn_error "no acceptable sed could be found in \$PATH" "$LINENO" 55158 as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5
5144 fi5159 fi
5145else5160else
5146 ac_cv_path_SED=$SED5161 ac_cv_path_SED=$SED
@@ -5219,7 +5234,7 @@
5219 done5234 done
5220IFS=$as_save_IFS5235IFS=$as_save_IFS
5221 if test -z "$ac_cv_path_FGREP"; then5236 if test -z "$ac_cv_path_FGREP"; then
5222 as_fn_error "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 55237 as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
5223 fi5238 fi
5224else5239else
5225 ac_cv_path_FGREP=$FGREP5240 ac_cv_path_FGREP=$FGREP
@@ -5335,7 +5350,7 @@
5335 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&55350 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5336$as_echo "no" >&6; }5351$as_echo "no" >&6; }
5337fi5352fi
5338test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 55353test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
5339{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&55354{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
5340$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }5355$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
5341if test "${lt_cv_prog_gnu_ld+set}" = set; then :5356if test "${lt_cv_prog_gnu_ld+set}" = set; then :
@@ -5537,13 +5552,13 @@
5537else5552else
5538 lt_cv_nm_interface="BSD nm"5553 lt_cv_nm_interface="BSD nm"
5539 echo "int some_variable = 0;" > conftest.$ac_ext5554 echo "int some_variable = 0;" > conftest.$ac_ext
5540 (eval echo "\"\$as_me:5540: $ac_compile\"" >&5)5555 (eval echo "\"\$as_me:5555: $ac_compile\"" >&5)
5541 (eval "$ac_compile" 2>conftest.err)5556 (eval "$ac_compile" 2>conftest.err)
5542 cat conftest.err >&55557 cat conftest.err >&5
5543 (eval echo "\"\$as_me:5543: $NM \\\"conftest.$ac_objext\\\"\"" >&5)5558 (eval echo "\"\$as_me:5558: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
5544 (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)5559 (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
5545 cat conftest.err >&55560 cat conftest.err >&5
5546 (eval echo "\"\$as_me:5546: output\"" >&5)5561 (eval echo "\"\$as_me:5561: output\"" >&5)
5547 cat conftest.out >&55562 cat conftest.out >&5
5548 if $GREP 'External.*some_variable' conftest.out > /dev/null; then5563 if $GREP 'External.*some_variable' conftest.out > /dev/null; then
5549 lt_cv_nm_interface="MS dumpbin"5564 lt_cv_nm_interface="MS dumpbin"
@@ -6748,7 +6763,7 @@
6748 ;;6763 ;;
6749*-*-irix6*)6764*-*-irix6*)
6750 # Find out which ABI we are using.6765 # Find out which ABI we are using.
6751 echo '#line 6751 "configure"' > conftest.$ac_ext6766 echo '#line 6766 "configure"' > conftest.$ac_ext
6752 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&56767 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
6753 (eval $ac_compile) 2>&56768 (eval $ac_compile) 2>&5
6754 ac_status=$?6769 ac_status=$?
@@ -7502,8 +7517,7 @@
7502 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`7517 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
7503ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default7518ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
7504"7519"
7505eval as_val=\$$as_ac_Header7520if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
7506 if test "x$as_val" = x""yes; then :
7507 cat >>confdefs.h <<_ACEOF7521 cat >>confdefs.h <<_ACEOF
7508#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 17522#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
7509_ACEOF7523_ACEOF
@@ -8024,11 +8038,11 @@
8024 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \8038 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8025 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \8039 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8026 -e 's:$: $lt_compiler_flag:'`8040 -e 's:$: $lt_compiler_flag:'`
8027 (eval echo "\"\$as_me:8027: $lt_compile\"" >&5)8041 (eval echo "\"\$as_me:8041: $lt_compile\"" >&5)
8028 (eval "$lt_compile" 2>conftest.err)8042 (eval "$lt_compile" 2>conftest.err)
8029 ac_status=$?8043 ac_status=$?
8030 cat conftest.err >&58044 cat conftest.err >&5
8031 echo "$as_me:8031: \$? = $ac_status" >&58045 echo "$as_me:8045: \$? = $ac_status" >&5
8032 if (exit $ac_status) && test -s "$ac_outfile"; then8046 if (exit $ac_status) && test -s "$ac_outfile"; then
8033 # The compiler can only warn and ignore the option if not recognized8047 # The compiler can only warn and ignore the option if not recognized
8034 # So say no if there are warnings other than the usual output.8048 # So say no if there are warnings other than the usual output.
@@ -8363,11 +8377,11 @@
8363 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \8377 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8364 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \8378 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8365 -e 's:$: $lt_compiler_flag:'`8379 -e 's:$: $lt_compiler_flag:'`
8366 (eval echo "\"\$as_me:8366: $lt_compile\"" >&5)8380 (eval echo "\"\$as_me:8380: $lt_compile\"" >&5)
8367 (eval "$lt_compile" 2>conftest.err)8381 (eval "$lt_compile" 2>conftest.err)
8368 ac_status=$?8382 ac_status=$?
8369 cat conftest.err >&58383 cat conftest.err >&5
8370 echo "$as_me:8370: \$? = $ac_status" >&58384 echo "$as_me:8384: \$? = $ac_status" >&5
8371 if (exit $ac_status) && test -s "$ac_outfile"; then8385 if (exit $ac_status) && test -s "$ac_outfile"; then
8372 # The compiler can only warn and ignore the option if not recognized8386 # The compiler can only warn and ignore the option if not recognized
8373 # So say no if there are warnings other than the usual output.8387 # So say no if there are warnings other than the usual output.
@@ -8468,11 +8482,11 @@
8468 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \8482 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8469 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \8483 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8470 -e 's:$: $lt_compiler_flag:'`8484 -e 's:$: $lt_compiler_flag:'`
8471 (eval echo "\"\$as_me:8471: $lt_compile\"" >&5)8485 (eval echo "\"\$as_me:8485: $lt_compile\"" >&5)
8472 (eval "$lt_compile" 2>out/conftest.err)8486 (eval "$lt_compile" 2>out/conftest.err)
8473 ac_status=$?8487 ac_status=$?
8474 cat out/conftest.err >&58488 cat out/conftest.err >&5
8475 echo "$as_me:8475: \$? = $ac_status" >&58489 echo "$as_me:8489: \$? = $ac_status" >&5
8476 if (exit $ac_status) && test -s out/conftest2.$ac_objext8490 if (exit $ac_status) && test -s out/conftest2.$ac_objext
8477 then8491 then
8478 # The compiler can only warn and ignore the option if not recognized8492 # The compiler can only warn and ignore the option if not recognized
@@ -8523,11 +8537,11 @@
8523 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \8537 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8524 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \8538 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8525 -e 's:$: $lt_compiler_flag:'`8539 -e 's:$: $lt_compiler_flag:'`
8526 (eval echo "\"\$as_me:8526: $lt_compile\"" >&5)8540 (eval echo "\"\$as_me:8540: $lt_compile\"" >&5)
8527 (eval "$lt_compile" 2>out/conftest.err)8541 (eval "$lt_compile" 2>out/conftest.err)
8528 ac_status=$?8542 ac_status=$?
8529 cat out/conftest.err >&58543 cat out/conftest.err >&5
8530 echo "$as_me:8530: \$? = $ac_status" >&58544 echo "$as_me:8544: \$? = $ac_status" >&5
8531 if (exit $ac_status) && test -s out/conftest2.$ac_objext8545 if (exit $ac_status) && test -s out/conftest2.$ac_objext
8532 then8546 then
8533 # The compiler can only warn and ignore the option if not recognized8547 # The compiler can only warn and ignore the option if not recognized
@@ -10907,7 +10921,7 @@
10907 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=210921 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
10908 lt_status=$lt_dlunknown10922 lt_status=$lt_dlunknown
10909 cat > conftest.$ac_ext <<_LT_EOF10923 cat > conftest.$ac_ext <<_LT_EOF
10910#line 10910 "configure"10924#line 10924 "configure"
10911#include "confdefs.h"10925#include "confdefs.h"
1091210926
10913#if HAVE_DLFCN_H10927#if HAVE_DLFCN_H
@@ -11003,7 +11017,7 @@
11003 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=211017 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
11004 lt_status=$lt_dlunknown11018 lt_status=$lt_dlunknown
11005 cat > conftest.$ac_ext <<_LT_EOF11019 cat > conftest.$ac_ext <<_LT_EOF
11006#line 11006 "configure"11020#line 11020 "configure"
11007#include "confdefs.h"11021#include "confdefs.h"
1100811022
11009#if HAVE_DLFCN_H11023#if HAVE_DLFCN_H
@@ -11339,6 +11353,10 @@
1133911353
1134011354
1134111355
11356
11357
11358
11359
11342if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then11360if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
11343 if test -n "$ac_tool_prefix"; then11361 if test -n "$ac_tool_prefix"; then
11344 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.11362 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
@@ -11451,18 +11469,16 @@
11451$as_echo "no" >&6; }11469$as_echo "no" >&6; }
11452 PKG_CONFIG=""11470 PKG_CONFIG=""
11453 fi11471 fi
11454
11455fi11472fi
1145611473
11457pkg_failed=no11474pkg_failed=no
11458{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBINDICATOR" >&511475{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBINDICATOR" >&5
11459$as_echo_n "checking for LIBINDICATOR... " >&6; }11476$as_echo_n "checking for LIBINDICATOR... " >&6; }
1146011477
11461if test -n "$PKG_CONFIG"; then11478if test -n "$LIBINDICATOR_CFLAGS"; then
11462 if test -n "$LIBINDICATOR_CFLAGS"; then11479 pkg_cv_LIBINDICATOR_CFLAGS="$LIBINDICATOR_CFLAGS"
11463 pkg_cv_LIBINDICATOR_CFLAGS="$LIBINDICATOR_CFLAGS"11480 elif test -n "$PKG_CONFIG"; then
11464 else11481 if test -n "$PKG_CONFIG" && \
11465 if test -n "$PKG_CONFIG" && \
11466 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \$GTK_REQUIRED_VERSION11482 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \$GTK_REQUIRED_VERSION
11467 gio-unix-2.0 >= \$GIO_UNIX_REQUIRED_VERSION11483 gio-unix-2.0 >= \$GIO_UNIX_REQUIRED_VERSION
11468 dbus-glib-1 >= \$DBUS_REQUIRED_VERSION\""; } >&511484 dbus-glib-1 >= \$DBUS_REQUIRED_VERSION\""; } >&5
@@ -11478,15 +11494,13 @@
11478else11494else
11479 pkg_failed=yes11495 pkg_failed=yes
11480fi11496fi
11481 fi11497 else
11482else11498 pkg_failed=untried
11483 pkg_failed=untried
11484fi11499fi
11485if test -n "$PKG_CONFIG"; then11500if test -n "$LIBINDICATOR_LIBS"; then
11486 if test -n "$LIBINDICATOR_LIBS"; then11501 pkg_cv_LIBINDICATOR_LIBS="$LIBINDICATOR_LIBS"
11487 pkg_cv_LIBINDICATOR_LIBS="$LIBINDICATOR_LIBS"11502 elif test -n "$PKG_CONFIG"; then
11488 else11503 if test -n "$PKG_CONFIG" && \
11489 if test -n "$PKG_CONFIG" && \
11490 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \$GTK_REQUIRED_VERSION11504 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \$GTK_REQUIRED_VERSION
11491 gio-unix-2.0 >= \$GIO_UNIX_REQUIRED_VERSION11505 gio-unix-2.0 >= \$GIO_UNIX_REQUIRED_VERSION
11492 dbus-glib-1 >= \$DBUS_REQUIRED_VERSION\""; } >&511506 dbus-glib-1 >= \$DBUS_REQUIRED_VERSION\""; } >&5
@@ -11502,14 +11516,15 @@
11502else11516else
11503 pkg_failed=yes11517 pkg_failed=yes
11504fi11518fi
11505 fi11519 else
11506else11520 pkg_failed=untried
11507 pkg_failed=untried
11508fi11521fi
1150911522
1151011523
1151111524
11512if test $pkg_failed = yes; then11525if test $pkg_failed = yes; then
11526 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
11527$as_echo "no" >&6; }
1151311528
11514if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then11529if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
11515 _pkg_short_errors_supported=yes11530 _pkg_short_errors_supported=yes
@@ -11517,18 +11532,18 @@
11517 _pkg_short_errors_supported=no11532 _pkg_short_errors_supported=no
11518fi11533fi
11519 if test $_pkg_short_errors_supported = yes; then11534 if test $_pkg_short_errors_supported = yes; then
11520 LIBINDICATOR_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION11535 LIBINDICATOR_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION
11521 gio-unix-2.0 >= $GIO_UNIX_REQUIRED_VERSION11536 gio-unix-2.0 >= $GIO_UNIX_REQUIRED_VERSION
11522 dbus-glib-1 >= $DBUS_REQUIRED_VERSION"`11537 dbus-glib-1 >= $DBUS_REQUIRED_VERSION" 2>&1`
11523 else11538 else
11524 LIBINDICATOR_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION11539 LIBINDICATOR_PKG_ERRORS=`$PKG_CONFIG --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION
11525 gio-unix-2.0 >= $GIO_UNIX_REQUIRED_VERSION11540 gio-unix-2.0 >= $GIO_UNIX_REQUIRED_VERSION
11526 dbus-glib-1 >= $DBUS_REQUIRED_VERSION"`11541 dbus-glib-1 >= $DBUS_REQUIRED_VERSION" 2>&1`
11527 fi11542 fi
11528 # Put the nasty error message in config.log where it belongs11543 # Put the nasty error message in config.log where it belongs
11529 echo "$LIBINDICATOR_PKG_ERRORS" >&511544 echo "$LIBINDICATOR_PKG_ERRORS" >&5
1153011545
11531 as_fn_error "Package requirements (gtk+-2.0 >= $GTK_REQUIRED_VERSION11546 as_fn_error $? "Package requirements (gtk+-2.0 >= $GTK_REQUIRED_VERSION
11532 gio-unix-2.0 >= $GIO_UNIX_REQUIRED_VERSION11547 gio-unix-2.0 >= $GIO_UNIX_REQUIRED_VERSION
11533 dbus-glib-1 >= $DBUS_REQUIRED_VERSION) were not met:11548 dbus-glib-1 >= $DBUS_REQUIRED_VERSION) were not met:
1153411549
@@ -11539,12 +11554,13 @@
1153911554
11540Alternatively, you may set the environment variables LIBINDICATOR_CFLAGS11555Alternatively, you may set the environment variables LIBINDICATOR_CFLAGS
11541and LIBINDICATOR_LIBS to avoid the need to call pkg-config.11556and LIBINDICATOR_LIBS to avoid the need to call pkg-config.
11542See the pkg-config man page for more details.11557See the pkg-config man page for more details." "$LINENO" 5
11543" "$LINENO" 5
11544elif test $pkg_failed = untried; then11558elif test $pkg_failed = untried; then
11559 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
11560$as_echo "no" >&6; }
11545 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&511561 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
11546$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}11562$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
11547as_fn_error "The pkg-config script could not be found or is too old. Make sure it11563as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
11548is in your PATH or set the PKG_CONFIG environment variable to the full11564is in your PATH or set the PKG_CONFIG environment variable to the full
11549path to pkg-config.11565path to pkg-config.
1155011566
@@ -11553,13 +11569,13 @@
11553See the pkg-config man page for more details.11569See the pkg-config man page for more details.
1155411570
11555To get pkg-config, see <http://pkg-config.freedesktop.org/>.11571To get pkg-config, see <http://pkg-config.freedesktop.org/>.
11556See \`config.log' for more details." "$LINENO" 5; }11572See \`config.log' for more details" "$LINENO" 5 ; }
11557else11573else
11558 LIBINDICATOR_CFLAGS=$pkg_cv_LIBINDICATOR_CFLAGS11574 LIBINDICATOR_CFLAGS=$pkg_cv_LIBINDICATOR_CFLAGS
11559 LIBINDICATOR_LIBS=$pkg_cv_LIBINDICATOR_LIBS11575 LIBINDICATOR_LIBS=$pkg_cv_LIBINDICATOR_LIBS
11560 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&511576 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
11561$as_echo "yes" >&6; }11577$as_echo "yes" >&6; }
11562 :11578
11563fi11579fi
1156411580
1156511581
@@ -11724,6 +11740,7 @@
1172411740
11725ac_libobjs=11741ac_libobjs=
11726ac_ltlibobjs=11742ac_ltlibobjs=
11743U=
11727for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue11744for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
11728 # 1. Remove the extension, and $U if already installed.11745 # 1. Remove the extension, and $U if already installed.
11729 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'11746 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
@@ -11747,19 +11764,19 @@
11747fi11764fi
1174811765
11749if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then11766if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
11750 as_fn_error "conditional \"MAINTAINER_MODE\" was never defined.11767 as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.
11751Usually this means the macro was only invoked conditionally." "$LINENO" 511768Usually this means the macro was only invoked conditionally." "$LINENO" 5
11752fi11769fi
11753if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then11770if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
11754 as_fn_error "conditional \"AMDEP\" was never defined.11771 as_fn_error $? "conditional \"AMDEP\" was never defined.
11755Usually this means the macro was only invoked conditionally." "$LINENO" 511772Usually this means the macro was only invoked conditionally." "$LINENO" 5
11756fi11773fi
11757if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then11774if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
11758 as_fn_error "conditional \"am__fastdepCC\" was never defined.11775 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
11759Usually this means the macro was only invoked conditionally." "$LINENO" 511776Usually this means the macro was only invoked conditionally." "$LINENO" 5
11760fi11777fi
11761if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then11778if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
11762 as_fn_error "conditional \"am__fastdepCC\" was never defined.11779 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
11763Usually this means the macro was only invoked conditionally." "$LINENO" 511780Usually this means the macro was only invoked conditionally." "$LINENO" 5
11764fi11781fi
1176511782
@@ -11909,19 +11926,19 @@
11909(unset CDPATH) >/dev/null 2>&1 && unset CDPATH11926(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
1191011927
1191111928
11912# as_fn_error ERROR [LINENO LOG_FD]11929# as_fn_error STATUS ERROR [LINENO LOG_FD]
11913# ---------------------------------11930# ----------------------------------------
11914# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are11931# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
11915# provided, also output the error to LOG_FD, referencing LINENO. Then exit the11932# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
11916# script with status $?, using 1 if that was 0.11933# script with STATUS, using 1 if that was 0.
11917as_fn_error ()11934as_fn_error ()
11918{11935{
11919 as_status=$?; test $as_status -eq 0 && as_status=111936 as_status=$1; test $as_status -eq 0 && as_status=1
11920 if test "$3"; then11937 if test "$4"; then
11921 as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack11938 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
11922 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$311939 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
11923 fi11940 fi
11924 $as_echo "$as_me: error: $1" >&211941 $as_echo "$as_me: error: $2" >&2
11925 as_fn_exit $as_status11942 as_fn_exit $as_status
11926} # as_fn_error11943} # as_fn_error
1192711944
@@ -12117,7 +12134,7 @@
12117 test -d "$as_dir" && break12134 test -d "$as_dir" && break
12118 done12135 done
12119 test -z "$as_dirs" || eval "mkdir $as_dirs"12136 test -z "$as_dirs" || eval "mkdir $as_dirs"
12120 } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"12137 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
1212112138
1212212139
12123} # as_fn_mkdir_p12140} # as_fn_mkdir_p
@@ -12170,8 +12187,8 @@
12170# report actual input values of CONFIG_FILES etc. instead of their12187# report actual input values of CONFIG_FILES etc. instead of their
12171# values after options handling.12188# values after options handling.
12172ac_log="12189ac_log="
12173This file was extended by libindicator $as_me 0.3.10, which was12190This file was extended by libindicator $as_me 0.3.11, which was
12174generated by GNU Autoconf 2.65. Invocation command line was12191generated by GNU Autoconf 2.67. Invocation command line was
1217512192
12176 CONFIG_FILES = $CONFIG_FILES12193 CONFIG_FILES = $CONFIG_FILES
12177 CONFIG_HEADERS = $CONFIG_HEADERS12194 CONFIG_HEADERS = $CONFIG_HEADERS
@@ -12236,11 +12253,11 @@
12236cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=112253cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12237ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"12254ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
12238ac_cs_version="\\12255ac_cs_version="\\
12239libindicator config.status 0.3.1012256libindicator config.status 0.3.11
12240configured by $0, generated by GNU Autoconf 2.65,12257configured by $0, generated by GNU Autoconf 2.67,
12241 with options \\"\$ac_cs_config\\"12258 with options \\"\$ac_cs_config\\"
1224212259
12243Copyright (C) 2009 Free Software Foundation, Inc.12260Copyright (C) 2010 Free Software Foundation, Inc.
12244This config.status script is free software; the Free Software Foundation12261This config.status script is free software; the Free Software Foundation
12245gives unlimited permission to copy, distribute and modify it."12262gives unlimited permission to copy, distribute and modify it."
1224612263
@@ -12258,11 +12275,16 @@
12258while test $# != 012275while test $# != 0
12259do12276do
12260 case $1 in12277 case $1 in
12261 --*=*)12278 --*=?*)
12262 ac_option=`expr "X$1" : 'X\([^=]*\)='`12279 ac_option=`expr "X$1" : 'X\([^=]*\)='`
12263 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`12280 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
12264 ac_shift=:12281 ac_shift=:
12265 ;;12282 ;;
12283 --*=)
12284 ac_option=`expr "X$1" : 'X\([^=]*\)='`
12285 ac_optarg=
12286 ac_shift=:
12287 ;;
12266 *)12288 *)
12267 ac_option=$112289 ac_option=$1
12268 ac_optarg=$212290 ac_optarg=$2
@@ -12284,6 +12306,7 @@
12284 $ac_shift12306 $ac_shift
12285 case $ac_optarg in12307 case $ac_optarg in
12286 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;12308 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
12309 '') as_fn_error $? "missing file argument" ;;
12287 esac12310 esac
12288 as_fn_append CONFIG_FILES " '$ac_optarg'"12311 as_fn_append CONFIG_FILES " '$ac_optarg'"
12289 ac_need_defaults=false;;12312 ac_need_defaults=false;;
@@ -12296,7 +12319,7 @@
12296 ac_need_defaults=false;;12319 ac_need_defaults=false;;
12297 --he | --h)12320 --he | --h)
12298 # Conflict between --help and --header12321 # Conflict between --help and --header
12299 as_fn_error "ambiguous option: \`$1'12322 as_fn_error $? "ambiguous option: \`$1'
12300Try \`$0 --help' for more information.";;12323Try \`$0 --help' for more information.";;
12301 --help | --hel | -h )12324 --help | --hel | -h )
12302 $as_echo "$ac_cs_usage"; exit ;;12325 $as_echo "$ac_cs_usage"; exit ;;
@@ -12305,7 +12328,7 @@
12305 ac_cs_silent=: ;;12328 ac_cs_silent=: ;;
1230612329
12307 # This is an error.12330 # This is an error.
12308 -*) as_fn_error "unrecognized option: \`$1'12331 -*) as_fn_error $? "unrecognized option: \`$1'
12309Try \`$0 --help' for more information." ;;12332Try \`$0 --help' for more information." ;;
1231012333
12311 *) as_fn_append ac_config_targets " $1"12334 *) as_fn_append ac_config_targets " $1"
@@ -12623,7 +12646,7 @@
12623 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;12646 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
12624 "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;12647 "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;
1262512648
12626 *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;12649 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
12627 esac12650 esac
12628done12651done
1262912652
@@ -12661,7 +12684,7 @@
12661{12684{
12662 tmp=./conf$$-$RANDOM12685 tmp=./conf$$-$RANDOM
12663 (umask 077 && mkdir "$tmp")12686 (umask 077 && mkdir "$tmp")
12664} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 512687} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
1266512688
12666# Set up the scripts for CONFIG_FILES section.12689# Set up the scripts for CONFIG_FILES section.
12667# No need to generate them if there are no CONFIG_FILES.12690# No need to generate them if there are no CONFIG_FILES.
@@ -12678,7 +12701,7 @@
12678fi12701fi
12679ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`12702ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
12680if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then12703if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
12681 ac_cs_awk_cr='\r'12704 ac_cs_awk_cr='\\r'
12682else12705else
12683 ac_cs_awk_cr=$ac_cr12706 ac_cs_awk_cr=$ac_cr
12684fi12707fi
@@ -12692,18 +12715,18 @@
12692 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&12715 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
12693 echo "_ACEOF"12716 echo "_ACEOF"
12694} >conf$$subs.sh ||12717} >conf$$subs.sh ||
12695 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 512718 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
12696ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`12719ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
12697ac_delim='%!_!# '12720ac_delim='%!_!# '
12698for ac_last_try in false false false false false :; do12721for ac_last_try in false false false false false :; do
12699 . ./conf$$subs.sh ||12722 . ./conf$$subs.sh ||
12700 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 512723 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
1270112724
12702 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`12725 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
12703 if test $ac_delim_n = $ac_delim_num; then12726 if test $ac_delim_n = $ac_delim_num; then
12704 break12727 break
12705 elif $ac_last_try; then12728 elif $ac_last_try; then
12706 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 512729 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
12707 else12730 else
12708 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "12731 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
12709 fi12732 fi
@@ -12792,20 +12815,28 @@
12792else12815else
12793 cat12816 cat
12794fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \12817fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
12795 || as_fn_error "could not setup config files machinery" "$LINENO" 512818 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
12796_ACEOF12819_ACEOF
1279712820
12798# VPATH may cause trouble with some makes, so we remove $(srcdir),12821# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
12799# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and12822# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
12800# trailing colons and then remove the whole line if VPATH becomes empty12823# trailing colons and then remove the whole line if VPATH becomes empty
12801# (actually we leave an empty line to preserve line numbers).12824# (actually we leave an empty line to preserve line numbers).
12802if test "x$srcdir" = x.; then12825if test "x$srcdir" = x.; then
12803 ac_vpsub='/^[ ]*VPATH[ ]*=/{12826 ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
12804s/:*\$(srcdir):*/:/12827h
12805s/:*\${srcdir}:*/:/12828s///
12806s/:*@srcdir@:*/:/12829s/^/:/
12807s/^\([^=]*=[ ]*\):*/\1/12830s/[ ]*$/:/
12831s/:\$(srcdir):/:/g
12832s/:\${srcdir}:/:/g
12833s/:@srcdir@:/:/g
12834s/^:*//
12808s/:*$//12835s/:*$//
12836x
12837s/\(=[ ]*\).*/\1/
12838G
12839s/\n//
12809s/^[^=]*=[ ]*$//12840s/^[^=]*=[ ]*$//
12810}'12841}'
12811fi12842fi
@@ -12833,7 +12864,7 @@
12833 if test -z "$ac_t"; then12864 if test -z "$ac_t"; then
12834 break12865 break
12835 elif $ac_last_try; then12866 elif $ac_last_try; then
12836 as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 512867 as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
12837 else12868 else
12838 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "12869 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
12839 fi12870 fi
@@ -12918,7 +12949,7 @@
12918_ACAWK12949_ACAWK
12919_ACEOF12950_ACEOF
12920cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=112951cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12921 as_fn_error "could not setup config headers machinery" "$LINENO" 512952 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
12922fi # test -n "$CONFIG_HEADERS"12953fi # test -n "$CONFIG_HEADERS"
1292312954
1292412955
@@ -12931,7 +12962,7 @@
12931 esac12962 esac
12932 case $ac_mode$ac_tag in12963 case $ac_mode$ac_tag in
12933 :[FHL]*:*);;12964 :[FHL]*:*);;
12934 :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;12965 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;
12935 :[FH]-) ac_tag=-:-;;12966 :[FH]-) ac_tag=-:-;;
12936 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;12967 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
12937 esac12968 esac
@@ -12959,7 +12990,7 @@
12959 [\\/$]*) false;;12990 [\\/$]*) false;;
12960 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;12991 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
12961 esac ||12992 esac ||
12962 as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;12993 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;
12963 esac12994 esac
12964 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac12995 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
12965 as_fn_append ac_file_inputs " '$ac_f'"12996 as_fn_append ac_file_inputs " '$ac_f'"
@@ -12986,7 +13017,7 @@
1298613017
12987 case $ac_tag in13018 case $ac_tag in
12988 *:-:* | *:-) cat >"$tmp/stdin" \13019 *:-:* | *:-) cat >"$tmp/stdin" \
12989 || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;13020 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
12990 esac13021 esac
12991 ;;13022 ;;
12992 esac13023 esac
@@ -13123,22 +13154,22 @@
13123$ac_datarootdir_hack13154$ac_datarootdir_hack
13124"13155"
13125eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \13156eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
13126 || as_fn_error "could not create $ac_file" "$LINENO" 513157 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1312713158
13128test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&13159test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
13129 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&13160 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
13130 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&13161 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
13131 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'13162 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
13132which seems to be undefined. Please make sure it is defined." >&513163which seems to be undefined. Please make sure it is defined" >&5
13133$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'13164$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
13134which seems to be undefined. Please make sure it is defined." >&2;}13165which seems to be undefined. Please make sure it is defined" >&2;}
1313513166
13136 rm -f "$tmp/stdin"13167 rm -f "$tmp/stdin"
13137 case $ac_file in13168 case $ac_file in
13138 -) cat "$tmp/out" && rm -f "$tmp/out";;13169 -) cat "$tmp/out" && rm -f "$tmp/out";;
13139 *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;13170 *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
13140 esac \13171 esac \
13141 || as_fn_error "could not create $ac_file" "$LINENO" 513172 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
13142 ;;13173 ;;
13143 :H)13174 :H)
13144 #13175 #
@@ -13149,19 +13180,19 @@
13149 $as_echo "/* $configure_input */" \13180 $as_echo "/* $configure_input */" \
13150 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"13181 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
13151 } >"$tmp/config.h" \13182 } >"$tmp/config.h" \
13152 || as_fn_error "could not create $ac_file" "$LINENO" 513183 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
13153 if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then13184 if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
13154 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&513185 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
13155$as_echo "$as_me: $ac_file is unchanged" >&6;}13186$as_echo "$as_me: $ac_file is unchanged" >&6;}
13156 else13187 else
13157 rm -f "$ac_file"13188 rm -f "$ac_file"
13158 mv "$tmp/config.h" "$ac_file" \13189 mv "$tmp/config.h" "$ac_file" \
13159 || as_fn_error "could not create $ac_file" "$LINENO" 513190 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
13160 fi13191 fi
13161 else13192 else
13162 $as_echo "/* $configure_input */" \13193 $as_echo "/* $configure_input */" \
13163 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \13194 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
13164 || as_fn_error "could not create -" "$LINENO" 513195 || as_fn_error $? "could not create -" "$LINENO" 5
13165 fi13196 fi
13166# Compute "$ac_file"'s index in $config_headers.13197# Compute "$ac_file"'s index in $config_headers.
13167_am_arg="$ac_file"13198_am_arg="$ac_file"
@@ -13946,7 +13977,7 @@
13946ac_clean_files=$ac_clean_files_save13977ac_clean_files=$ac_clean_files_save
1394713978
13948test $ac_write_fail = 0 ||13979test $ac_write_fail = 0 ||
13949 as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 513980 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
1395013981
1395113982
13952# configure is writing to config.log, and then calls config.status.13983# configure is writing to config.log, and then calls config.status.
@@ -13967,7 +13998,7 @@
13967 exec 5>>config.log13998 exec 5>>config.log
13968 # Use ||, not &&, to avoid exiting from the if with $? = 1, which13999 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
13969 # would make configure fail if this is the last instruction.14000 # would make configure fail if this is the last instruction.
13970 $ac_cs_success || as_fn_exit $?14001 $ac_cs_success || as_fn_exit 1
13971fi14002fi
13972if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then14003if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
13973 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&514004 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
1397414005
=== modified file 'configure.ac'
--- configure.ac 2010-07-15 15:02:16 +0000
+++ configure.ac 2010-08-12 19:45:57 +0000
@@ -1,10 +1,10 @@
11
2AC_INIT(libindicator, 0.3.10, ted@canonical.com)2AC_INIT(libindicator, 0.3.11, ted@canonical.com)
33
4AC_PREREQ(2.53)4AC_PREREQ(2.53)
55
6AM_CONFIG_HEADER(config.h)6AM_CONFIG_HEADER(config.h)
7AM_INIT_AUTOMAKE(libindicator, 0.3.10)7AM_INIT_AUTOMAKE(libindicator, 0.3.11)
88
9AM_MAINTAINER_MODE9AM_MAINTAINER_MODE
10m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES])10m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES])
1111
=== modified file 'debian/changelog'
--- debian/changelog 2010-07-15 15:55:34 +0000
+++ debian/changelog 2010-08-12 19:45:57 +0000
@@ -1,3 +1,10 @@
1libindicator (0.3.11-0ubuntu1~ppa1) maverick; urgency=low
2
3 * New upstream release.
4 * Allowing absolute paths in the image name (LP: #564034)
5
6 -- Ted Gould <ted@ubuntu.com> Thu, 12 Aug 2010 14:42:46 -0500
7
1libindicator (0.3.10-0ubuntu1) maverick; urgency=low8libindicator (0.3.10-0ubuntu1) maverick; urgency=low
29
3 * New upstream release.10 * New upstream release.
@@ -6,6 +13,14 @@
613
7 -- Ted Gould <ted@ubuntu.com> Thu, 15 Jul 2010 10:02:56 -050014 -- Ted Gould <ted@ubuntu.com> Thu, 15 Jul 2010 10:02:56 -0500
815
16libindicator (0.3.9-1) unstable; urgency=low
17
18 * Merging new upstream release and some changes from Ubuntu.
19 * Don't drop debian/source/*
20 * Standards-Version: 3.9.0
21
22 -- Evgeni Golov <evgeni@debian.org> Wed, 14 Jul 2010 10:07:36 +0200
23
9libindicator (0.3.9-0ubuntu2) maverick; urgency=low24libindicator (0.3.9-0ubuntu2) maverick; urgency=low
1025
11 * Merged in fix for (LP: #603489)26 * Merged in fix for (LP: #603489)
@@ -24,7 +39,7 @@
2439
25 -- Ted Gould <ted@ubuntu.com> Thu, 08 Jul 2010 15:19:08 -050040 -- Ted Gould <ted@ubuntu.com> Thu, 08 Jul 2010 15:19:08 -0500
2641
27libindicator (0.3.8-2) unstable; urgency=low42libindicator (0.3.8-2) UNRELEASED; urgency=low
2843
29 * Revert cdbs drop, as requested by the Ubuntu maintainers.44 * Revert cdbs drop, as requested by the Ubuntu maintainers.
30 * Update Maintainer and Vcs-* fields for pkg-ayatana.45 * Update Maintainer and Vcs-* fields for pkg-ayatana.
3146
=== added directory 'debian/source'
=== added file 'debian/source/format'
--- debian/source/format 1970-01-01 00:00:00 +0000
+++ debian/source/format 2010-08-12 19:45:57 +0000
@@ -0,0 +1,1 @@
13.0 (quilt)
02
=== modified file 'libindicator/Makefile.in'
--- libindicator/Makefile.in 2010-07-15 14:58:36 +0000
+++ libindicator/Makefile.in 2010-08-12 19:45:57 +0000
@@ -202,6 +202,8 @@
202PACKAGE_VERSION = @PACKAGE_VERSION@202PACKAGE_VERSION = @PACKAGE_VERSION@
203PATH_SEPARATOR = @PATH_SEPARATOR@203PATH_SEPARATOR = @PATH_SEPARATOR@
204PKG_CONFIG = @PKG_CONFIG@204PKG_CONFIG = @PKG_CONFIG@
205PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
206PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
205PREFIX = @PREFIX@207PREFIX = @PREFIX@
206RANLIB = @RANLIB@208RANLIB = @RANLIB@
207SED = @SED@209SED = @SED@
208210
=== modified file 'libindicator/indicator-image-helper.c'
--- libindicator/indicator-image-helper.c 2010-07-06 14:47:12 +0000
+++ libindicator/indicator-image-helper.c 2010-08-12 19:45:57 +0000
@@ -30,6 +30,9 @@
30refresh_image (GtkImage * image)30refresh_image (GtkImage * image)
31{31{
32 g_return_if_fail(GTK_IS_IMAGE(image));32 g_return_if_fail(GTK_IS_IMAGE(image));
33 const gchar * icon_filename = NULL;
34 GtkIconInfo * icon_info = NULL;
35 gint icon_size = 22;
3336
34 GIcon * icon_names = (GIcon *)g_object_get_data(G_OBJECT(image), INDICATOR_NAMES_DATA);37 GIcon * icon_names = (GIcon *)g_object_get_data(G_OBJECT(image), INDICATOR_NAMES_DATA);
35 g_return_if_fail(icon_names != NULL);38 g_return_if_fail(icon_names != NULL);
@@ -38,23 +41,30 @@
38 GtkIconTheme * default_theme = gtk_icon_theme_get_default();41 GtkIconTheme * default_theme = gtk_icon_theme_get_default();
39 g_return_if_fail(default_theme != NULL);42 g_return_if_fail(default_theme != NULL);
4043
41 gint icon_size = 22;
42
43 /* Look through the themes for that icon */44 /* Look through the themes for that icon */
44 GtkIconInfo * icon_info = gtk_icon_theme_lookup_by_gicon(default_theme, icon_names, icon_size, 0);45 icon_info = gtk_icon_theme_lookup_by_gicon(default_theme, icon_names, icon_size, 0);
45 if (icon_info == NULL) {46 if (icon_info == NULL) {
46 g_warning("Unable to find icon in theme.");47 /* Try using the second item in the names, which should be the original filename supplied */
47 return;48 const gchar * const * names = g_themed_icon_get_names(G_THEMED_ICON( icon_names ));
49 if (names) {
50 icon_filename = names[1];
51 } else {
52 g_warning("Unable to find icon\n");
53 return;
54 }
55 } else {
56 /* Grab the filename */
57 icon_filename = gtk_icon_info_get_filename(icon_info);
48 }58 }
4959 g_return_if_fail(icon_filename != NULL); /* An error because we don't have a filename */
50 /* Grab the filename */
51 const gchar * icon_filename = gtk_icon_info_get_filename(icon_info);
52 g_return_if_fail(icon_filename != NULL); /* An error because we shouldn't get info without a filename */
5360
54 /* Build a pixbuf */61 /* Build a pixbuf */
55 GError * error = NULL;62 GError * error = NULL;
56 GdkPixbuf * pixbuf = gdk_pixbuf_new_from_file(icon_filename, &error);63 GdkPixbuf * pixbuf = gdk_pixbuf_new_from_file(icon_filename, &error);
57 gtk_icon_info_free(icon_info);64
65 if (icon_info != NULL) {
66 gtk_icon_info_free(icon_info);
67 }
5868
59 if (pixbuf == NULL) {69 if (pixbuf == NULL) {
60 g_error("Unable to load icon from file '%s' because: %s", icon_filename, error == NULL ? "I don't know" : error->message);70 g_error("Unable to load icon from file '%s' because: %s", icon_filename, error == NULL ? "I don't know" : error->message);
@@ -126,12 +136,14 @@
126 g_return_if_fail(name != NULL);136 g_return_if_fail(name != NULL);
127 g_return_if_fail(name[0] != '\0');137 g_return_if_fail(name[0] != '\0');
128 g_return_if_fail(image != NULL);138 g_return_if_fail(image != NULL);
139 gboolean seen_previously = FALSE;
129140
130 /* Build us a GIcon */141 /* Build us a GIcon */
131 GIcon * icon_names = g_themed_icon_new_with_default_fallbacks(name);142 GIcon * icon_names = g_themed_icon_new_with_default_fallbacks(name);
143 g_warn_if_fail(icon_names != NULL);
132 g_return_if_fail(icon_names != NULL);144 g_return_if_fail(icon_names != NULL);
133145
134 gboolean seen_previously = (g_object_get_data(G_OBJECT(image), INDICATOR_NAMES_DATA) != NULL);146 seen_previously = (g_object_get_data(G_OBJECT(image), INDICATOR_NAMES_DATA) != NULL);
135147
136 /* Attach our names to the image */148 /* Attach our names to the image */
137 g_object_set_data_full(G_OBJECT(image), INDICATOR_NAMES_DATA, icon_names, g_object_unref);149 g_object_set_data_full(G_OBJECT(image), INDICATOR_NAMES_DATA, icon_names, g_object_unref);
138150
=== modified file 'tests/Makefile.in'
--- tests/Makefile.in 2010-07-15 15:02:16 +0000
+++ tests/Makefile.in 2010-08-12 19:45:57 +0000
@@ -363,6 +363,8 @@
363PACKAGE_VERSION = @PACKAGE_VERSION@363PACKAGE_VERSION = @PACKAGE_VERSION@
364PATH_SEPARATOR = @PATH_SEPARATOR@364PATH_SEPARATOR = @PATH_SEPARATOR@
365PKG_CONFIG = @PKG_CONFIG@365PKG_CONFIG = @PKG_CONFIG@
366PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
367PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
366PREFIX = @PREFIX@368PREFIX = @PREFIX@
367RANLIB = @RANLIB@369RANLIB = @RANLIB@
368SED = @SED@370SED = @SED@
369371
=== modified file 'tools/Makefile.in'
--- tools/Makefile.in 2010-07-15 14:58:36 +0000
+++ tools/Makefile.in 2010-08-12 19:45:57 +0000
@@ -152,6 +152,8 @@
152PACKAGE_VERSION = @PACKAGE_VERSION@152PACKAGE_VERSION = @PACKAGE_VERSION@
153PATH_SEPARATOR = @PATH_SEPARATOR@153PATH_SEPARATOR = @PATH_SEPARATOR@
154PKG_CONFIG = @PKG_CONFIG@154PKG_CONFIG = @PKG_CONFIG@
155PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
156PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
155PREFIX = @PREFIX@157PREFIX = @PREFIX@
156RANLIB = @RANLIB@158RANLIB = @RANLIB@
157SED = @SED@159SED = @SED@

Subscribers

People subscribed via source and target branches

to all changes: