You are not logged in.

#1 2011-09-13 15:30:03

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

[Solved] Developer supplied me a patch, but I can't seem to apply it

Hello,

I wanted to make xfce4-indicator-plugin work with the new branch of libindicator, so I emailed the developer on this issue. He supplied me with a patch, but I can't seem to apply it. I customized the xfce4-indicator-plugin PKGBUILD to grab the latest version and apply the patch, but I get the following error:

==> Starting build()...
can't find file to patch at input line 11
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|From 68b8d6ab2ff0a4e39836a8c3d5f391b745eb5354 Mon Sep 17 00:00:00 2001
|From: Mark Trompell <mark@foresightlinux.org>
|Date: Fri, 09 Sep 2011 07:45:25 +0000
|Subject: allow building with indicator-0.4
|
|---
|diff --git a/configure.in.in b/configure.in.in
|index e0913ba..107ae55 100644
|--- a/configure.in.in
|+++ b/configure.in.in
--------------------------
File to patch: 

When I put in configure.in (which I think I need) I get the error that I need to install the older libindicator. Now, either the patch is wrong (which I doubt) or I'm patching the wrong file... Can you help me? The developer hasn't answered my email that I sent a week ago now, so I thought I'd ask here. Here's my PKGBUILD:

pkgname=xfce4-indicator-plugin
pkgver=0.3.1
_pkgbranch=3.0
pkgrel=1
pkgdesc="Display indicators in the xfce4 panel"
arch=(i686 x86_64)
license=('LGPL2.1')
url="http://goodies.xfce.org/projects/panel-plugins/xfce4-indicator-plugin"
groups=('xfce4-goodies')
depends=('xfce4-panel' 'libxfce4util' 'libindicator')
makedepends=('intltool' 'xfce4-dev-tools')
options=('!libtool')
source=(http://archive.xfce.org/src/panel-plugins/$pkgname/$_pkgbranch/$pkgname-$pkgver.tar.bz2
	libindicator-fix.patch)

build() {
  cd ${srcdir}/${pkgname}-${pkgver}

  patch -Np0 -i "${srcdir}/libindicator-fix.patch"

  ./configure --prefix=/usr \
	--sysconfdir=/etc \
	--libexecdir=/usr/lib \
	--localstatedir=/var \
	--disable-static \
	--disable-debug
  make
}

package() {
  cd ${srcdir}/${pkgname}-${pkgver}
  make DESTDIR=${pkgdir} install
}

md5sums=('c4940695e412f7bac0fdb46be22ab5f2'
	 'ab714e4bcf5d113f87647ecd20bd88f4')

EDIT: and here's the patch:

From 68b8d6ab2ff0a4e39836a8c3d5f391b745eb5354 Mon Sep 17 00:00:00 2001
From: Mark Trompell <mark@foresightlinux.org>
Date: Fri, 09 Sep 2011 07:45:25 +0000
Subject: allow building with indicator-0.4

---
diff --git a/configure.in.in b/configure.in.in
index e0913ba..107ae55 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -67,7 +67,7 @@ dnl ***********************************
 XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.6.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.3.99.2])
 XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.99.2])
-XDT_CHECK_PACKAGE([INDICATOR], [indicator], [0.3.0])
+XDT_CHECK_PACKAGE([INDICATOR], [indicator], [0.3.0], [], [XDT_CHECK_PACKAGE([INDICATOR], [indicator-0.4], [0.3.90])])
 
 dnl ***********************************
 dnl *** Check for debugging support ***
--
cgit 

Last edited by Unia (2011-09-13 18:32:08)


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#2 2011-09-13 15:33:36

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Wrong strip level, use this:

patch -Np1 -i "${srcdir}/libindicator-fix.patch"

This silver ladybug at line 28...

Offline

#3 2011-09-13 15:35:59

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Nope, that still fails. Here's the output in case it matters:

checking for indicator >= 0.3.0... not found
*** The required package indicator was not found on your system.
*** Please install indicator (atleast version 0.3.0) or adjust
*** the PKG_CONFIG_PATH environment variable if you
*** installed the package in a nonstandard prefix so that
*** pkg-config is able to find it.
==> ERROR: A failure occurred in build().
    Aborting...

EDIT: Here's what I have installed:

┌─[jente@lappy xfce4-indicator-plugin][17:35:22] 
└─■ pacman -Qs libindicator
local/libindicator 0.3.93-1

Last edited by Unia (2011-09-13 15:36:37)


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#4 2011-09-13 15:46:52

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

well, the patch applied but your system is missing some dependencies. start with installing base-devel


Give what you have. To someone, it may be better than you dare to think.

Offline

#5 2011-09-13 15:47:39

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Have base-devel already installed. I can compile other packages correctly.

Last edited by Unia (2011-09-13 15:48:44)


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#6 2011-09-13 15:49:51

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Unia wrote:

Have base-devel already installed. I can compile other packages correctly.

then paste config.log to see why is failing. is in src/$packagename-$version/config.log


Give what you have. To someone, it may be better than you dare to think.

Offline

#7 2011-09-13 15:51:19

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

There you go:

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by xfce4-indicator-plugin configure 0.3.1, which was
generated by GNU Autoconf 2.68.  Invocation command line was

  $ ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib --localstatedir=/var --disable-static --disable-debug

