This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by vine-notify-update configure 0.5, which was generated by GNU Autoconf 2.68. Invocation command line was $ ./configure --enable-maintainer-mode ## --------- ## ## Platform. ## ## --------- ## hostname = hangar.int.teamgedoh.net uname -m = x86_64 uname -r = 3.4.6-3vl7 uname -s = Linux uname -v = #1 SMP Fri Jul 27 04:20:56 JST 2012 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/bin PATH: /bin PATH: /usr/bin PATH: /usr/local/sbin PATH: /usr/sbin PATH: /sbin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2300: checking for a BSD-compatible install configure:2368: result: /usr/bin/install -c configure:2379: checking whether build environment is sane configure:2429: result: yes configure:2570: checking for a thread-safe mkdir -p configure:2609: result: /bin/mkdir -p configure:2622: checking for gawk configure:2638: found /bin/gawk configure:2649: result: gawk configure:2660: checking whether make sets $(MAKE) configure:2682: result: yes configure:2778: checking whether to enable maintainer-specific portions of Makefiles configure:2787: result: yes configure:2849: checking for gcc configure:2865: found /usr/bin/gcc configure:2876: result: gcc configure:3105: checking for C compiler version configure:3114: gcc --version >&5 gcc (GCC) 4.6.2 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:3125: $? = 0 configure:3114: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-vine-linux/4.6.2/lto-wrapper Target: x86_64-vine-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --enable-languages=c,c++,objc,obj-c++,java,fortran,go,lto --enable-plugin --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-tune=generic --with-arch_32=i686 --build=x86_64-vine-linux Thread model: posix gcc version 4.6.2 (GCC) configure:3125: $? = 0 configure:3114: gcc -V >&5 gcc: error: unrecognized option '-V' gcc: fatal error: no input files compilation terminated. configure:3125: $? = 1 configure:3114: gcc -qversion >&5 gcc: error: unrecognized option '-qversion' gcc: fatal error: no input files compilation terminated. configure:3125: $? = 1 configure:3145: checking whether the C compiler works configure:3167: gcc conftest.c >&5 configure:3171: $? = 0 configure:3219: result: yes configure:3222: checking for C compiler default output file name configure:3224: result: a.out configure:3230: checking for suffix of executables configure:3237: gcc -o conftest conftest.c >&5 configure:3241: $? = 0 configure:3263: result: configure:3285: checking whether we are cross compiling configure:3293: gcc -o conftest conftest.c >&5 configure:3297: $? = 0 configure:3304: ./conftest configure:3308: $? = 0 configure:3323: result: no configure:3328: checking for suffix of object files configure:3350: gcc -c conftest.c >&5 configure:3354: $? = 0 configure:3375: result: o configure:3379: checking whether we are using the GNU C compiler configure:3398: gcc -c conftest.c >&5 configure:3398: $? = 0 configure:3407: result: yes configure:3416: checking whether gcc accepts -g configure:3436: gcc -c -g conftest.c >&5 configure:3436: $? = 0 configure:3477: result: yes configure:3494: checking for gcc option to accept ISO C89 configure:3558: gcc -c -g -O2 conftest.c >&5 configure:3558: $? = 0 configure:3571: result: none needed configure:3602: checking for style of include used by make configure:3630: result: GNU configure:3655: checking dependency style of gcc configure:3765: result: gcc3 configure:3784: checking for gcc option to accept ISO C99 configure:3933: gcc -c -g -O2 conftest.c >&5 conftest.c:61:29: error: expected ';', ',' or ')' before 'text' conftest.c: In function 'main': conftest.c:115:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' conftest.c:115:18: error: 'newvar' undeclared (first use in this function) conftest.c:115:18: note: each undeclared identifier is reported only once for each function it appears in conftest.c:125:3: error: 'for' loop initial declarations are only allowed in C99 mode conftest.c:125:3: note: use option -std=c99 or -std=gnu99 to compile your code configure:3933: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vine-notify-update" | #define PACKAGE_TARNAME "vine-notify-update" | #define PACKAGE_VERSION "0.5" | #define PACKAGE_STRING "vine-notify-update 0.5" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vine-notify-update" | #define VERSION "0.5" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:3933: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3933: $? = 0 configure:3953: result: -std=gnu99 configure:4055: checking for gcc -std=gnu99 option to accept ISO Standard C configure:4069: result: -std=gnu99 configure:4075: checking for valac configure:4093: found /usr/bin/valac configure:4105: result: /usr/bin/valac configure:4118: checking /usr/bin/valac is at least version 0.18.0 configure:4129: result: yes configure:4143: checking whether NLS is requested configure:4152: result: yes configure:4171: checking for intltool >= 0.50 configure:4173: result: 0.50.2 found configure:4181: checking for intltool-update configure:4199: found /usr/bin/intltool-update configure:4211: result: /usr/bin/intltool-update configure:4221: checking for intltool-merge configure:4239: found /usr/bin/intltool-merge configure:4251: result: /usr/bin/intltool-merge configure:4261: checking for intltool-extract configure:4279: found /usr/bin/intltool-extract configure:4291: result: /usr/bin/intltool-extract configure:4445: checking for xgettext configure:4463: found /usr/bin/xgettext configure:4475: result: /usr/bin/xgettext configure:4485: checking for msgmerge configure:4503: found /usr/bin/msgmerge configure:4515: result: /usr/bin/msgmerge configure:4525: checking for msgfmt configure:4543: found /usr/bin/msgfmt configure:4555: result: /usr/bin/msgfmt configure:4565: checking for gmsgfmt configure:4596: result: /usr/bin/msgfmt configure:4616: checking for perl configure:4634: found /usr/bin/perl configure:4646: result: /usr/bin/perl configure:4657: checking for perl >= 5.8.1 configure:4664: result: 5.12.3 configure:4668: checking for XML::Parser configure:4671: result: ok configure:4696: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4696: $? = 0 configure:4778: checking for pkg-config configure:4796: found /usr/bin/pkg-config configure:4808: result: /usr/bin/pkg-config configure:4833: checking pkg-config is at least version 0.9.0 configure:4836: result: yes configure:4846: checking for VINE_NOTIFY_UPDATE configure:4853: $PKG_CONFIG --exists --print-errors "$pkg_modules" configure:4856: $? = 0 configure:4869: $PKG_CONFIG --exists --print-errors "$pkg_modules" configure:4872: $? = 0 configure:4929: result: yes configure:4950: checking how to run the C preprocessor configure:4981: gcc -std=gnu99 -E conftest.c configure:4981: $? = 0 configure:4995: gcc -std=gnu99 -E conftest.c conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4995: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vine-notify-update" | #define PACKAGE_TARNAME "vine-notify-update" | #define PACKAGE_VERSION "0.5" | #define PACKAGE_STRING "vine-notify-update 0.5" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vine-notify-update" | #define VERSION "0.5" | #define GETTEXT_PACKAGE "vine-notify-update" | /* end confdefs.h. */ | #include configure:5020: result: gcc -std=gnu99 -E configure:5040: gcc -std=gnu99 -E conftest.c configure:5040: $? = 0 configure:5054: gcc -std=gnu99 -E conftest.c conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:5054: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vine-notify-update" | #define PACKAGE_TARNAME "vine-notify-update" | #define PACKAGE_VERSION "0.5" | #define PACKAGE_STRING "vine-notify-update 0.5" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vine-notify-update" | #define VERSION "0.5" | #define GETTEXT_PACKAGE "vine-notify-update" | /* end confdefs.h. */ | #include configure:5083: checking for grep that handles long lines and -e configure:5141: result: /bin/grep configure:5146: checking for egrep configure:5208: result: /bin/grep -E configure:5213: checking for ANSI C header files configure:5233: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5233: $? = 0 configure:5306: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5306: $? = 0 configure:5306: ./conftest configure:5306: $? = 0 configure:5317: result: yes configure:5330: checking for sys/types.h configure:5330: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5330: $? = 0 configure:5330: result: yes configure:5330: checking for sys/stat.h configure:5330: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5330: $? = 0 configure:5330: result: yes configure:5330: checking for stdlib.h configure:5330: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5330: $? = 0 configure:5330: result: yes configure:5330: checking for string.h configure:5330: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5330: $? = 0 configure:5330: result: yes configure:5330: checking for memory.h configure:5330: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5330: $? = 0 configure:5330: result: yes configure:5330: checking for strings.h configure:5330: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5330: $? = 0 configure:5330: result: yes configure:5330: checking for inttypes.h configure:5330: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5330: $? = 0 configure:5330: result: yes configure:5330: checking for stdint.h configure:5330: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5330: $? = 0 configure:5330: result: yes configure:5330: checking for unistd.h configure:5330: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5330: $? = 0 configure:5330: result: yes configure:5345: checking locale.h usability configure:5345: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5345: $? = 0 configure:5345: result: yes configure:5345: checking locale.h presence configure:5345: gcc -std=gnu99 -E conftest.c configure:5345: $? = 0 configure:5345: result: yes configure:5345: checking for locale.h configure:5345: result: yes configure:5356: checking for LC_MESSAGES configure:5372: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5372: $? = 0 configure:5380: result: yes configure:5397: checking libintl.h usability configure:5397: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5397: $? = 0 configure:5397: result: yes configure:5397: checking libintl.h presence configure:5397: gcc -std=gnu99 -E conftest.c configure:5397: $? = 0 configure:5397: result: yes configure:5397: checking for libintl.h configure:5397: result: yes configure:5405: checking for ngettext in libc configure:5423: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5423: $? = 0 configure:5432: result: yes configure:5436: checking for dgettext in libc configure:5454: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5454: $? = 0 configure:5463: result: yes configure:5470: checking for bind_textdomain_codeset configure:5470: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5470: $? = 0 configure:5470: result: yes configure:5746: checking for msgfmt configure:5773: result: /usr/bin/msgfmt configure:5784: checking for dcgettext configure:5784: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 conftest.c:49:6: warning: conflicting types for built-in function 'dcgettext' [enabled by default] configure:5784: $? = 0 configure:5784: result: yes configure:5794: checking if msgfmt accepts -c configure:5809: $MSGFMT -c -o /dev/null conftest.foo configure:5812: $? = 0 configure:5814: result: yes configure:5824: checking for gmsgfmt configure:5855: result: /usr/bin/msgfmt configure:5865: checking for xgettext configure:5892: result: /usr/bin/xgettext configure:5911: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5911: $? = 0 configure:6191: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by vine-notify-update config.status 0.5, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on hangar.int.teamgedoh.net config.status:953: creating Makefile config.status:953: creating po/Makefile.in config.status:953: creating src/Makefile config.status:953: creating data/Makefile config.status:953: creating config.h config.status:1182: executing depfiles commands config.status:1182: executing default-1 commands config.status:1182: executing po/stamp-it commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_c_compiler_gnu=yes ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= 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= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_PKG_CONFIG_LIBDIR_set= ac_cv_env_PKG_CONFIG_LIBDIR_value= ac_cv_env_PKG_CONFIG_PATH_set= ac_cv_env_PKG_CONFIG_PATH_value= ac_cv_env_PKG_CONFIG_set= ac_cv_env_PKG_CONFIG_value= ac_cv_env_VINE_NOTIFY_UPDATE_CFLAGS_set= ac_cv_env_VINE_NOTIFY_UPDATE_CFLAGS_value= ac_cv_env_VINE_NOTIFY_UPDATE_LIBS_set= ac_cv_env_VINE_NOTIFY_UPDATE_LIBS_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_dcgettext=yes ac_cv_header_inttypes_h=yes ac_cv_header_libintl_h=yes ac_cv_header_locale_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_types_h=yes ac_cv_header_unistd_h=yes ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' 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_VALAC=/usr/bin/valac ac_cv_path_XGETTEXT=/usr/bin/xgettext ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config ac_cv_path_install='/usr/bin/install -c' ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_prog_cc_stdc=-std=gnu99 ac_cv_prog_make_make_set=yes am_cv_CC_dependencies_compiler_type=gcc3 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 pkg_cv_VINE_NOTIFY_UPDATE_CFLAGS='-pthread -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libpng12 -I/usr/include/gtk-3.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/pixman-1 -I/usr/include/libdrm ' pkg_cv_VINE_NOTIFY_UPDATE_LIBS='-lnotify -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0 ' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /home/tomop/data/src/vine-notify-update/missing --run aclocal-1.11' ALL_LINGUAS='' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /home/tomop/data/src/vine-notify-update/missing --run tar' AM_BACKSLASH='\' AM_DEFAULT_VERBOSITY='0' AUTOCONF='${SHELL} /home/tomop/data/src/vine-notify-update/missing --run autoconf' AUTOHEADER='${SHELL} /home/tomop/data/src/vine-notify-update/missing --run autoheader' AUTOMAKE='${SHELL} /home/tomop/data/src/vine-notify-update/missing --run automake-1.11' AWK='gawk' CATALOGS='' CATOBJEXT='.gmo' CC='gcc -std=gnu99' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' CPP='gcc -std=gnu99 -E' CPPFLAGS='' CYGPATH_W='echo' DATADIRNAME='share' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' GETTEXT_PACKAGE='vine-notify-update' GMOFILES='' GMSGFMT='/usr/bin/msgfmt' GREP='/bin/grep' 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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< $@' INTLTOOL_PERL='/usr/bin/perl' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -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) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_UPDATE='/usr/bin/intltool-update' INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< $@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL__v_MERGE_0='@echo " ITMRG " $@;' INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' LDFLAGS='' LIBOBJS='' LIBS='' LTLIBOBJS='' MAINT='' MAINTAINER_MODE_FALSE='#' MAINTAINER_MODE_TRUE='' MAKEINFO='${SHELL} /home/tomop/data/src/vine-notify-update/missing --run makeinfo' MKDIR_P='/bin/mkdir -p' MKINSTALLDIRS='./mkinstalldirs' MSGFMT='/usr/bin/msgfmt' MSGFMT_OPTS='-c' MSGMERGE='/usr/bin/msgmerge' OBJEXT='o' PACKAGE='vine-notify-update' PACKAGE_BUGREPORT='' PACKAGE_NAME='vine-notify-update' PACKAGE_STRING='vine-notify-update 0.5' PACKAGE_TARNAME='vine-notify-update' PACKAGE_URL='' PACKAGE_VERSION='0.5' PATH_SEPARATOR=':' PKG_CONFIG='/usr/bin/pkg-config' PKG_CONFIG_LIBDIR='' PKG_CONFIG_PATH='' POFILES='' POSUB='po' PO_IN_DATADIR_FALSE='' PO_IN_DATADIR_TRUE='' SET_MAKE='' SHELL='/bin/sh' STRIP='' USE_NLS='yes' VALAC='/usr/bin/valac' VERSION='0.5' VINE_NOTIFY_UPDATE_CFLAGS='-pthread -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libpng12 -I/usr/include/gtk-3.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/pixman-1 -I/usr/include/libdrm ' VINE_NOTIFY_UPDATE_LIBS='-lnotify -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0 ' VINE_NOTIFY_UPDATE_PACKAGES='--pkg libnotify --pkg gtk+-3.0' XGETTEXT='/usr/bin/xgettext' ac_ct_CC='gcc' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build_alias='' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host_alias='' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /home/tomop/data/src/vine-notify-update/install-sh' intltool__v_merge_options_0='-q' intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='/bin/mkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "vine-notify-update" #define PACKAGE_TARNAME "vine-notify-update" #define PACKAGE_VERSION "0.5" #define PACKAGE_STRING "vine-notify-update 0.5" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define PACKAGE "vine-notify-update" #define VERSION "0.5" #define GETTEXT_PACKAGE "vine-notify-update" #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_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 configure: exit 0