## --------- ##
## Platform. ##
## --------- ##

hostname = lappy
uname -m = x86_64
uname -r = 3.0-ARCH
uname -s = Linux
uname -v = #1 SMP PREEMPT Tue Aug 30 08:53:25 CEST 2011

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = x86_64
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/jente/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/local/sbin
PATH: /usr/sbin
PATH: /sbin
PATH: /opt/java/jre/bin
PATH: /usr/bin/core_perl


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2320: checking build system type
configure:2334: result: x86_64-unknown-linux-gnu
configure:2354: checking host system type
configure:2367: result: x86_64-unknown-linux-gnu
configure:2387: checking target system type
configure:2400: result: x86_64-unknown-linux-gnu
configure:2444: checking for a BSD-compatible install
configure:2512: result: /bin/install -c
configure:2523: checking whether build environment is sane
configure:2573: result: yes
configure:2714: checking for a thread-safe mkdir -p
configure:2753: result: /bin/mkdir -p
configure:2766: checking for gawk
configure:2782: found /usr/bin/gawk
configure:2793: result: gawk
configure:2804: checking whether make sets $(MAKE)
configure:2826: result: yes
configure:2901: checking how to create a ustar tar archive
configure:2914: tar --version
tar (GNU tar) 1.26
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by John Gilmore and Jay Fenlason.
configure:2917: $? = 0
configure:2957: tardir=conftest.dir && eval tar --format=ustar -chf - "$tardir" >conftest.tar
configure:2960: $? = 0
configure:2964: tar -xf - <conftest.tar
configure:2967: $? = 0
configure:2980: result: gnutar
configure:2990: checking whether to enable maintainer-specific portions of Makefiles
configure:2999: result: no
configure:3061: checking for gcc
configure:3077: found /usr/bin/gcc
configure:3088: result: gcc
configure:3317: checking for C compiler version
configure:3326: gcc --version >&5
gcc (GCC) 4.6.1 20110819 (prerelease)
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:3337: $? = 0
configure:3326: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.6.1/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: /build/src/gcc-4.6-20110819/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --enable-gnu-unique-object --enable-linker-build-id --with-ppl --enable-cloog-backend=isl --enable-lto --enable-gold --enable-ld=default --enable-plugin --with-plugin-ld=ld.gold --disable-multilib --disable-libssp --disable-libstdcxx-pch --enable-checking=release
Thread model: posix
gcc version 4.6.1 20110819 (prerelease) (GCC) 
configure:3337: $? = 0
configure:3326: gcc -V >&5
gcc: error: unrecognized option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3337: $? = 1
configure:3326: gcc -qversion >&5
gcc: error: unrecognized option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:3337: $? = 1
configure:3357: checking whether the C compiler works
configure:3379: gcc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:3383: $? = 0
configure:3431: result: yes
configure:3434: checking for C compiler default output file name
configure:3436: result: a.out
configure:3442: checking for suffix of executables
configure:3449: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:3453: $? = 0
configure:3475: result: 
configure:3497: checking whether we are cross compiling
configure:3505: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:3509: $? = 0
configure:3516: ./conftest
configure:3520: $? = 0
configure:3535: result: no
configure:3540: checking for suffix of object files
configure:3562: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:3566: $? = 0
configure:3587: result: o
configure:3591: checking whether we are using the GNU C compiler
configure:3610: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:3610: $? = 0
configure:3619: result: yes
configure:3628: checking whether gcc accepts -g
configure:3648: gcc -c -g  conftest.c >&5
configure:3648: $? = 0
configure:3689: result: yes
configure:3706: checking for gcc option to accept ISO C89
configure:3770: gcc  -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:3770: $? = 0
configure:3783: result: none needed
configure:3814: checking for style of include used by make
configure:3842: result: GNU
configure:3867: checking dependency style of gcc
configure:3977: result: gcc3
configure:3992: checking for a sed that does not truncate output
configure:4056: result: /bin/sed
configure:4074: checking for grep that handles long lines and -e
configure:4132: result: /bin/grep
configure:4137: checking for egrep
configure:4199: result: /bin/grep -E
configure:4204: checking for fgrep
configure:4266: result: /bin/grep -F
configure:4293: checking how to print strings
configure:4320: result: printf
configure:4353: checking for ld used by gcc
configure:4420: result: /usr/bin/ld
configure:4427: checking if the linker (/usr/bin/ld) is GNU ld
configure:4442: result: yes
configure:4497: checking for BSD- or MS-compatible name lister (nm)
configure:4546: result: /usr/bin/nm -B
configure:4676: checking the name lister (/usr/bin/nm -B) interface
configure:4683: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:4686: /usr/bin/nm -B "conftest.o"
configure:4689: output
0000000000000000 B some_variable
configure:4696: result: BSD nm
configure:4699: checking whether ln -s works
configure:4703: result: yes
configure:4711: checking the maximum length of command line arguments
configure:4836: result: 1572864
configure:4853: checking whether the shell understands some XSI constructs
configure:4863: result: yes
configure:4867: checking whether the shell understands "+="
configure:4873: result: yes
configure:4908: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format
configure:4948: result: func_convert_file_noop
configure:4955: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format
configure:4975: result: func_convert_file_noop
configure:4982: checking for /usr/bin/ld option to reload object files
configure:4989: result: -r
configure:5063: checking for objdump
configure:5079: found /usr/bin/objdump
configure:5090: result: objdump
configure:5122: checking how to recognize dependent libraries
configure:5324: result: pass_all
configure:5409: checking for dlltool
configure:5439: result: no
configure:5469: checking how to associate runtime and link libraries
configure:5496: result: printf %s\n
configure:5557: checking for ar
configure:5573: found /usr/bin/ar
configure:5584: result: ar
configure:5621: checking for archiver @FILE support
configure:5638: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:5638: $? = 0
configure:5641: ar cru libconftest.a @conftest.lst >&5
configure:5644: $? = 0
configure:5649: ar cru libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
configure:5652: $? = 1
configure:5664: result: @
configure:5722: checking for strip
configure:5738: found /usr/bin/strip
configure:5749: result: strip
configure:5821: checking for ranlib
configure:5837: found /usr/bin/ranlib
configure:5848: result: ranlib
configure:5950: checking command to parse /usr/bin/nm -B output from gcc object
configure:6069: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:6072: $? = 0
configure:6076: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:6079: $? = 0
configure:6145: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c conftstm.o >&5
configure:6148: $? = 0
configure:6186: result: ok
configure:6223: checking for sysroot
configure:6253: result: no
configure:6330: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:6333: $? = 0
configure:6496: checking for mt
configure:6526: result: no
configure:6546: checking if : is a manifest tool
configure:6552: : '-?'
configure:6560: result: no
configure:7192: checking how to run the C preprocessor
configure:7223: gcc -E  conftest.c
configure:7223: $? = 0
configure:7237: gcc -E  conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:7237: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xfce4-indicator-plugin"
| #define PACKAGE_TARNAME "xfce4-indicator-plugin"
| #define PACKAGE_VERSION "0.3.1"
| #define PACKAGE_STRING "xfce4-indicator-plugin 0.3.1"
| #define PACKAGE_BUGREPORT "http://bugzilla.xfce.org/"
| #define PACKAGE_URL ""
| #define PACKAGE "xfce4-indicator-plugin"
| #define VERSION "0.3.1"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:7262: result: gcc -E
configure:7282: gcc -E  conftest.c
configure:7282: $? = 0
configure:7296: gcc -E  conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:7296: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xfce4-indicator-plugin"
| #define PACKAGE_TARNAME "xfce4-indicator-plugin"
| #define PACKAGE_VERSION "0.3.1"
| #define PACKAGE_STRING "xfce4-indicator-plugin 0.3.1"
| #define PACKAGE_BUGREPORT "http://bugzilla.xfce.org/"
| #define PACKAGE_URL ""
| #define PACKAGE "xfce4-indicator-plugin"
| #define VERSION "0.3.1"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:7325: checking for ANSI C header files
configure:7345: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7345: $? = 0
configure:7418: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:7418: $? = 0
configure:7418: ./conftest
configure:7418: $? = 0
configure:7429: result: yes
configure:7442: checking for sys/types.h
configure:7442: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7442: $? = 0
configure:7442: result: yes
configure:7442: checking for sys/stat.h
configure:7442: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7442: $? = 0
configure:7442: result: yes
configure:7442: checking for stdlib.h
configure:7442: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7442: $? = 0
configure:7442: result: yes
configure:7442: checking for string.h
configure:7442: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7442: $? = 0
configure:7442: result: yes
configure:7442: checking for memory.h
configure:7442: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7442: $? = 0
configure:7442: result: yes
configure:7442: checking for strings.h
configure:7442: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7442: $? = 0
configure:7442: result: yes
configure:7442: checking for inttypes.h
configure:7442: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7442: $? = 0
configure:7442: result: yes
configure:7442: checking for stdint.h
configure:7442: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7442: $? = 0
configure:7442: result: yes
configure:7442: checking for unistd.h
configure:7442: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7442: $? = 0
configure:7442: result: yes
configure:7456: checking for dlfcn.h
configure:7456: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:7456: $? = 0
configure:7456: result: yes
configure:7643: checking for objdir
configure:7658: result: .libs
configure:7925: checking if gcc supports -fno-rtti -fno-exceptions
configure:7943: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default]
configure:7947: $? = 0
configure:7960: result: no
configure:8270: checking for gcc option to produce PIC
configure:8277: result: -fPIC -DPIC
configure:8285: checking if gcc PIC flag -fPIC -DPIC works
configure:8303: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -fPIC -DPIC -DPIC conftest.c >&5
configure:8307: $? = 0
configure:8320: result: yes
configure:8349: checking if gcc static flag -static works
configure:8377: result: yes
configure:8392: checking if gcc supports -c -o file.o
configure:8413: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -o out/conftest2.o conftest.c >&5
configure:8417: $? = 0
configure:8439: result: yes
configure:8447: checking if gcc supports -c -o file.o
configure:8494: result: yes
configure:8527: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:9685: result: yes
configure:9722: checking whether -lc should be explicitly linked in
configure:9730: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:9733: $? = 0
configure:9748: gcc -shared  -fPIC -DPIC conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep  -lc  \>/dev/null 2\>\&1
configure:9751: $? = 0
configure:9765: result: no
configure:9930: checking dynamic linker characteristics
configure:10444: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -Wl,-rpath -Wl,/foo conftest.c  >&5
configure:10444: $? = 0
configure:10670: result: GNU/Linux ld.so
configure:10777: checking how to hardcode library paths into programs
configure:10802: result: immediate
configure:11342: checking whether stripping libraries is possible
configure:11347: result: yes
configure:11382: checking if libtool supports shared libraries
configure:11384: result: yes
configure:11387: checking whether to build shared libraries
configure:11408: result: yes
configure:11411: checking whether to build static libraries
configure:11415: result: no
configure:11451: checking whether NLS is requested
configure:11460: result: yes
configure:11490: checking for intltool-update
configure:11508: found /usr/bin/intltool-update
configure:11520: result: /usr/bin/intltool-update
configure:11530: checking for intltool-merge
configure:11548: found /usr/bin/intltool-merge
configure:11560: result: /usr/bin/intltool-merge
configure:11570: checking for intltool-extract
configure:11588: found /usr/bin/intltool-extract
configure:11600: result: /usr/bin/intltool-extract
configure:11731: checking for xgettext
configure:11749: found /usr/bin/xgettext
configure:11761: result: /usr/bin/xgettext
configure:11771: checking for msgmerge
configure:11789: found /usr/bin/msgmerge
configure:11801: result: /usr/bin/msgmerge
configure:11811: checking for msgfmt
configure:11829: found /usr/bin/msgfmt
configure:11841: result: /usr/bin/msgfmt
configure:11851: checking for gmsgfmt
configure:11882: result: /usr/bin/msgfmt
configure:11902: checking for perl
configure:11920: found /usr/bin/perl
configure:11932: result: /usr/bin/perl
configure:11943: checking for perl >= 5.8.1
configure:11950: result: 5.14.1
configure:11954: checking for XML::Parser
configure:11957: result: ok
configure:11982: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:11982: $? = 0
configure:12013: checking math.h usability
configure:12013: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:12013: $? = 0
configure:12013: result: yes
configure:12013: checking math.h presence
configure:12013: gcc -E  conftest.c
configure:12013: $? = 0
configure:12013: result: yes
configure:12013: checking for math.h
configure:12013: result: yes
configure:12013: checking for memory.h
configure:12013: result: yes
configure:12013: checking for stdlib.h
configure:12013: result: yes
configure:12013: checking for string.h
configure:12013: result: yes
configure:12013: checking for sys/stat.h
configure:12013: result: yes
configure:12013: checking sys/time.h usability
configure:12013: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:12013: $? = 0
configure:12013: result: yes
configure:12013: checking sys/time.h presence
configure:12013: gcc -E  conftest.c
configure:12013: $? = 0
configure:12013: result: yes
configure:12013: checking for sys/time.h
configure:12013: result: yes
configure:12013: checking time.h usability
configure:12013: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:12013: $? = 0
configure:12013: result: yes
configure:12013: checking time.h presence
configure:12013: gcc -E  conftest.c
configure:12013: $? = 0
configure:12013: result: yes
configure:12013: checking for time.h
configure:12013: result: yes
configure:12027: checking for dummy
configure:12027: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
/tmp/ccuoh8EG.o: In function `main':
conftest.c:(.text.startup+0x7): undefined reference to `dummy'
collect2: ld returned 1 exit status
configure:12027: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xfce4-indicator-plugin"
| #define PACKAGE_TARNAME "xfce4-indicator-plugin"
| #define PACKAGE_VERSION "0.3.1"
| #define PACKAGE_STRING "xfce4-indicator-plugin 0.3.1"
| #define PACKAGE_BUGREPORT "http://bugzilla.xfce.org/"
| #define PACKAGE_URL ""
| #define PACKAGE "xfce4-indicator-plugin"
| #define VERSION "0.3.1"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_MATH_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_TIME_H 1
| /* end confdefs.h.  */
| /* Define dummy to an innocuous variant, in case <limits.h> declares dummy.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define dummy innocuous_dummy
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char dummy (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef dummy
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char dummy ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_dummy || defined __stub___dummy
| choke me
| #endif
| 
| int
| main ()
| {
| return dummy ();
|   ;
|   return 0;
| }
configure:12027: result: no
configure:12027: checking for perl
configure:12027: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
/tmp/cctkv6BN.o: In function `main':
conftest.c:(.text.startup+0x7): undefined reference to `perl'
collect2: ld returned 1 exit status
configure:12027: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xfce4-indicator-plugin"
| #define PACKAGE_TARNAME "xfce4-indicator-plugin"
| #define PACKAGE_VERSION "0.3.1"
| #define PACKAGE_STRING "xfce4-indicator-plugin 0.3.1"
| #define PACKAGE_BUGREPORT "http://bugzilla.xfce.org/"
| #define PACKAGE_URL ""
| #define PACKAGE "xfce4-indicator-plugin"
| #define VERSION "0.3.1"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_MATH_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_TIME_H 1
| /* end confdefs.h.  */
| /* Define perl to an innocuous variant, in case <limits.h> declares perl.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define perl innocuous_perl
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char perl (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef perl
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char perl ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_perl || defined __stub___perl
| choke me
| #endif
| 
| int
| main ()
| {
| return perl ();
|   ;
|   return 0;
| }
configure:12027: result: no
configure:12050: checking locale.h usability
configure:12050: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:12050: $? = 0
configure:12050: result: yes
configure:12050: checking locale.h presence
configure:12050: gcc -E  conftest.c
configure:12050: $? = 0
configure:12050: result: yes
configure:12050: checking for locale.h
configure:12050: result: yes
configure:12061: checking for LC_MESSAGES
configure:12077: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:12077: $? = 0
configure:12085: result: yes
configure:12102: checking libintl.h usability
configure:12102: gcc -c -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  conftest.c >&5
configure:12102: $? = 0
configure:12102: result: yes
configure:12102: checking libintl.h presence
configure:12102: gcc -E  conftest.c
configure:12102: $? = 0
configure:12102: result: yes
configure:12102: checking for libintl.h
configure:12102: result: yes
configure:12110: checking for ngettext in libc
configure:12128: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:12128: $? = 0
configure:12137: result: yes
configure:12141: checking for dgettext in libc
configure:12159: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:12159: $? = 0
configure:12168: result: yes
configure:12175: checking for bind_textdomain_codeset
configure:12175: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:12175: $? = 0
configure:12175: result: yes
configure:12451: checking for msgfmt
configure:12478: result: /usr/bin/msgfmt
configure:12489: checking for dcgettext
configure:12489: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c   >&5
conftest.c:58:6: warning: conflicting types for built-in function 'dcgettext' [enabled by default]
configure:12489: $? = 0
configure:12489: result: yes
configure:12499: checking if msgfmt accepts -c
configure:12514: $MSGFMT -c -o /dev/null conftest.foo
configure:12517: $? = 0
configure:12519: result: yes
configure:12529: checking for gmsgfmt
configure:12560: result: /usr/bin/msgfmt
configure:12570: checking for xgettext
configure:12597: result: /usr/bin/xgettext
configure:12616: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c   >&5
configure:12616: $? = 0
configure:12694: checking for catalogs to be installed
configure:12719: result:  da de eu fr hr id it nl pl pt_BR ro ru ug uk zh_CN
configure:12752: checking for bind_textdomain_codeset
configure:12752: result: yes
configure:12758: checking for locales directory
configure:12774: result: ${datarootdir}/locale
configure:12778: checking for additional xgettext flags
configure:12786: result: --keyword=Q_ --from-code=UTF-8
configure:12790: checking for X
configure:12898: gcc -E  conftest.c
configure:12898: $? = 0
configure:12929: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c -lX11  >&5
configure:12929: $? = 0
configure:12979: result: libraries , headers 
configure:13078: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c   -lX11 >&5
configure:13078: $? = 0
configure:13176: checking for gethostbyname
configure:13176: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:13176: $? = 0
configure:13176: result: yes
configure:13273: checking for connect
configure:13273: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:13273: $? = 0
configure:13273: result: yes
configure:13322: checking for remove
configure:13322: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:13322: $? = 0
configure:13322: result: yes
configure:13371: checking for shmat
configure:13371: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c  >&5
configure:13371: $? = 0
configure:13371: result: yes
configure:13429: checking for IceConnectionNumber in -lICE
configure:13454: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c -lICE   >&5
configure:13454: $? = 0
configure:13463: result: yes
configure:13478: checking for main in -lX11
configure:13497: gcc -o conftest -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2  -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c -lX11   -lSM -lICE    >&5
configure:13497: $? = 0
configure:13506: result: yes
configure:13555: checking for pkg-config
configure:13573: found /usr/bin/pkg-config
configure:13586: result: /usr/bin/pkg-config
configure:13608: checking for pkg-config >= 0.9.0
configure:13612: result: 0.26
configure:13629: checking for gtk+-2.0 >= 2.6.0
configure:13633: result: 2.24.6
configure:13636: checking GTK_CFLAGS
configure:13639: result: -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14  
configure:13642: checking GTK_LIBS
configure:13645: result: -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0  
configure:13767: checking for libxfce4util-1.0 >= 4.3.99.2
configure:13771: result: 4.8.1
configure:13774: checking LIBXFCE4UTIL_CFLAGS
configure:13777: result: -I/usr/include/xfce4 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
configure:13780: checking LIBXFCE4UTIL_LIBS
configure:13783: result: -lxfce4util -lglib-2.0  
configure:13905: checking for libxfce4panel-1.0 >= 4.3.99.2
configure:13909: result: 4.8.5
configure:13912: checking LIBXFCE4PANEL_CFLAGS
configure:13915: result: -pthread -I/usr/include/xfce4/libxfce4panel-1.0 -I/usr/include/gtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/xfce4 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14  
configure:13918: checking LIBXFCE4PANEL_LIBS
configure:13921: result: -Wl,--export-dynamic -pthread -lxfce4panel-1.0 -lgtk-x11-2.0 -lxfce4util -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0  
configure:14043: checking for indicator >= 0.3.0
configure:14085: result: not found

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2'
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value=-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_XMKMF_set=
ac_cv_env_XMKMF_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_bind_textdomain_codeset=yes
ac_cv_func_connect=yes
ac_cv_func_dcgettext=yes
ac_cv_func_dummy=no
ac_cv_func_gethostbyname=yes
ac_cv_func_perl=no
ac_cv_func_remove=yes
ac_cv_func_shmat=yes
ac_cv_have_x='have_x=yes	ac_x_includes='\'''\''	ac_x_libraries='\'''\'''
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_libintl_h=yes
ac_cv_header_locale_h=yes
ac_cv_header_math_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_time_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_lib_ICE_IceConnectionNumber=yes
ac_cv_lib_X11_main=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GMSGFMT=/usr/bin/msgfmt
ac_cv_path_GREP=/bin/grep
ac_cv_path_INTLTOOL_EXTRACT=/usr/bin/intltool-extract
ac_cv_path_INTLTOOL_MERGE=/usr/bin/intltool-merge
ac_cv_path_INTLTOOL_PERL=/usr/bin/perl
ac_cv_path_INTLTOOL_UPDATE=/usr/bin/intltool-update
ac_cv_path_MSGFMT=/usr/bin/msgfmt
ac_cv_path_MSGMERGE=/usr/bin/msgmerge
ac_cv_path_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_SED=/bin/sed
ac_cv_path_XGETTEXT=/usr/bin/xgettext
ac_cv_path_install='/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_target=x86_64-unknown-linux-gnu
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_prog_tar_ustar=gnutar
am_cv_val_LC_MESSAGES=yes
gt_cv_func_dgettext_libc=yes
gt_cv_func_dgettext_libintl=no
gt_cv_func_ngettext_libc=yes
gt_cv_have_gettext=yes
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_gnu_ld=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/  {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
xdt_cv_PKG_CONFIG_MIN_VERSION=0.9.0
xdt_cv_PKG_CONFIG_VERSION=0.26

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /home/jente/packages/arch/xfce4-indicator-plugin/src/xfce4-indicator-plugin-0.3.1/missing --run aclocal-1.11'
ALL_LINGUAS='da de eu fr hr id it nl pl pt_BR ro ru ug uk zh_CN '
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/jente/packages/arch/xfce4-indicator-plugin/src/xfce4-indicator-plugin-0.3.1/missing --run tar'
AR='ar'
AUTOCONF='${SHELL} /home/jente/packages/arch/xfce4-indicator-plugin/src/xfce4-indicator-plugin-0.3.1/missing --run autoconf'
AUTOHEADER='${SHELL} /home/jente/packages/arch/xfce4-indicator-plugin/src/xfce4-indicator-plugin-0.3.1/missing --run autoheader'
AUTOMAKE='${SHELL} /home/jente/packages/arch/xfce4-indicator-plugin/src/xfce4-indicator-plugin-0.3.1/missing --run automake-1.11'
AWK='gawk'
CATALOGS=' da.gmo de.gmo eu.gmo fr.gmo hr.gmo id.gmo it.gmo nl.gmo pl.gmo pt_BR.gmo ro.gmo ru.gmo ug.gmo uk.gmo zh_CN.gmo'
CATOBJEXT='.gmo'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2'
CPP='gcc -E'
CPPFLAGS=''
CYGPATH_W='echo'
DATADIRNAME='share'
DEFS=''
DEPDIR='.deps'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
FGREP='/bin/grep -F'
GETTEXT_PACKAGE='xfce4-indicator-plugin'
GMOFILES=' da.gmo de.gmo eu.gmo fr.gmo hr.gmo id.gmo it.gmo nl.gmo pl.gmo pt_BR.gmo ro.gmo ru.gmo ug.gmo uk.gmo zh_CN.gmo'
GMSGFMT='/usr/bin/msgfmt'
GREP='/bin/grep'
GTK_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14  '
GTK_LIBS='-pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0  '
GTK_REQUIRED_VERSION='2.6.0'
GTK_VERSION='2.24.6'
INDICATORDIR=''
INDICATORICONSDIR=''
INDICATOR_CFLAGS=''
INDICATOR_LIBS=''
INDICATOR_REQUIRED_VERSION=''
INDICATOR_VERSION=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
INSTOBJEXT='.mo'
INTLLIBS=''
INTLTOOL_CAVES_RULE='%.caves:     %.caves.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_DESKTOP_RULE='%.desktop:   %.desktop.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_EXTRACT='/usr/bin/intltool-extract'
INTLTOOL_KBD_RULE='%.kbd:       %.kbd.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_KEYS_RULE='%.keys:      %.keys.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_MERGE='/usr/bin/intltool-merge'
INTLTOOL_OAF_RULE='%.oaf:       %.oaf.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< $@'
INTLTOOL_PERL='/usr/bin/perl'
INTLTOOL_POLICY_RULE='%.policy:    %.policy.in    $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_PONG_RULE='%.pong:      %.pong.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_PROP_RULE='%.prop:      %.prop.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SCHEMAS_RULE='%.schemas:   %.schemas.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SERVER_RULE='%.server:    %.server.in    $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SERVICE_RULE='%.service: %.service.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SHEET_RULE='%.sheet:     %.sheet.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_THEME_RULE='%.theme:     %.theme.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_UI_RULE='%.ui:        %.ui.in        $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_UPDATE='/usr/bin/intltool-update'
INTLTOOL_XAM_RULE='%.xam:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_XML_NOMERGE_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@'
INTLTOOL_XML_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS='-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu'
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIBX11_CFLAGS=''
LIBX11_LDFLAGS=''
LIBX11_LIBS=' -lSM -lICE -lX11'
LIBXFCE4PANEL_CFLAGS='-pthread -I/usr/include/xfce4/libxfce4panel-1.0 -I/usr/include/gtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/xfce4 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14  '
LIBXFCE4PANEL_LIBS='-Wl,--export-dynamic -pthread -lxfce4panel-1.0 -lgtk-x11-2.0 -lxfce4util -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0  '
LIBXFCE4PANEL_REQUIRED_VERSION='4.3.99.2'
LIBXFCE4PANEL_VERSION='4.8.5'
LIBXFCE4UTIL_CFLAGS='-I/usr/include/xfce4 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
LIBXFCE4UTIL_LIBS='-lxfce4util -lglib-2.0  '
LIBXFCE4UTIL_REQUIRED_VERSION='4.3.99.2'
LIBXFCE4UTIL_VERSION='4.8.1'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAKEINFO='${SHELL} /home/jente/packages/arch/xfce4-indicator-plugin/src/xfce4-indicator-plugin-0.3.1/missing --run makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
MKINSTALLDIRS='./mkinstalldirs'
MSGFMT='/usr/bin/msgfmt'
MSGFMT_OPTS='-c'
MSGMERGE='/usr/bin/msgmerge'
NM='/usr/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OTOOL64=''
OTOOL=''
PACKAGE='xfce4-indicator-plugin'
PACKAGE_BUGREPORT='http://bugzilla.xfce.org/'
PACKAGE_NAME='xfce4-indicator-plugin'
PACKAGE_STRING='xfce4-indicator-plugin 0.3.1'
PACKAGE_TARNAME='xfce4-indicator-plugin'
PACKAGE_URL=''
PACKAGE_VERSION='0.3.1'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
PLATFORM_CFLAGS=''
PLATFORM_CPPFLAGS=''
PLATFORM_LDFLAGS=''
POFILES=' da.po de.po eu.po fr.po hr.po id.po it.po nl.po pl.po pt_BR.po ro.po ru.po ug.po uk.po zh_CN.po'
POSUB='po'
PO_IN_DATADIR_FALSE=''
PO_IN_DATADIR_TRUE=''
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
USE_NLS='yes'
VERSION='0.3.1'
XGETTEXT='/usr/bin/xgettext'
XGETTEXT_ARGS='--keyword=Q_ --from-code=UTF-8'
XMKMF=''
X_CFLAGS=''
X_EXTRA_LIBS=''
X_LIBS=''
X_PRE_LIBS=' -lSM -lICE'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='tar --format=ustar -chf - "$$tardir"'
am__untar='tar -xf -'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='unknown'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='NONE'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/jente/packages/arch/xfce4-indicator-plugin/src/xfce4-indicator-plugin-0.3.1/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='/usr/lib'
localedir='${datarootdir}/locale'
localstatedir='/var'
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='/etc'
target='x86_64-unknown-linux-gnu'
target_alias=''
target_cpu='x86_64'
target_os='linux-gnu'
target_vendor='unknown'

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "xfce4-indicator-plugin"
#define PACKAGE_TARNAME "xfce4-indicator-plugin"
#define PACKAGE_VERSION "0.3.1"
#define PACKAGE_STRING "xfce4-indicator-plugin 0.3.1"
#define PACKAGE_BUGREPORT "http://bugzilla.xfce.org/"
#define PACKAGE_URL ""
#define PACKAGE "xfce4-indicator-plugin"
#define VERSION "0.3.1"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define HAVE_MATH_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_TIME_H 1
#define GETTEXT_PACKAGE "xfce4-indicator-plugin"
#define HAVE_LOCALE_H 1
#define HAVE_LC_MESSAGES 1
#define HAVE_BIND_TEXTDOMAIN_CODESET 1
#define HAVE_GETTEXT 1
#define HAVE_DCGETTEXT 1
#define ENABLE_NLS 1
#define HAVE_LIBX11 1

configure: exit 1

If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#8 2011-09-13 15:56:32

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

does libindicator provides a file in /usr/lib/pkgconfig/indicator.pc ?


Give what you have. To someone, it may be better than you dare to think.

Offline

#9 2011-09-13 16:00:14

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Why is the patch patching configure.in.in? Is that to .in's? xD

I think after patching configure.in, you need to run autoconf to generate the new configure file.


This silver ladybug at line 28...

Offline

#10 2011-09-13 16:00:23

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

I have a file called /usr/lib/pkgconfig/indicator3-0.4.pc


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#11 2011-09-13 16:06:49

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

lolilolicon wrote:

Why is the patch patching configure.in.in? Is that to .in's? xD

I think after patching configure.in, you need to run autoconf to generate the new configure file.


indeed. it needs autoreconf -fi


Give what you have. To someone, it may be better than you dare to think.

Offline

#12 2011-09-13 16:10:49

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Can I add that to the PKGBUILD somehow?

EDIT: I tried just adding autoreconf -fi after the patch line, but then end up with this:

./configure: line 11979: syntax error near unexpected token `da'
./configure: line 11979: `XDT_I18N(da de eu fr hr id it nl pl pt_BR ro ru ug uk zh_CN )'
==> ERROR: A failure occurred in build().
    Aborting...

Last edited by Unia (2011-09-13 16:13:20)


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#13 2011-09-13 17:54:24

thn81
Member
Registered: 2009-08-27
Posts: 88

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Try running 'xdt-autogen' instead of 'autoreconf -fi'

Offline

#14 2011-09-13 17:56:42

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Thank you! That works. Now I get stuck here, however:

checking for indicator >= 0.3.0... not found
checking for indicator-0.4 >= 0.3.90... not found
*** The required package indicator-0.4 was not found on your system.
*** Please install indicator-0.4 (atleast version 0.3.90) or adjust
*** the PKG_CONFIG_PATH environment variable if you
*** installed the package in a nonstandard prefix so that
*** pkg-config is able to find it.
==> ERROR: A failure occurred in build().
    Aborting...

Guess I need to edit the patch then. Will have a go later today

Last edited by Unia (2011-09-13 17:57:07)


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#15 2011-09-13 18:01:21

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Somehow the XDT_I18N() macro is not defined and thus not translated to valish sh syntax...

What if you just put autoconf after the patch line?

Last edited by lolilolicon (2011-09-13 18:01:32)


This silver ladybug at line 28...

Offline

#16 2011-09-13 18:06:00

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

So I now edited the patch, to look like this:

From 68b8d6ab2ff0a4e39836a8c3d5f391b745eb5354 Mon Sep 17 00:00:00 2001
From: Mark Trompell <mark@foresightlinux.org>
Date: Fri, 09 Sep 2011 07:45:25 +0000
Subject: allow building with indicator-0.4

---
diff --git a/configure.in.in b/configure.in.in
index e0913ba..107ae55 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -67,7 +67,7 @@ dnl ***********************************
 XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.6.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.3.99.2])
 XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.99.2])
-XDT_CHECK_PACKAGE([INDICATOR], [indicator], [0.3.0])
+XDT_CHECK_PACKAGE([INDICATOR], [libindicator], [0.3.0], [], [XDT_CHECK_PACKAGE([INDICATOR], [libindicator], [0.3.90])])
 
 dnl ***********************************
 dnl *** Check for debugging support ***
--
cgit 

I now get the following error:

checking for libindicator >= 0.3.90... not found
*** The required package libindicator was not found on your system.
*** Please install libindicator (atleast version 0.3.90) or adjust
*** the PKG_CONFIG_PATH environment variable if you
*** installed the package in a nonstandard prefix so that
*** pkg-config is able to find it.
==> ERROR: A failure occurred in build().
    Aborting...

But I have that installed:

┌─[jente@lappy xfce4-indicator-plugin][20:04:28] 
└─■ pacman -Qs libindicator
local/libindicator 0.3.93-1

If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#17 2011-09-13 18:12:39

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Not familiar with the topic, but I uspect you should substitute indicator-0.4 with indicator3-0.4 in the original patch, since you have /usr/lib/pkgconfig/indicator3-0.4.pc.


This silver ladybug at line 28...

Offline

#18 2011-09-13 18:16:58

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

Well that works, so the patch issue is resolved. However, I am now presented with a new error:

indicator.c: In functie ‘_xpp_expose_event’:
indicator.c:41:1: fout: ‘GtkObject’ has no member named ‘flags’
indicator.c:41:1: fout: ‘GtkObject’ has no member named ‘flags’
make[2]: *** [xfce4_indicator_plugin-indicator.o] Fout 1
make[2]: Map '/home/jente/packages/arch/xfce4-indicator-plugin/src/xfce4-indicator-plugin-0.3.1/panel-plugin' wordt verlaten
make[1]: *** [all-recursive] Fout 1
make[1]: Map '/home/jente/packages/arch/xfce4-indicator-plugin/src/xfce4-indicator-plugin-0.3.1' wordt verlaten
make: *** [all] Fout 2
==> ERROR: A failure occurred in build().
    Aborting...

*sigh*....

Last edited by Unia (2011-09-13 18:22:20)


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#19 2011-09-13 18:25:19

thn81
Member
Registered: 2009-08-27
Posts: 88

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

lolilolicon wrote:

Not familiar with the topic, but I uspect you should substitute indicator-0.4 with indicator3-0.4 in the original patch, since you have /usr/lib/pkgconfig/indicator3-0.4.pc.

Nope, libindicator3 is for applications using GTK3. XFCE uses GTK2, so libindicator needs to be built with GTK2 support. If you use the libindicator PKGBUILD from https://github.com/City-busz/Arch-Linux … tu-ayatana, you will get a libindicator package with GTK2 and a libindicator3 package with GTK3 support.

Offline

#20 2011-09-13 18:28:49

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

^ Thanks for the reminder. I tried building that before but it failed. Now it built succesfully. Will now check if the plugin now builds correctly too!


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#21 2011-09-13 18:31:54

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: [Solved] Developer supplied me a patch, but I can't seem to apply it

It works now! Thanks for your help all! big_smile


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

Board footer

Powered by FluxBB