diff -Nru elfres-0.5.0~karmic/aclocal.m4 elfres-0.6.0~karmic/aclocal.m4 --- elfres-0.5.0~karmic/aclocal.m4 2010-05-03 04:05:33.000000000 +0000 +++ elfres-0.6.0~karmic/aclocal.m4 2011-03-06 05:49:30.000000000 +0000 @@ -13,14 +13,14 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],, -[m4_warning([this file was generated for autoconf 2.65. +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],, +[m4_warning([this file was generated for autoconf 2.67. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) -# intlmacosx.m4 serial 1 (gettext-0.17) -dnl Copyright (C) 2004-2007 Free Software Foundation, Inc. +# intlmacosx.m4 serial 3 (gettext-0.18) +dnl Copyright (C) 2004-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -40,7 +40,7 @@ [ dnl Check for API introduced in MacOS X 10.2. AC_CACHE_CHECK([for CFPreferencesCopyAppValue], - gt_cv_func_CFPreferencesCopyAppValue, + [gt_cv_func_CFPreferencesCopyAppValue], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_TRY_LINK([#include ], @@ -49,11 +49,11 @@ [gt_cv_func_CFPreferencesCopyAppValue=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then - AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], 1, + AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1], [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) fi dnl Check for API introduced in MacOS X 10.3. - AC_CACHE_CHECK([for CFLocaleCopyCurrent], gt_cv_func_CFLocaleCopyCurrent, + AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_TRY_LINK([#include ], [CFLocaleCopyCurrent();], @@ -61,7 +61,7 @@ [gt_cv_func_CFLocaleCopyCurrent=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFLocaleCopyCurrent = yes; then - AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], 1, + AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1], [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) fi INTL_MACOSX_LIBS= @@ -72,6 +72,7 @@ ]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # @@ -99,7 +100,10 @@ AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) +AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) +AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi @@ -112,7 +116,6 @@ AC_MSG_RESULT([no]) PKG_CONFIG="" fi - fi[]dnl ])# PKG_PROG_PKG_CONFIG @@ -121,34 +124,31 @@ # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # -# -# Similar to PKG_CHECK_MODULES, make sure that the first instance of -# this or PKG_CHECK_MODULES is called, or make sure to call -# PKG_CHECK_EXISTS manually +# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +# only at the first occurence in configure.ac, so if the first place +# it's called might be skipped (such as if it is within an "if", you +# have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_ifval([$2], [$2], [:]) + m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) - # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], -[if test -n "$PKG_CONFIG"; then - if test -n "$$1"; then - pkg_cv_[]$1="$$1" - else - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], - [pkg_failed=yes]) - fi -else - pkg_failed=untried +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) + else + pkg_failed=untried fi[]dnl ])# _PKG_CONFIG @@ -190,16 +190,17 @@ See the pkg-config man page for more details.]) if test $pkg_failed = yes; then + AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` else - $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD - ifelse([$4], , [AC_MSG_ERROR(dnl + m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS @@ -207,25 +208,24 @@ Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. -_PKG_TEXT -])], - [AC_MSG_RESULT([no]) - $4]) +_PKG_TEXT])dnl + ]) elif test $pkg_failed = untried; then - ifelse([$4], , [AC_MSG_FAILURE(dnl + AC_MSG_RESULT([no]) + m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT -To get pkg-config, see .])], - [$4]) +To get pkg-config, see .])dnl + ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) - ifelse([$3], , :, [$3]) + $3 fi[]dnl ])# PKG_CHECK_MODULES diff -Nru elfres-0.5.0~karmic/.cdtproject elfres-0.6.0~karmic/.cdtproject --- elfres-0.5.0~karmic/.cdtproject 2008-03-21 00:04:16.000000000 +0000 +++ elfres-0.6.0~karmic/.cdtproject 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru elfres-0.5.0~karmic/ChangeLog elfres-0.6.0~karmic/ChangeLog --- elfres-0.5.0~karmic/ChangeLog 2010-05-01 19:40:38.000000000 +0000 +++ elfres-0.6.0~karmic/ChangeLog 2011-03-05 21:18:22.000000000 +0000 @@ -1,3 +1,9 @@ +0.6.0: + * Updated "GUID naming" to "UUID naming" of functions. + * Switched to use one-canvas icons for elfres example. + * Removed non-source build files from revision control. + * Moved the thumbnailer code to a separate "gnome-elf-thumbnailer" project. + * Now using the "MIT/X/Expat" License, considering the example nature of this portion of the project. 0.5.0: * Updated configure script to use pkg-config for libr. * Add support for GUI applications to call elfres/elficon with 'console parameters'. diff -Nru elfres-0.5.0~karmic/ChangeLog.debian elfres-0.6.0~karmic/ChangeLog.debian --- elfres-0.5.0~karmic/ChangeLog.debian 2009-12-01 18:30:44.000000000 +0000 +++ elfres-0.6.0~karmic/ChangeLog.debian 2011-03-06 05:49:25.000000000 +0000 @@ -1,4 +1,5 @@ -elfres (0.4.2) karmic; urgency=low +elfres (0.6.0~karmic) karmic; urgency=low * elfres Debian maintainer and upstream author are identical. Therefore see also normal changelog file for Debian changes. - -- Erich E. Hoover Thu, 10 Sep 2009 13:47:00 -0600 + -- Erich E. Hoover Sat, 05 Mar 2011 22:49:23 -0700 + diff -Nru elfres-0.5.0~karmic/configure elfres-0.6.0~karmic/configure --- elfres-0.5.0~karmic/configure 2010-05-03 04:05:34.000000000 +0000 +++ elfres-0.6.0~karmic/configure 2011-03-06 05:49:32.000000000 +0000 @@ -1,11 +1,11 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.65. +# Generated by GNU Autoconf 2.67. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software +# Foundation, Inc. # # # This configure script is free software; the Free Software Foundation @@ -316,7 +316,7 @@ test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p @@ -356,19 +356,19 @@ fi # as_fn_arith -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. +# script with STATUS, using 1 if that was 0. as_fn_error () { - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi - $as_echo "$as_me: error: $1" >&2 + $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error @@ -679,7 +679,7 @@ exec 6>&1 # Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` @@ -752,6 +752,8 @@ LIBGLADE_CFLAGS LIBR_LIBS LIBR_CFLAGS +PKG_CONFIG_LIBDIR +PKG_CONFIG_PATH PKG_CONFIG LIBTOOL_DEPS OTOOL64 @@ -903,6 +905,8 @@ CPPFLAGS CPP PKG_CONFIG +PKG_CONFIG_PATH +PKG_CONFIG_LIBDIR LIBR_CFLAGS LIBR_LIBS LIBGLADE_CFLAGS @@ -969,8 +973,9 @@ fi case $ac_option in - *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *) ac_optarg=yes ;; + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. @@ -1015,7 +1020,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" + as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1041,7 +1046,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" + as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1245,7 +1250,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" + as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1261,7 +1266,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" + as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1291,8 +1296,8 @@ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; - -*) as_fn_error "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information." + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" ;; *=*) @@ -1300,7 +1305,7 @@ # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error "invalid variable name: \`$ac_envvar'" ;; + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; @@ -1318,13 +1323,13 @@ if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error "missing argument to $ac_option" + as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; - fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi @@ -1347,7 +1352,7 @@ [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac - as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' @@ -1361,8 +1366,8 @@ if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe - $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 + $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi @@ -1377,9 +1382,9 @@ ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error "working directory cannot be determined" + as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error "pwd does not report name of working directory" + as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. @@ -1418,11 +1423,11 @@ fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then @@ -1462,7 +1467,7 @@ --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages + -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files @@ -1557,6 +1562,10 @@ you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility + PKG_CONFIG_PATH + directories to add to pkg-config's search path + PKG_CONFIG_LIBDIR + path overriding pkg-config's built-in search path LIBR_CFLAGS C compiler flags for LIBR, overriding pkg-config LIBR_LIBS linker flags for LIBR, overriding pkg-config LIBGLADE_CFLAGS @@ -1631,9 +1640,9 @@ if $ac_init_version; then cat <<\_ACEOF configure -generated by GNU Autoconf 2.65 +generated by GNU Autoconf 2.67 -Copyright (C) 2009 Free Software Foundation, Inc. +Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF @@ -1703,7 +1712,7 @@ mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } >/dev/null && { + test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : @@ -1816,7 +1825,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -1846,7 +1855,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -1909,7 +1918,7 @@ running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was -generated by GNU Autoconf 2.65. Invocation command line was +generated by GNU Autoconf 2.67. Invocation command line was $ $0 $@ @@ -2019,11 +2028,9 @@ { echo - cat <<\_ASBOX -## ---------------- ## + $as_echo "## ---------------- ## ## Cache variables. ## -## ---------------- ## -_ASBOX +## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( @@ -2057,11 +2064,9 @@ ) echo - cat <<\_ASBOX -## ----------------- ## + $as_echo "## ----------------- ## ## Output variables. ## -## ----------------- ## -_ASBOX +## ----------------- ##" echo for ac_var in $ac_subst_vars do @@ -2074,11 +2079,9 @@ echo if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------------- ## + $as_echo "## ------------------- ## ## File substitutions. ## -## ------------------- ## -_ASBOX +## ------------------- ##" echo for ac_var in $ac_subst_files do @@ -2092,11 +2095,9 @@ fi if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## + $as_echo "## ----------- ## ## confdefs.h. ## -## ----------- ## -_ASBOX +## ----------- ##" echo cat confdefs.h echo @@ -2151,7 +2152,12 @@ ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then - ac_site_file1=$CONFIG_SITE + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site @@ -2166,7 +2172,11 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5 ; } fi done @@ -2243,7 +2253,7 @@ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## @@ -2260,16 +2270,22 @@ ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do - for ac_t in install-sh install.sh shtool; do - if test -f "$ac_dir/$ac_t"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/$ac_t -c" - break 2 - fi - done + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi done if test -z "$ac_aux_dir"; then - as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 + as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, @@ -2385,11 +2401,11 @@ ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) - as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) - as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; + as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;; esac # Do `set' in a subshell so we don't clobber the current shell's @@ -2411,7 +2427,7 @@ # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". - as_fn_error "ls -t appears to fail. Make sure there is not a broken + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi @@ -2421,7 +2437,7 @@ # Ok. : else - as_fn_error "newly created file is older than distributed files! + as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 @@ -2659,7 +2675,7 @@ $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF @@ -2667,7 +2683,7 @@ all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF -# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; @@ -2701,7 +2717,7 @@ am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then - as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi @@ -2717,7 +2733,7 @@ # Define the identity of the package. PACKAGE=elfres - VERSION=0.5.0 + VERSION=0.6.0 cat >>confdefs.h <<_ACEOF @@ -2786,7 +2802,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: Ready for 64-bit compilation." >&5 $as_echo "$as_me: Ready for 64-bit compilation." >&6;}; else - as_fn_error "Target architecture ${ARCH} is invalid!" "$LINENO" 5; + as_fn_error $? "Target architecture ${ARCH} is invalid!" "$LINENO" 5 ; fi @@ -3093,8 +3109,8 @@ test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "no acceptable C compiler found in \$PATH -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5 ; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 @@ -3208,9 +3224,8 @@ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "C compiler cannot create executables -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "C compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5 ; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -3252,8 +3267,8 @@ else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5 ; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 @@ -3310,9 +3325,9 @@ else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot run C compiled programs. +as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. -See \`config.log' for more details." "$LINENO" 5; } +See \`config.log' for more details" "$LINENO" 5 ; } fi fi fi @@ -3363,8 +3378,8 @@ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of object files: cannot compile -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5 ; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi @@ -4109,7 +4124,7 @@ # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -4125,11 +4140,11 @@ ac_preproc_ok=: break fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext +rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi @@ -4168,7 +4183,7 @@ # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -4184,18 +4199,18 @@ ac_preproc_ok=: break fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext +rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5 ; } fi ac_ext=c @@ -4256,7 +4271,7 @@ done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then - as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP @@ -4322,7 +4337,7 @@ done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then - as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP @@ -4766,7 +4781,7 @@ # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } @@ -4777,16 +4792,16 @@ test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && - as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 + as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; -*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; +*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' @@ -4811,7 +4826,7 @@ ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi @@ -4819,7 +4834,7 @@ $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; -*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; +*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' @@ -4929,7 +4944,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi -test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if test "${acl_cv_prog_gnu_ld+set}" = set; then : @@ -5576,7 +5591,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 $as_echo_n "checking for GNU gettext in libc... " >&6; } -if { as_var=$gt_func_gnugettext_libc; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval "test \"\${$gt_func_gnugettext_libc+set}\"" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -6247,7 +6262,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 $as_echo_n "checking for GNU gettext in libintl... " >&6; } -if { as_var=$gt_func_gnugettext_libintl; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval "test \"\${$gt_func_gnugettext_libintl+set}\"" = set; then : $as_echo_n "(cached) " >&6 else gt_save_CPPFLAGS="$CPPFLAGS" @@ -6545,7 +6560,7 @@ done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then - as_fn_error "no acceptable sed could be found in \$PATH" "$LINENO" 5 + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED @@ -6624,7 +6639,7 @@ done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then - as_fn_error "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP @@ -6740,7 +6755,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi -test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if test "${lt_cv_prog_gnu_ld+set}" = set; then : @@ -6942,13 +6957,13 @@ else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:6945: $ac_compile\"" >&5) + (eval echo "\"\$as_me:6960: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 - (eval echo "\"\$as_me:6948: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval echo "\"\$as_me:6963: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 - (eval echo "\"\$as_me:6951: output\"" >&5) + (eval echo "\"\$as_me:6966: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" @@ -8153,7 +8168,7 @@ ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 8156 "configure"' > conftest.$ac_ext + echo '#line 8171 "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -8907,8 +8922,7 @@ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " -eval as_val=\$$as_ac_Header - if test "x$as_val" = x""yes; then : +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -9401,11 +9415,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9404: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9418: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:9408: \$? = $ac_status" >&5 + echo "$as_me:9422: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -9740,11 +9754,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9743: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9757: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:9747: \$? = $ac_status" >&5 + echo "$as_me:9761: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -9845,11 +9859,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9848: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9862: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:9852: \$? = $ac_status" >&5 + echo "$as_me:9866: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -9900,11 +9914,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9903: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9917: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:9907: \$? = $ac_status" >&5 + echo "$as_me:9921: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -12283,7 +12297,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12286 "configure" +#line 12300 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12379,7 +12393,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12382 "configure" +#line 12396 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12609,7 +12623,11 @@ # Make sure libr is installed -pkg_modules="libr >= 0.5.0" +pkg_modules="libr >= 0.4.0" + + + + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then @@ -12724,18 +12742,16 @@ $as_echo "no" >&6; } PKG_CONFIG="" fi - fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBR" >&5 $as_echo_n "checking for LIBR... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBR_CFLAGS"; then - pkg_cv_LIBR_CFLAGS="$LIBR_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBR_CFLAGS"; then + pkg_cv_LIBR_CFLAGS="$LIBR_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? @@ -12745,15 +12761,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBR_LIBS"; then - pkg_cv_LIBR_LIBS="$LIBR_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBR_LIBS"; then + pkg_cv_LIBR_LIBS="$LIBR_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? @@ -12763,14 +12777,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -12778,14 +12793,14 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBR_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$pkg_modules"` + LIBR_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$pkg_modules" 2>&1` else - LIBR_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$pkg_modules"` + LIBR_PKG_ERRORS=`$PKG_CONFIG --print-errors "$pkg_modules" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBR_PKG_ERRORS" >&5 - as_fn_error "Package requirements ($pkg_modules) were not met: + as_fn_error $? "Package requirements ($pkg_modules) were not met: $LIBR_PKG_ERRORS @@ -12794,12 +12809,13 @@ Alternatively, you may set the environment variables LIBR_CFLAGS and LIBR_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "The pkg-config script could not be found or is too old. Make sure it +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. @@ -12808,13 +12824,13 @@ See the pkg-config man page for more details. To get pkg-config, see . -See \`config.log' for more details." "$LINENO" 5; } +See \`config.log' for more details" "$LINENO" 5 ; } else LIBR_CFLAGS=$pkg_cv_LIBR_CFLAGS LIBR_LIBS=$pkg_cv_LIBR_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi ## Handle GUI configuration @@ -12840,11 +12856,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBGLADE" >&5 $as_echo_n "checking for LIBGLADE... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBGLADE_CFLAGS"; then - pkg_cv_LIBGLADE_CFLAGS="$LIBGLADE_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBGLADE_CFLAGS"; then + pkg_cv_LIBGLADE_CFLAGS="$LIBGLADE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? @@ -12854,15 +12869,13 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBGLADE_LIBS"; then - pkg_cv_LIBGLADE_LIBS="$LIBGLADE_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBGLADE_LIBS"; then + pkg_cv_LIBGLADE_LIBS="$LIBGLADE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? @@ -12872,14 +12885,15 @@ else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -12887,14 +12901,14 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBGLADE_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$pkg_modules"` + LIBGLADE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$pkg_modules" 2>&1` else - LIBGLADE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$pkg_modules"` + LIBGLADE_PKG_ERRORS=`$PKG_CONFIG --print-errors "$pkg_modules" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBGLADE_PKG_ERRORS" >&5 - as_fn_error "Package requirements ($pkg_modules) were not met: + as_fn_error $? "Package requirements ($pkg_modules) were not met: $LIBGLADE_PKG_ERRORS @@ -12903,12 +12917,13 @@ Alternatively, you may set the environment variables LIBGLADE_CFLAGS and LIBGLADE_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "The pkg-config script could not be found or is too old. Make sure it +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. @@ -12917,13 +12932,13 @@ See the pkg-config man page for more details. To get pkg-config, see . -See \`config.log' for more details." "$LINENO" 5; } +See \`config.log' for more details" "$LINENO" 5 ; } else LIBGLADE_CFLAGS=$pkg_cv_LIBGLADE_CFLAGS LIBGLADE_LIBS=$pkg_cv_LIBGLADE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi fi @@ -13051,6 +13066,7 @@ ac_libobjs= ac_ltlibobjs= +U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' @@ -13074,11 +13090,11 @@ fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - as_fn_error "conditional \"AMDEP\" was never defined. + as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - as_fn_error "conditional \"am__fastdepCC\" was never defined. + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi @@ -13228,19 +13244,19 @@ (unset CDPATH) >/dev/null 2>&1 && unset CDPATH -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. +# script with STATUS, using 1 if that was 0. as_fn_error () { - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi - $as_echo "$as_me: error: $1" >&2 + $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error @@ -13436,7 +13452,7 @@ test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p @@ -13490,7 +13506,7 @@ # values after options handling. ac_log=" This file was extended by $as_me, which was -generated by GNU Autoconf 2.65. Invocation command line was +generated by GNU Autoconf 2.67. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -13547,10 +13563,10 @@ ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ config.status -configured by $0, generated by GNU Autoconf 2.65, +configured by $0, generated by GNU Autoconf 2.67, with options \\"\$ac_cs_config\\" -Copyright (C) 2009 Free Software Foundation, Inc. +Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." @@ -13568,11 +13584,16 @@ while test $# != 0 do case $1 in - --*=*) + --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; *) ac_option=$1 ac_optarg=$2 @@ -13594,6 +13615,7 @@ $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; @@ -13604,7 +13626,7 @@ ac_cs_silent=: ;; # This is an error. - -*) as_fn_error "unrecognized option: \`$1' + -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" @@ -13927,7 +13949,7 @@ "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;; esac done @@ -13964,7 +13986,7 @@ { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") -} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. @@ -13981,7 +14003,7 @@ fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\r' + ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi @@ -13995,18 +14017,18 @@ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi @@ -14095,20 +14117,28 @@ else cat fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ - || as_fn_error "could not setup config files machinery" "$LINENO" 5 + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/ -s/:*\${srcdir}:*/:/ -s/:*@srcdir@:*/:/ -s/^\([^=]*=[ ]*\):*/\1/ + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// s/^[^=]*=[ ]*$// }' fi @@ -14126,7 +14156,7 @@ esac case $ac_mode$ac_tag in :[FHL]*:*);; - :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac @@ -14154,7 +14184,7 @@ [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || - as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" @@ -14181,7 +14211,7 @@ case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac @@ -14318,22 +14348,22 @@ $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&5 +which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&2;} +which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$tmp/stdin" case $ac_file in -) cat "$tmp/out" && rm -f "$tmp/out";; *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; esac \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; @@ -15197,7 +15227,7 @@ ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || - as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. @@ -15218,7 +15248,7 @@ exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit $? + $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 diff -Nru elfres-0.5.0~karmic/configure.ac elfres-0.6.0~karmic/configure.ac --- elfres-0.5.0~karmic/configure.ac 2010-05-03 04:00:59.000000000 +0000 +++ elfres-0.6.0~karmic/configure.ac 2011-03-05 20:50:32.000000000 +0000 @@ -1,5 +1,5 @@ AC_INIT(elfres.c) -AM_INIT_AUTOMAKE(elfres,0.5.0) +AM_INIT_AUTOMAKE(elfres,0.6.0) AC_CONFIG_SRCDIR([src/elfres.c]) ## Handle target architecture configuration @@ -51,7 +51,7 @@ AC_SUBST(LIBTOOL_DEPS) # Make sure libr is installed -pkg_modules="libr >= 0.5.0" +pkg_modules="libr >= 0.4.0" PKG_CHECK_MODULES(LIBR, [$pkg_modules]) ## Handle GUI configuration diff -Nru elfres-0.5.0~karmic/COPYING elfres-0.6.0~karmic/COPYING --- elfres-0.5.0~karmic/COPYING 2008-03-26 03:49:08.000000000 +0000 +++ elfres-0.6.0~karmic/COPYING 2011-03-05 18:33:06.000000000 +0000 @@ -1,339 +1,19 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 +Copyright (c) 2008-2011 Erich E. Hoover - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff -Nru elfres-0.5.0~karmic/COPYING.debian elfres-0.6.0~karmic/COPYING.debian --- elfres-0.5.0~karmic/COPYING.debian 2009-09-10 20:06:16.000000000 +0000 +++ elfres-0.6.0~karmic/COPYING.debian 2011-03-05 18:34:18.000000000 +0000 @@ -1,6 +1,6 @@ Copyright notice: - Copyright (c) 2008-2009, Erich Hoover + Copyright (c) 2008-2011, Erich E. Hoover - This package is licensed under the GPL v2, for further details see: - /usr/share/common-licenses/GPL-2 + This package is licensed under the "MIT" license, for further details see + the COPYING file included in this package. diff -Nru elfres-0.5.0~karmic/debian/changelog elfres-0.6.0~karmic/debian/changelog --- elfres-0.5.0~karmic/debian/changelog 2010-05-04 01:11:23.000000000 +0000 +++ elfres-0.6.0~karmic/debian/changelog 2011-03-06 05:49:25.000000000 +0000 @@ -1,4 +1,5 @@ -elfres (0.5.0~karmic) karmic; urgency=low +elfres (0.6.0~karmic) karmic; urgency=low * elfres Debian maintainer and upstream author are identical. Therefore see also normal changelog file for Debian changes. - -- Erich E. Hoover Mon, 03 May 2010 19:11:22 -0600 + -- Erich E. Hoover Sat, 05 Mar 2011 22:49:23 -0700 + diff -Nru elfres-0.5.0~karmic/debian/control elfres-0.6.0~karmic/debian/control --- elfres-0.5.0~karmic/debian/control 2010-05-03 05:00:01.000000000 +0000 +++ elfres-0.6.0~karmic/debian/control 2011-03-05 17:54:38.000000000 +0000 @@ -3,7 +3,7 @@ Priority: extra Maintainer: Erich E. Hoover Build-Depends: debhelper (>= 7), libtool, autotools-dev, pkg-config, - libglade2-dev, libr-dev (>> 0.4.2), gettext + libglade2-dev, libr-dev, gettext Standards-Version: 3.8.3 Homepage: http://www.compholio.com/elficon/ diff -Nru elfres-0.5.0~karmic/debian/dirs elfres-0.6.0~karmic/debian/dirs --- elfres-0.5.0~karmic/debian/dirs 2009-11-06 20:33:29.000000000 +0000 +++ elfres-0.6.0~karmic/debian/dirs 2011-03-05 19:05:31.000000000 +0000 @@ -1,3 +1,2 @@ usr/bin usr/sbin -usr/share/gconf/schemas diff -Nru elfres-0.5.0~karmic/debian/postinst elfres-0.6.0~karmic/debian/postinst --- elfres-0.5.0~karmic/debian/postinst 2009-11-11 04:04:46.000000000 +0000 +++ elfres-0.6.0~karmic/debian/postinst 2011-03-05 19:02:13.000000000 +0000 @@ -17,14 +17,8 @@ # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package -GCONF_SCHEMAS=`which gconf-schemas` -SCHEMADIR=/usr/share/gconf/schemas - case "$1" in configure) - echo "Registering ELF icon schema with GNOME..."; - ${GCONF_SCHEMAS} --register ${SCHEMADIR}/elf-exe-thumbnailer.schemas; - echo "Done."; ;; abort-upgrade|abort-remove|abort-deconfigure) diff -Nru elfres-0.5.0~karmic/debian/postrm.ex elfres-0.6.0~karmic/debian/postrm.ex --- elfres-0.5.0~karmic/debian/postrm.ex 2009-11-11 03:31:07.000000000 +0000 +++ elfres-0.6.0~karmic/debian/postrm.ex 2011-03-05 19:05:42.000000000 +0000 @@ -18,8 +18,6 @@ # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package -GCONF_SCHEMAS=`which gconf-schemas` - case "$1" in purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; diff -Nru elfres-0.5.0~karmic/debian/prerm elfres-0.6.0~karmic/debian/prerm --- elfres-0.5.0~karmic/debian/prerm 2009-11-11 03:34:55.000000000 +0000 +++ elfres-0.6.0~karmic/debian/prerm 2011-03-05 19:02:25.000000000 +0000 @@ -16,14 +16,8 @@ # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package -GCONF_SCHEMAS=`which gconf-schemas` -SCHEMADIR=/usr/share/gconf/schemas - case "$1" in remove) - echo "Unregistering ELF icon schema..."; - ${GCONF_SCHEMAS} --unregister ${SCHEMADIR}/elf-exe-thumbnailer.schemas; - echo "Done."; ;; upgrade|deconfigure) diff -Nru elfres-0.5.0~karmic/.deps/elficon.Po elfres-0.6.0~karmic/.deps/elficon.Po --- elfres-0.5.0~karmic/.deps/elficon.Po 2008-03-30 04:26:37.000000000 +0000 +++ elfres-0.6.0~karmic/.deps/elficon.Po 1970-01-01 00:00:00.000000000 +0000 @@ -1,1211 +0,0 @@ -elficon.o elficon.o: elficon.c /usr/local/include/libr.h \ - /usr/include/sys/types.h /usr/include/features.h \ - /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ - /usr/include/bits/types.h \ - /usr/lib/gcc/i486-linux-gnu/4.1.3/include/stddef.h \ - /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/sigset.h \ - /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/gtk-2.0/gtk/gtk.h \ - /usr/include/gtk-2.0/gdk/gdk.h /usr/include/gtk-2.0/gdk/gdkcairo.h \ - /usr/include/gtk-2.0/gdk/gdkcolor.h /usr/include/cairo/cairo.h \ - /usr/include/cairo/cairo-features.h \ - /usr/include/cairo/cairo-deprecated.h \ - /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/glib-2.0/glib.h \ - /usr/include/glib-2.0/glib/galloca.h \ - /usr/include/glib-2.0/glib/gtypes.h \ - /usr/lib/glib-2.0/include/glibconfig.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/lib/gcc/i486-linux-gnu/4.1.3/include/limits.h \ - /usr/lib/gcc/i486-linux-gnu/4.1.3/include/syslimits.h \ - /usr/include/limits.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h \ - /usr/lib/gcc/i486-linux-gnu/4.1.3/include/float.h \ - /usr/include/glib-2.0/glib/garray.h \ - /usr/include/glib-2.0/glib/gasyncqueue.h \ - /usr/include/glib-2.0/glib/gthread.h \ - /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ - /usr/include/glib-2.0/glib/gutils.h \ - /usr/lib/gcc/i486-linux-gnu/4.1.3/include/stdarg.h \ - /usr/include/glib-2.0/glib/gatomic.h \ - /usr/include/glib-2.0/glib/gbacktrace.h \ - /usr/include/glib-2.0/glib/gbase64.h \ - /usr/include/glib-2.0/glib/gbookmarkfile.h \ - /usr/include/glib-2.0/glib/gcache.h /usr/include/glib-2.0/glib/glist.h \ - /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gslice.h \ - /usr/include/glib-2.0/glib/gcompletion.h \ - /usr/include/glib-2.0/glib/gconvert.h \ - /usr/include/glib-2.0/glib/gdataset.h \ - /usr/include/glib-2.0/glib/gdate.h /usr/include/glib-2.0/glib/gdir.h \ - /usr/include/glib-2.0/glib/gfileutils.h \ - /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ - /usr/include/glib-2.0/glib/giochannel.h \ - /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gslist.h \ - /usr/include/glib-2.0/glib/gstring.h \ - /usr/include/glib-2.0/glib/gunicode.h \ - /usr/include/glib-2.0/glib/gkeyfile.h \ - /usr/include/glib-2.0/glib/gmappedfile.h \ - /usr/include/glib-2.0/glib/gmarkup.h \ - /usr/include/glib-2.0/glib/gmessages.h \ - /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ - /usr/include/glib-2.0/glib/gpattern.h \ - /usr/include/glib-2.0/glib/gprimes.h \ - /usr/include/glib-2.0/glib/gqsort.h /usr/include/glib-2.0/glib/gqueue.h \ - /usr/include/glib-2.0/glib/grand.h /usr/include/glib-2.0/glib/grel.h \ - /usr/include/glib-2.0/glib/gregex.h \ - /usr/include/glib-2.0/glib/gscanner.h \ - /usr/include/glib-2.0/glib/gsequence.h \ - /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ - /usr/include/glib-2.0/glib/gstrfuncs.h \ - /usr/include/glib-2.0/glib/gthreadpool.h \ - /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ - /usr/include/pango-1.0/pango/pango.h \ - /usr/include/pango-1.0/pango/pango-attributes.h \ - /usr/include/pango-1.0/pango/pango-font.h \ - /usr/include/pango-1.0/pango/pango-coverage.h \ - /usr/include/pango-1.0/pango/pango-types.h \ - /usr/include/glib-2.0/glib-object.h \ - /usr/include/glib-2.0/gobject/gboxed.h \ - /usr/include/glib-2.0/gobject/gtype.h \ - /usr/include/glib-2.0/gobject/genums.h \ - /usr/include/glib-2.0/gobject/gobject.h \ - /usr/include/glib-2.0/gobject/gvalue.h \ - /usr/include/glib-2.0/gobject/gparam.h \ - /usr/include/glib-2.0/gobject/gclosure.h \ - /usr/include/glib-2.0/gobject/gsignal.h \ - /usr/include/glib-2.0/gobject/gmarshal.h \ - /usr/include/glib-2.0/gobject/gparamspecs.h \ - /usr/include/glib-2.0/gobject/gsourceclosure.h \ - /usr/include/glib-2.0/gobject/gtypemodule.h \ - /usr/include/glib-2.0/gobject/gtypeplugin.h \ - /usr/include/glib-2.0/gobject/gvaluearray.h \ - /usr/include/glib-2.0/gobject/gvaluetypes.h \ - /usr/include/pango-1.0/pango/pango-gravity.h \ - /usr/include/pango-1.0/pango/pango-matrix.h \ - /usr/include/pango-1.0/pango/pango-script.h \ - /usr/include/pango-1.0/pango/pango-language.h \ - /usr/include/pango-1.0/pango/pango-break.h \ - /usr/include/pango-1.0/pango/pango-item.h \ - /usr/include/pango-1.0/pango/pango-context.h \ - /usr/include/pango-1.0/pango/pango-fontmap.h \ - /usr/include/pango-1.0/pango/pango-fontset.h \ - /usr/include/pango-1.0/pango/pango-engine.h \ - /usr/include/pango-1.0/pango/pango-glyph.h \ - /usr/include/pango-1.0/pango/pango-enum-types.h \ - /usr/include/pango-1.0/pango/pango-features.h \ - /usr/include/pango-1.0/pango/pango-glyph-item.h \ - /usr/include/pango-1.0/pango/pango-layout.h \ - /usr/include/pango-1.0/pango/pango-tabs.h \ - /usr/include/pango-1.0/pango/pango-renderer.h \ - /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/include/bits/wchar.h /usr/include/gconv.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ - /usr/include/gtk-2.0/gdk/gdkpixbuf.h /usr/include/gtk-2.0/gdk/gdkrgb.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ - /usr/include/glib-2.0/gmodule.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ - /usr/include/pango-1.0/pango/pangocairo.h \ - /usr/include/gtk-2.0/gdk/gdkcursor.h \ - /usr/include/gtk-2.0/gdk/gdkdisplay.h \ - /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkdnd.h \ - /usr/include/gtk-2.0/gdk/gdkinput.h \ - /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ - /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ - /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ - /usr/include/gtk-2.0/gdk/gdkkeys.h \ - /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ - /usr/include/gtk-2.0/gdk/gdkpango.h \ - /usr/include/gtk-2.0/gdk/gdkpixmap.h \ - /usr/include/gtk-2.0/gdk/gdkproperty.h \ - /usr/include/gtk-2.0/gdk/gdkregion.h \ - /usr/include/gtk-2.0/gdk/gdkscreen.h \ - /usr/include/gtk-2.0/gdk/gdkselection.h \ - /usr/include/gtk-2.0/gdk/gdkspawn.h \ - /usr/include/gtk-2.0/gdk/gdkvisual.h \ - /usr/include/gtk-2.0/gdk/gdkwindow.h \ - /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ - /usr/include/gtk-2.0/gtk/gtkdialog.h \ - /usr/include/gtk-2.0/gtk/gtkwindow.h \ - /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ - /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ - /usr/include/gtk-2.0/gtk/gtkcontainer.h \ - /usr/include/gtk-2.0/gtk/gtkwidget.h \ - /usr/include/gtk-2.0/gtk/gtkobject.h \ - /usr/include/gtk-2.0/gtk/gtktypeutils.h \ - /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ - /usr/include/gtk-2.0/gtk/gtkdebug.h \ - /usr/include/gtk-2.0/gtk/gtkadjustment.h \ - /usr/include/gtk-2.0/gtk/gtkstyle.h \ - /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ - /usr/include/atk-1.0/atk/atkobject.h \ - /usr/include/atk-1.0/atk/atkstate.h \ - /usr/include/atk-1.0/atk/atkrelationtype.h \ - /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ - /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ - /usr/include/gtk-2.0/gtk/gtkmenu.h \ - /usr/include/gtk-2.0/gtk/gtkmenushell.h \ - /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ - /usr/include/gtk-2.0/gtk/gtkaccessible.h /usr/include/atk-1.0/atk/atk.h \ - /usr/include/atk-1.0/atk/atkaction.h \ - /usr/include/atk-1.0/atk/atkcomponent.h \ - /usr/include/atk-1.0/atk/atkutil.h \ - /usr/include/atk-1.0/atk/atkdocument.h \ - /usr/include/atk-1.0/atk/atkeditabletext.h \ - /usr/include/atk-1.0/atk/atktext.h \ - /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ - /usr/include/atk-1.0/atk/atkhyperlink.h \ - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ - /usr/include/atk-1.0/atk/atkhypertext.h \ - /usr/include/atk-1.0/atk/atkimage.h \ - /usr/include/atk-1.0/atk/atknoopobject.h \ - /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkregistry.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkrelation.h \ - /usr/include/atk-1.0/atk/atkrelationset.h \ - /usr/include/atk-1.0/atk/atkselection.h \ - /usr/include/atk-1.0/atk/atkstateset.h \ - /usr/include/atk-1.0/atk/atkstreamablecontent.h \ - /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ - /usr/include/atk-1.0/atk/atkvalue.h \ - /usr/include/gtk-2.0/gtk/gtkaction.h \ - /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ - /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ - /usr/include/gtk-2.0/gtk/gtkalignment.h \ - /usr/include/gtk-2.0/gtk/gtkarrow.h \ - /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ - /usr/include/gtk-2.0/gtk/gtkframe.h \ - /usr/include/gtk-2.0/gtk/gtkassistant.h \ - /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ - /usr/include/gtk-2.0/gtk/gtkbindings.h \ - /usr/include/gtk-2.0/gtk/gtkbuildable.h \ - /usr/include/gtk-2.0/gtk/gtkbuilder.h \ - /usr/include/gtk-2.0/gtk/gtkbutton.h \ - /usr/include/gtk-2.0/gtk/gtkimage.h \ - /usr/include/gtk-2.0/gtk/gtkcalendar.h \ - /usr/include/gtk-2.0/gtk/gtksignal.h \ - /usr/include/gtk-2.0/gtk/gtkmarshal.h \ - /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ - /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ - /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ - /usr/include/gtk-2.0/gtk/gtktreemodel.h \ - /usr/include/gtk-2.0/gtk/gtktreesortable.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ - /usr/include/gtk-2.0/gtk/gtkcellview.h \ - /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ - /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ - /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkitem.h \ - /usr/include/gtk-2.0/gtk/gtkclipboard.h \ - /usr/include/gtk-2.0/gtk/gtkselection.h \ - /usr/include/gtk-2.0/gtk/gtktextiter.h \ - /usr/include/gtk-2.0/gtk/gtktexttag.h \ - /usr/include/gtk-2.0/gtk/gtktextchild.h \ - /usr/include/gtk-2.0/gtk/gtkclist.h \ - /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkrange.h \ - /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ - /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ - /usr/include/gtk-2.0/gtk/gtkvbox.h \ - /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ - /usr/include/gtk-2.0/gtk/gtkcombo.h /usr/include/gtk-2.0/gtk/gtkhbox.h \ - /usr/include/gtk-2.0/gtk/gtkcombobox.h \ - /usr/include/gtk-2.0/gtk/gtktreeview.h \ - /usr/include/gtk-2.0/gtk/gtkdnd.h /usr/include/gtk-2.0/gtk/gtkentry.h \ - /usr/include/gtk-2.0/gtk/gtkeditable.h \ - /usr/include/gtk-2.0/gtk/gtkimcontext.h \ - /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ - /usr/include/gtk-2.0/gtk/gtkliststore.h \ - /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ - /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ - /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ - /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ - /usr/include/gtk-2.0/gtk/gtkeventbox.h \ - /usr/include/gtk-2.0/gtk/gtkexpander.h \ - /usr/include/gtk-2.0/gtk/gtkfilesel.h \ - /usr/include/gtk-2.0/gtk/gtkfixed.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ - /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ - /usr/include/gtk-2.0/gtk/gtkfontsel.h \ - /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ - /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ - /usr/include/gtk-2.0/gtk/gtkhbbox.h \ - /usr/include/gtk-2.0/gtk/gtkhpaned.h \ - /usr/include/gtk-2.0/gtk/gtkpaned.h \ - /usr/include/gtk-2.0/gtk/gtkhruler.h \ - /usr/include/gtk-2.0/gtk/gtkruler.h \ - /usr/include/gtk-2.0/gtk/gtkhscale.h \ - /usr/include/gtk-2.0/gtk/gtkscale.h \ - /usr/include/gtk-2.0/gtk/gtkhseparator.h \ - /usr/include/gtk-2.0/gtk/gtkseparator.h \ - /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ - /usr/include/gtk-2.0/gtk/gtkicontheme.h \ - /usr/include/gtk-2.0/gtk/gtkiconview.h \ - /usr/include/gtk-2.0/gtk/gtktooltip.h \ - /usr/include/gtk-2.0/gtk/gtkwidget.h \ - /usr/include/gtk-2.0/gtk/gtkwindow.h \ - /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ - /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ - /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ - /usr/include/gtk-2.0/gtk/gtkinvisible.h \ - /usr/include/gtk-2.0/gtk/gtklayout.h \ - /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ - /usr/include/gtk-2.0/gtk/gtklist.h \ - /usr/include/gtk-2.0/gtk/gtklistitem.h \ - /usr/include/gtk-2.0/gtk/gtkmain.h \ - /usr/include/gtk-2.0/gtk/gtkmenubar.h \ - /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtkmenu.h \ - /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolitem.h \ - /usr/include/gtk-2.0/gtk/gtktooltips.h \ - /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ - /usr/include/gtk-2.0/gtk/gtkmodules.h \ - /usr/include/gtk-2.0/gtk/gtknotebook.h \ - /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ - /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ - /usr/include/gtk-2.0/gtk/gtkpixmap.h /usr/include/gtk-2.0/gtk/gtkplug.h \ - /usr/include/gtk-2.0/gtk/gtksocket.h \ - /usr/include/gtk-2.0/gtk/gtkpreview.h \ - /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ - /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkenums.h \ - /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ - /usr/include/gtk-2.0/gtk/gtkpapersize.h \ - /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ - /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ - /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ - /usr/include/gtk-2.0/gtk/gtkprogress.h \ - /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ - /usr/include/gtk-2.0/gtk/gtkradioaction.h \ - /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ - /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ - /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ - /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ - /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ - /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ - /usr/include/gtk-2.0/gtk/gtkviewport.h \ - /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ - /usr/include/gtk-2.0/gtk/gtksizegroup.h \ - /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ - /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ - /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ - /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ - /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtktext.h \ - /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ - /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ - /usr/include/gtk-2.0/gtk/gtktextmark.h \ - /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ - /usr/include/gtk-2.0/gtk/gtktextview.h \ - /usr/include/gtk-2.0/gtk/gtktipsquery.h \ - /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolbar.h \ - /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolitem.h \ - /usr/include/gtk-2.0/gtk/gtktree.h \ - /usr/include/gtk-2.0/gtk/gtktreednd.h \ - /usr/include/gtk-2.0/gtk/gtktreeitem.h \ - /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ - /usr/include/gtk-2.0/gtk/gtktreeselection.h \ - /usr/include/gtk-2.0/gtk/gtktreestore.h \ - /usr/include/gtk-2.0/gtk/gtkuimanager.h \ - /usr/include/gtk-2.0/gtk/gtkvbbox.h \ - /usr/include/gtk-2.0/gtk/gtkversion.h \ - /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ - /usr/include/gtk-2.0/gtk/gtkvpaned.h \ - /usr/include/gtk-2.0/gtk/gtkvruler.h \ - /usr/include/gtk-2.0/gtk/gtkvscale.h \ - /usr/include/gtk-2.0/gtk/gtkvseparator.h \ - /usr/include/libglade-2.0/glade/glade.h \ - /usr/include/libglade-2.0/glade/glade-init.h \ - /usr/include/libglade-2.0/glade/glade-xml.h /usr/include/sys/stat.h \ - /usr/include/bits/stat.h /usr/include/stdlib.h /usr/include/alloca.h \ - /usr/include/getopt.h /usr/include/string.h /usr/include/bits/string.h \ - /usr/include/bits/string2.h /usr/include/sysexits.h /usr/include/err.h - -/usr/local/include/libr.h: - -/usr/include/sys/types.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-32.h: - -/usr/include/bits/types.h: - -/usr/lib/gcc/i486-linux-gnu/4.1.3/include/stddef.h: - -/usr/include/bits/typesizes.h: - -/usr/include/time.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/time.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/gtk-2.0/gtk/gtk.h: - -/usr/include/gtk-2.0/gdk/gdk.h: - -/usr/include/gtk-2.0/gdk/gdkcairo.h: - -/usr/include/gtk-2.0/gdk/gdkcolor.h: - -/usr/include/cairo/cairo.h: - -/usr/include/cairo/cairo-features.h: - -/usr/include/cairo/cairo-deprecated.h: - -/usr/include/gtk-2.0/gdk/gdktypes.h: - -/usr/include/glib-2.0/glib.h: - -/usr/include/glib-2.0/glib/galloca.h: - -/usr/include/glib-2.0/glib/gtypes.h: - -/usr/lib/glib-2.0/include/glibconfig.h: - -/usr/include/glib-2.0/glib/gmacros.h: - -/usr/lib/gcc/i486-linux-gnu/4.1.3/include/limits.h: - -/usr/lib/gcc/i486-linux-gnu/4.1.3/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/lib/gcc/i486-linux-gnu/4.1.3/include/float.h: - -/usr/include/glib-2.0/glib/garray.h: - -/usr/include/glib-2.0/glib/gasyncqueue.h: - -/usr/include/glib-2.0/glib/gthread.h: - -/usr/include/glib-2.0/glib/gerror.h: - -/usr/include/glib-2.0/glib/gquark.h: - -/usr/include/glib-2.0/glib/gutils.h: - -/usr/lib/gcc/i486-linux-gnu/4.1.3/include/stdarg.h: - -/usr/include/glib-2.0/glib/gatomic.h: - -/usr/include/glib-2.0/glib/gbacktrace.h: - -/usr/include/glib-2.0/glib/gbase64.h: - -/usr/include/glib-2.0/glib/gbookmarkfile.h: - -/usr/include/glib-2.0/glib/gcache.h: - -/usr/include/glib-2.0/glib/glist.h: - -/usr/include/glib-2.0/glib/gmem.h: - -/usr/include/glib-2.0/glib/gslice.h: - -/usr/include/glib-2.0/glib/gcompletion.h: - -/usr/include/glib-2.0/glib/gconvert.h: - -/usr/include/glib-2.0/glib/gdataset.h: - -/usr/include/glib-2.0/glib/gdate.h: - -/usr/include/glib-2.0/glib/gdir.h: - -/usr/include/glib-2.0/glib/gfileutils.h: - -/usr/include/glib-2.0/glib/ghash.h: - -/usr/include/glib-2.0/glib/ghook.h: - -/usr/include/glib-2.0/glib/giochannel.h: - -/usr/include/glib-2.0/glib/gmain.h: - -/usr/include/glib-2.0/glib/gslist.h: - -/usr/include/glib-2.0/glib/gstring.h: - -/usr/include/glib-2.0/glib/gunicode.h: - -/usr/include/glib-2.0/glib/gkeyfile.h: - -/usr/include/glib-2.0/glib/gmappedfile.h: - -/usr/include/glib-2.0/glib/gmarkup.h: - -/usr/include/glib-2.0/glib/gmessages.h: - -/usr/include/glib-2.0/glib/gnode.h: - -/usr/include/glib-2.0/glib/goption.h: - -/usr/include/glib-2.0/glib/gpattern.h: - -/usr/include/glib-2.0/glib/gprimes.h: - -/usr/include/glib-2.0/glib/gqsort.h: - -/usr/include/glib-2.0/glib/gqueue.h: - -/usr/include/glib-2.0/glib/grand.h: - -/usr/include/glib-2.0/glib/grel.h: - -/usr/include/glib-2.0/glib/gregex.h: - -/usr/include/glib-2.0/glib/gscanner.h: - -/usr/include/glib-2.0/glib/gsequence.h: - -/usr/include/glib-2.0/glib/gshell.h: - -/usr/include/glib-2.0/glib/gspawn.h: - -/usr/include/glib-2.0/glib/gstrfuncs.h: - -/usr/include/glib-2.0/glib/gthreadpool.h: - -/usr/include/glib-2.0/glib/gtimer.h: - -/usr/include/glib-2.0/glib/gtree.h: - -/usr/include/pango-1.0/pango/pango.h: - -/usr/include/pango-1.0/pango/pango-attributes.h: - -/usr/include/pango-1.0/pango/pango-font.h: - -/usr/include/pango-1.0/pango/pango-coverage.h: - -/usr/include/pango-1.0/pango/pango-types.h: - -/usr/include/glib-2.0/glib-object.h: - -/usr/include/glib-2.0/gobject/gboxed.h: - -/usr/include/glib-2.0/gobject/gtype.h: - -/usr/include/glib-2.0/gobject/genums.h: - -/usr/include/glib-2.0/gobject/gobject.h: - -/usr/include/glib-2.0/gobject/gvalue.h: - -/usr/include/glib-2.0/gobject/gparam.h: - -/usr/include/glib-2.0/gobject/gclosure.h: - -/usr/include/glib-2.0/gobject/gsignal.h: - -/usr/include/glib-2.0/gobject/gmarshal.h: - -/usr/include/glib-2.0/gobject/gparamspecs.h: - -/usr/include/glib-2.0/gobject/gsourceclosure.h: - -/usr/include/glib-2.0/gobject/gtypemodule.h: - -/usr/include/glib-2.0/gobject/gtypeplugin.h: - -/usr/include/glib-2.0/gobject/gvaluearray.h: - -/usr/include/glib-2.0/gobject/gvaluetypes.h: - -/usr/include/pango-1.0/pango/pango-gravity.h: - -/usr/include/pango-1.0/pango/pango-matrix.h: - -/usr/include/pango-1.0/pango/pango-script.h: - -/usr/include/pango-1.0/pango/pango-language.h: - -/usr/include/pango-1.0/pango/pango-break.h: - -/usr/include/pango-1.0/pango/pango-item.h: - -/usr/include/pango-1.0/pango/pango-context.h: - -/usr/include/pango-1.0/pango/pango-fontmap.h: - -/usr/include/pango-1.0/pango/pango-fontset.h: - -/usr/include/pango-1.0/pango/pango-engine.h: - -/usr/include/pango-1.0/pango/pango-glyph.h: - -/usr/include/pango-1.0/pango/pango-enum-types.h: - -/usr/include/pango-1.0/pango/pango-features.h: - -/usr/include/pango-1.0/pango/pango-glyph-item.h: - -/usr/include/pango-1.0/pango/pango-layout.h: - -/usr/include/pango-1.0/pango/pango-tabs.h: - -/usr/include/pango-1.0/pango/pango-renderer.h: - -/usr/include/pango-1.0/pango/pango-utils.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/wchar.h: - -/usr/include/gconv.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/bits/stdio.h: - -/usr/lib/gtk-2.0/include/gdkconfig.h: - -/usr/include/gtk-2.0/gdk/gdkpixbuf.h: - -/usr/include/gtk-2.0/gdk/gdkrgb.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: - -/usr/include/glib-2.0/gmodule.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: - -/usr/include/pango-1.0/pango/pangocairo.h: - -/usr/include/gtk-2.0/gdk/gdkcursor.h: - -/usr/include/gtk-2.0/gdk/gdkdisplay.h: - -/usr/include/gtk-2.0/gdk/gdkevents.h: - -/usr/include/gtk-2.0/gdk/gdkdnd.h: - -/usr/include/gtk-2.0/gdk/gdkinput.h: - -/usr/include/gtk-2.0/gdk/gdkdrawable.h: - -/usr/include/gtk-2.0/gdk/gdkgc.h: - -/usr/include/gtk-2.0/gdk/gdkenumtypes.h: - -/usr/include/gtk-2.0/gdk/gdkfont.h: - -/usr/include/gtk-2.0/gdk/gdkimage.h: - -/usr/include/gtk-2.0/gdk/gdkkeys.h: - -/usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: - -/usr/include/gtk-2.0/gdk/gdkpango.h: - -/usr/include/gtk-2.0/gdk/gdkpixmap.h: - -/usr/include/gtk-2.0/gdk/gdkproperty.h: - -/usr/include/gtk-2.0/gdk/gdkregion.h: - -/usr/include/gtk-2.0/gdk/gdkscreen.h: - -/usr/include/gtk-2.0/gdk/gdkselection.h: - -/usr/include/gtk-2.0/gdk/gdkspawn.h: - -/usr/include/gtk-2.0/gdk/gdkvisual.h: - -/usr/include/gtk-2.0/gdk/gdkwindow.h: - -/usr/include/gtk-2.0/gtk/gtkaboutdialog.h: - -/usr/include/gtk-2.0/gtk/gtkdialog.h: - -/usr/include/gtk-2.0/gtk/gtkwindow.h: - -/usr/include/gtk-2.0/gtk/gtkaccelgroup.h: - -/usr/include/gtk-2.0/gtk/gtkenums.h: - -/usr/include/gtk-2.0/gtk/gtkbin.h: - -/usr/include/gtk-2.0/gtk/gtkcontainer.h: - -/usr/include/gtk-2.0/gtk/gtkwidget.h: - -/usr/include/gtk-2.0/gtk/gtkobject.h: - -/usr/include/gtk-2.0/gtk/gtktypeutils.h: - -/usr/include/gtk-2.0/gtk/gtktypebuiltins.h: - -/usr/include/gtk-2.0/gtk/gtkdebug.h: - -/usr/include/gtk-2.0/gtk/gtkadjustment.h: - -/usr/include/gtk-2.0/gtk/gtkstyle.h: - -/usr/include/gtk-2.0/gtk/gtksettings.h: - -/usr/include/gtk-2.0/gtk/gtkrc.h: - -/usr/include/atk-1.0/atk/atkobject.h: - -/usr/include/atk-1.0/atk/atkstate.h: - -/usr/include/atk-1.0/atk/atkrelationtype.h: - -/usr/include/gtk-2.0/gtk/gtkaccellabel.h: - -/usr/include/gtk-2.0/gtk/gtklabel.h: - -/usr/include/gtk-2.0/gtk/gtkmisc.h: - -/usr/include/gtk-2.0/gtk/gtkmenu.h: - -/usr/include/gtk-2.0/gtk/gtkmenushell.h: - -/usr/include/gtk-2.0/gtk/gtkaccelmap.h: - -/usr/include/gtk-2.0/gtk/gtkaccessible.h: - -/usr/include/atk-1.0/atk/atk.h: - -/usr/include/atk-1.0/atk/atkaction.h: - -/usr/include/atk-1.0/atk/atkcomponent.h: - -/usr/include/atk-1.0/atk/atkutil.h: - -/usr/include/atk-1.0/atk/atkdocument.h: - -/usr/include/atk-1.0/atk/atkeditabletext.h: - -/usr/include/atk-1.0/atk/atktext.h: - -/usr/include/atk-1.0/atk/atkgobjectaccessible.h: - -/usr/include/atk-1.0/atk/atkhyperlink.h: - -/usr/include/atk-1.0/atk/atkhyperlinkimpl.h: - -/usr/include/atk-1.0/atk/atkhypertext.h: - -/usr/include/atk-1.0/atk/atkimage.h: - -/usr/include/atk-1.0/atk/atknoopobject.h: - -/usr/include/atk-1.0/atk/atknoopobjectfactory.h: - -/usr/include/atk-1.0/atk/atkobjectfactory.h: - -/usr/include/atk-1.0/atk/atkregistry.h: - -/usr/include/atk-1.0/atk/atkobjectfactory.h: - -/usr/include/atk-1.0/atk/atkrelation.h: - -/usr/include/atk-1.0/atk/atkrelationset.h: - -/usr/include/atk-1.0/atk/atkselection.h: - -/usr/include/atk-1.0/atk/atkstateset.h: - -/usr/include/atk-1.0/atk/atkstreamablecontent.h: - -/usr/include/atk-1.0/atk/atktable.h: - -/usr/include/atk-1.0/atk/atkmisc.h: - -/usr/include/atk-1.0/atk/atkvalue.h: - -/usr/include/gtk-2.0/gtk/gtkaction.h: - -/usr/include/gtk-2.0/gtk/gtkactiongroup.h: - -/usr/include/gtk-2.0/gtk/gtkitemfactory.h: - -/usr/include/gtk-2.0/gtk/gtkalignment.h: - -/usr/include/gtk-2.0/gtk/gtkarrow.h: - -/usr/include/gtk-2.0/gtk/gtkaspectframe.h: - -/usr/include/gtk-2.0/gtk/gtkframe.h: - -/usr/include/gtk-2.0/gtk/gtkassistant.h: - -/usr/include/gtk-2.0/gtk/gtkbbox.h: - -/usr/include/gtk-2.0/gtk/gtkbox.h: - -/usr/include/gtk-2.0/gtk/gtkbindings.h: - -/usr/include/gtk-2.0/gtk/gtkbuildable.h: - -/usr/include/gtk-2.0/gtk/gtkbuilder.h: - -/usr/include/gtk-2.0/gtk/gtkbutton.h: - -/usr/include/gtk-2.0/gtk/gtkimage.h: - -/usr/include/gtk-2.0/gtk/gtkcalendar.h: - -/usr/include/gtk-2.0/gtk/gtksignal.h: - -/usr/include/gtk-2.0/gtk/gtkmarshal.h: - -/usr/include/gtk-2.0/gtk/gtkcelllayout.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderer.h: - -/usr/include/gtk-2.0/gtk/gtkcelleditable.h: - -/usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: - -/usr/include/gtk-2.0/gtk/gtktreemodel.h: - -/usr/include/gtk-2.0/gtk/gtktreesortable.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: - -/usr/include/gtk-2.0/gtk/gtkcellview.h: - -/usr/include/gtk-2.0/gtk/gtkcheckbutton.h: - -/usr/include/gtk-2.0/gtk/gtktogglebutton.h: - -/usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkitem.h: - -/usr/include/gtk-2.0/gtk/gtkclipboard.h: - -/usr/include/gtk-2.0/gtk/gtkselection.h: - -/usr/include/gtk-2.0/gtk/gtktextiter.h: - -/usr/include/gtk-2.0/gtk/gtktexttag.h: - -/usr/include/gtk-2.0/gtk/gtktextchild.h: - -/usr/include/gtk-2.0/gtk/gtkclist.h: - -/usr/include/gtk-2.0/gtk/gtkhscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkrange.h: - -/usr/include/gtk-2.0/gtk/gtkvscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkcolorbutton.h: - -/usr/include/gtk-2.0/gtk/gtkcolorsel.h: - -/usr/include/gtk-2.0/gtk/gtkvbox.h: - -/usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: - -/usr/include/gtk-2.0/gtk/gtkcombo.h: - -/usr/include/gtk-2.0/gtk/gtkhbox.h: - -/usr/include/gtk-2.0/gtk/gtkcombobox.h: - -/usr/include/gtk-2.0/gtk/gtktreeview.h: - -/usr/include/gtk-2.0/gtk/gtkdnd.h: - -/usr/include/gtk-2.0/gtk/gtkentry.h: - -/usr/include/gtk-2.0/gtk/gtkeditable.h: - -/usr/include/gtk-2.0/gtk/gtkimcontext.h: - -/usr/include/gtk-2.0/gtk/gtkentrycompletion.h: - -/usr/include/gtk-2.0/gtk/gtkliststore.h: - -/usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: - -/usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: - -/usr/include/gtk-2.0/gtk/gtkctree.h: - -/usr/include/gtk-2.0/gtk/gtkcurve.h: - -/usr/include/gtk-2.0/gtk/gtkdrawingarea.h: - -/usr/include/gtk-2.0/gtk/gtkeventbox.h: - -/usr/include/gtk-2.0/gtk/gtkexpander.h: - -/usr/include/gtk-2.0/gtk/gtkfilesel.h: - -/usr/include/gtk-2.0/gtk/gtkfixed.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooser.h: - -/usr/include/gtk-2.0/gtk/gtkfilefilter.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooser.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: - -/usr/include/gtk-2.0/gtk/gtkfontbutton.h: - -/usr/include/gtk-2.0/gtk/gtkfontsel.h: - -/usr/include/gtk-2.0/gtk/gtkgamma.h: - -/usr/include/gtk-2.0/gtk/gtkgc.h: - -/usr/include/gtk-2.0/gtk/gtkhandlebox.h: - -/usr/include/gtk-2.0/gtk/gtkhbbox.h: - -/usr/include/gtk-2.0/gtk/gtkhpaned.h: - -/usr/include/gtk-2.0/gtk/gtkpaned.h: - -/usr/include/gtk-2.0/gtk/gtkhruler.h: - -/usr/include/gtk-2.0/gtk/gtkruler.h: - -/usr/include/gtk-2.0/gtk/gtkhscale.h: - -/usr/include/gtk-2.0/gtk/gtkscale.h: - -/usr/include/gtk-2.0/gtk/gtkhseparator.h: - -/usr/include/gtk-2.0/gtk/gtkseparator.h: - -/usr/include/gtk-2.0/gtk/gtkiconfactory.h: - -/usr/include/gtk-2.0/gtk/gtkicontheme.h: - -/usr/include/gtk-2.0/gtk/gtkiconview.h: - -/usr/include/gtk-2.0/gtk/gtktooltip.h: - -/usr/include/gtk-2.0/gtk/gtkwidget.h: - -/usr/include/gtk-2.0/gtk/gtkwindow.h: - -/usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: - -/usr/include/gtk-2.0/gtk/gtkimmulticontext.h: - -/usr/include/gtk-2.0/gtk/gtkinputdialog.h: - -/usr/include/gtk-2.0/gtk/gtkinvisible.h: - -/usr/include/gtk-2.0/gtk/gtklayout.h: - -/usr/include/gtk-2.0/gtk/gtklinkbutton.h: - -/usr/include/gtk-2.0/gtk/gtklist.h: - -/usr/include/gtk-2.0/gtk/gtklistitem.h: - -/usr/include/gtk-2.0/gtk/gtkmain.h: - -/usr/include/gtk-2.0/gtk/gtkmenubar.h: - -/usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtkmenu.h: - -/usr/include/gtk-2.0/gtk/gtktoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolitem.h: - -/usr/include/gtk-2.0/gtk/gtktooltips.h: - -/usr/include/gtk-2.0/gtk/gtkmessagedialog.h: - -/usr/include/gtk-2.0/gtk/gtkmodules.h: - -/usr/include/gtk-2.0/gtk/gtknotebook.h: - -/usr/include/gtk-2.0/gtk/gtkoldeditable.h: - -/usr/include/gtk-2.0/gtk/gtkoptionmenu.h: - -/usr/include/gtk-2.0/gtk/gtkpixmap.h: - -/usr/include/gtk-2.0/gtk/gtkplug.h: - -/usr/include/gtk-2.0/gtk/gtksocket.h: - -/usr/include/gtk-2.0/gtk/gtkpreview.h: - -/usr/include/gtk-2.0/gtk/gtkprintoperation.h: - -/usr/include/gtk-2.0/gtk/gtkmain.h: - -/usr/include/gtk-2.0/gtk/gtkenums.h: - -/usr/include/gtk-2.0/gtk/gtkpagesetup.h: - -/usr/include/gtk-2.0/gtk/gtkpapersize.h: - -/usr/include/gtk-2.0/gtk/gtkprintsettings.h: - -/usr/include/gtk-2.0/gtk/gtkprintcontext.h: - -/usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: - -/usr/include/gtk-2.0/gtk/gtkprogress.h: - -/usr/include/gtk-2.0/gtk/gtkprogressbar.h: - -/usr/include/gtk-2.0/gtk/gtkradioaction.h: - -/usr/include/gtk-2.0/gtk/gtktoggleaction.h: - -/usr/include/gtk-2.0/gtk/gtkradiobutton.h: - -/usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtkrecentaction.h: - -/usr/include/gtk-2.0/gtk/gtkrecentmanager.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooser.h: - -/usr/include/gtk-2.0/gtk/gtkrecentmanager.h: - -/usr/include/gtk-2.0/gtk/gtkrecentfilter.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooser.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: - -/usr/include/gtk-2.0/gtk/gtkrecentfilter.h: - -/usr/include/gtk-2.0/gtk/gtkscalebutton.h: - -/usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: - -/usr/include/gtk-2.0/gtk/gtkviewport.h: - -/usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: - -/usr/include/gtk-2.0/gtk/gtksizegroup.h: - -/usr/include/gtk-2.0/gtk/gtkspinbutton.h: - -/usr/include/gtk-2.0/gtk/gtkstatusbar.h: - -/usr/include/gtk-2.0/gtk/gtkstatusicon.h: - -/usr/include/gtk-2.0/gtk/gtkstock.h: - -/usr/include/gtk-2.0/gtk/gtktable.h: - -/usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtktext.h: - -/usr/include/gtk-2.0/gtk/gtktextbuffer.h: - -/usr/include/gtk-2.0/gtk/gtktexttagtable.h: - -/usr/include/gtk-2.0/gtk/gtktextmark.h: - -/usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: - -/usr/include/gtk-2.0/gtk/gtktextview.h: - -/usr/include/gtk-2.0/gtk/gtktipsquery.h: - -/usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolbar.h: - -/usr/include/gtk-2.0/gtk/gtktoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolitem.h: - -/usr/include/gtk-2.0/gtk/gtktree.h: - -/usr/include/gtk-2.0/gtk/gtktreednd.h: - -/usr/include/gtk-2.0/gtk/gtktreeitem.h: - -/usr/include/gtk-2.0/gtk/gtktreemodelsort.h: - -/usr/include/gtk-2.0/gtk/gtktreeselection.h: - -/usr/include/gtk-2.0/gtk/gtktreestore.h: - -/usr/include/gtk-2.0/gtk/gtkuimanager.h: - -/usr/include/gtk-2.0/gtk/gtkvbbox.h: - -/usr/include/gtk-2.0/gtk/gtkversion.h: - -/usr/include/gtk-2.0/gtk/gtkvolumebutton.h: - -/usr/include/gtk-2.0/gtk/gtkvpaned.h: - -/usr/include/gtk-2.0/gtk/gtkvruler.h: - -/usr/include/gtk-2.0/gtk/gtkvscale.h: - -/usr/include/gtk-2.0/gtk/gtkvseparator.h: - -/usr/include/libglade-2.0/glade/glade.h: - -/usr/include/libglade-2.0/glade/glade-init.h: - -/usr/include/libglade-2.0/glade/glade-xml.h: - -/usr/include/sys/stat.h: - -/usr/include/bits/stat.h: - -/usr/include/stdlib.h: - -/usr/include/alloca.h: - -/usr/include/getopt.h: - -/usr/include/string.h: - -/usr/include/bits/string.h: - -/usr/include/bits/string2.h: - -/usr/include/sysexits.h: - -/usr/include/err.h: diff -Nru elfres-0.5.0~karmic/.deps/elfrc_gui.Po elfres-0.6.0~karmic/.deps/elfrc_gui.Po --- elfres-0.5.0~karmic/.deps/elfrc_gui.Po 2008-11-16 21:27:34.000000000 +0000 +++ elfres-0.6.0~karmic/.deps/elfrc_gui.Po 1970-01-01 00:00:00.000000000 +0000 @@ -1,1213 +0,0 @@ -elfrc_gui.o elfrc_gui.o: elfrc_gui.c /usr/include/gtk-2.0/gtk/gtk.h \ - /usr/include/gtk-2.0/gdk/gdk.h /usr/include/gtk-2.0/gdk/gdkcairo.h \ - /usr/include/gtk-2.0/gdk/gdkcolor.h /usr/include/cairo/cairo.h \ - /usr/include/cairo/cairo-features.h \ - /usr/include/cairo/cairo-deprecated.h \ - /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/glib-2.0/glib.h \ - /usr/include/glib-2.0/glib/galloca.h \ - /usr/include/glib-2.0/glib/gtypes.h \ - /usr/lib/glib-2.0/include/glibconfig.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/lib/gcc/i486-linux-gnu/4.2.4/include/stddef.h \ - /usr/lib/gcc/i486-linux-gnu/4.2.4/include/limits.h \ - /usr/lib/gcc/i486-linux-gnu/4.2.4/include/syslimits.h \ - /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h \ - /usr/lib/gcc/i486-linux-gnu/4.2.4/include/float.h \ - /usr/include/glib-2.0/glib/garray.h \ - /usr/include/glib-2.0/glib/gasyncqueue.h \ - /usr/include/glib-2.0/glib/gthread.h \ - /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ - /usr/include/glib-2.0/glib/gutils.h \ - /usr/lib/gcc/i486-linux-gnu/4.2.4/include/stdarg.h \ - /usr/include/glib-2.0/glib/gatomic.h \ - /usr/include/glib-2.0/glib/gbacktrace.h \ - /usr/include/glib-2.0/glib/gbase64.h \ - /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/time.h \ - /usr/include/bits/time.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/glib-2.0/glib/gcache.h \ - /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ - /usr/include/glib-2.0/glib/gslice.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/gcompletion.h \ - /usr/include/glib-2.0/glib/gconvert.h \ - /usr/include/glib-2.0/glib/gdataset.h \ - /usr/include/glib-2.0/glib/gdate.h /usr/include/glib-2.0/glib/gdir.h \ - /usr/include/glib-2.0/glib/gfileutils.h \ - /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ - /usr/include/glib-2.0/glib/giochannel.h \ - /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gslist.h \ - /usr/include/glib-2.0/glib/gstring.h \ - /usr/include/glib-2.0/glib/gunicode.h \ - /usr/include/glib-2.0/glib/gkeyfile.h \ - /usr/include/glib-2.0/glib/gmappedfile.h \ - /usr/include/glib-2.0/glib/gmarkup.h \ - /usr/include/glib-2.0/glib/gmessages.h \ - /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ - /usr/include/glib-2.0/glib/gpattern.h \ - /usr/include/glib-2.0/glib/gprimes.h \ - /usr/include/glib-2.0/glib/gqsort.h /usr/include/glib-2.0/glib/gqueue.h \ - /usr/include/glib-2.0/glib/grand.h /usr/include/glib-2.0/glib/grel.h \ - /usr/include/glib-2.0/glib/gregex.h \ - /usr/include/glib-2.0/glib/gscanner.h \ - /usr/include/glib-2.0/glib/gsequence.h \ - /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ - /usr/include/glib-2.0/glib/gstrfuncs.h \ - /usr/include/glib-2.0/glib/gtestutils.h \ - /usr/include/glib-2.0/glib/gthreadpool.h \ - /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ - /usr/include/glib-2.0/glib/gurifuncs.h \ - /usr/include/pango-1.0/pango/pango.h \ - /usr/include/pango-1.0/pango/pango-attributes.h \ - /usr/include/pango-1.0/pango/pango-font.h \ - /usr/include/pango-1.0/pango/pango-coverage.h \ - /usr/include/pango-1.0/pango/pango-types.h \ - /usr/include/glib-2.0/glib-object.h \ - /usr/include/glib-2.0/gobject/gboxed.h \ - /usr/include/glib-2.0/gobject/gtype.h \ - /usr/include/glib-2.0/gobject/genums.h \ - /usr/include/glib-2.0/gobject/gobject.h \ - /usr/include/glib-2.0/gobject/gvalue.h \ - /usr/include/glib-2.0/gobject/gparam.h \ - /usr/include/glib-2.0/gobject/gclosure.h \ - /usr/include/glib-2.0/gobject/gsignal.h \ - /usr/include/glib-2.0/gobject/gmarshal.h \ - /usr/include/glib-2.0/gobject/gparamspecs.h \ - /usr/include/glib-2.0/gobject/gsourceclosure.h \ - /usr/include/glib-2.0/gobject/gtypemodule.h \ - /usr/include/glib-2.0/gobject/gtypeplugin.h \ - /usr/include/glib-2.0/gobject/gvaluearray.h \ - /usr/include/glib-2.0/gobject/gvaluetypes.h \ - /usr/include/pango-1.0/pango/pango-gravity.h \ - /usr/include/pango-1.0/pango/pango-matrix.h \ - /usr/include/pango-1.0/pango/pango-script.h \ - /usr/include/pango-1.0/pango/pango-language.h \ - /usr/include/pango-1.0/pango/pango-break.h \ - /usr/include/pango-1.0/pango/pango-item.h \ - /usr/include/pango-1.0/pango/pango-context.h \ - /usr/include/pango-1.0/pango/pango-fontmap.h \ - /usr/include/pango-1.0/pango/pango-fontset.h \ - /usr/include/pango-1.0/pango/pango-engine.h \ - /usr/include/pango-1.0/pango/pango-glyph.h \ - /usr/include/pango-1.0/pango/pango-enum-types.h \ - /usr/include/pango-1.0/pango/pango-features.h \ - /usr/include/pango-1.0/pango/pango-glyph-item.h \ - /usr/include/pango-1.0/pango/pango-layout.h \ - /usr/include/pango-1.0/pango/pango-tabs.h \ - /usr/include/pango-1.0/pango/pango-renderer.h \ - /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ - /usr/include/gtk-2.0/gdk/gdkpixbuf.h /usr/include/gtk-2.0/gdk/gdkrgb.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ - /usr/include/glib-2.0/gmodule.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ - /usr/include/pango-1.0/pango/pangocairo.h \ - /usr/include/gtk-2.0/gdk/gdkcursor.h \ - /usr/include/gtk-2.0/gdk/gdkdisplay.h \ - /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkdnd.h \ - /usr/include/gtk-2.0/gdk/gdkinput.h \ - /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ - /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ - /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ - /usr/include/gtk-2.0/gdk/gdkkeys.h \ - /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ - /usr/include/gtk-2.0/gdk/gdkpango.h \ - /usr/include/gtk-2.0/gdk/gdkpixmap.h \ - /usr/include/gtk-2.0/gdk/gdkproperty.h \ - /usr/include/gtk-2.0/gdk/gdkregion.h \ - /usr/include/gtk-2.0/gdk/gdkscreen.h \ - /usr/include/gtk-2.0/gdk/gdkselection.h \ - /usr/include/gtk-2.0/gdk/gdkspawn.h \ - /usr/include/gtk-2.0/gdk/gdkvisual.h \ - /usr/include/gtk-2.0/gdk/gdkwindow.h \ - /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ - /usr/include/gtk-2.0/gtk/gtkdialog.h \ - /usr/include/gtk-2.0/gtk/gtkwindow.h \ - /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ - /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ - /usr/include/gtk-2.0/gtk/gtkcontainer.h \ - /usr/include/gtk-2.0/gtk/gtkwidget.h \ - /usr/include/gtk-2.0/gtk/gtkobject.h \ - /usr/include/gtk-2.0/gtk/gtktypeutils.h \ - /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ - /usr/include/gtk-2.0/gtk/gtkdebug.h \ - /usr/include/gtk-2.0/gtk/gtkadjustment.h \ - /usr/include/gtk-2.0/gtk/gtkstyle.h \ - /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ - /usr/include/atk-1.0/atk/atkobject.h \ - /usr/include/atk-1.0/atk/atkstate.h \ - /usr/include/atk-1.0/atk/atkrelationtype.h \ - /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ - /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ - /usr/include/gtk-2.0/gtk/gtkmenu.h \ - /usr/include/gtk-2.0/gtk/gtkmenushell.h \ - /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ - /usr/include/gtk-2.0/gtk/gtkaccessible.h /usr/include/atk-1.0/atk/atk.h \ - /usr/include/atk-1.0/atk/atkaction.h \ - /usr/include/atk-1.0/atk/atkcomponent.h \ - /usr/include/atk-1.0/atk/atkutil.h \ - /usr/include/atk-1.0/atk/atkdocument.h \ - /usr/include/atk-1.0/atk/atkeditabletext.h \ - /usr/include/atk-1.0/atk/atktext.h \ - /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ - /usr/include/atk-1.0/atk/atkhyperlink.h \ - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ - /usr/include/atk-1.0/atk/atkhypertext.h \ - /usr/include/atk-1.0/atk/atkimage.h \ - /usr/include/atk-1.0/atk/atknoopobject.h \ - /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkregistry.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkrelation.h \ - /usr/include/atk-1.0/atk/atkrelationset.h \ - /usr/include/atk-1.0/atk/atkselection.h \ - /usr/include/atk-1.0/atk/atkstateset.h \ - /usr/include/atk-1.0/atk/atkstreamablecontent.h \ - /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ - /usr/include/atk-1.0/atk/atkvalue.h \ - /usr/include/gtk-2.0/gtk/gtkaction.h \ - /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ - /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ - /usr/include/gtk-2.0/gtk/gtkalignment.h \ - /usr/include/gtk-2.0/gtk/gtkarrow.h \ - /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ - /usr/include/gtk-2.0/gtk/gtkframe.h \ - /usr/include/gtk-2.0/gtk/gtkassistant.h \ - /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ - /usr/include/gtk-2.0/gtk/gtkbindings.h \ - /usr/include/gtk-2.0/gtk/gtkbuildable.h \ - /usr/include/gtk-2.0/gtk/gtkbuilder.h \ - /usr/include/gtk-2.0/gtk/gtkbutton.h \ - /usr/include/gtk-2.0/gtk/gtkimage.h \ - /usr/include/gtk-2.0/gtk/gtkcalendar.h \ - /usr/include/gtk-2.0/gtk/gtksignal.h \ - /usr/include/gtk-2.0/gtk/gtkmarshal.h \ - /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ - /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ - /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ - /usr/include/gtk-2.0/gtk/gtktreemodel.h \ - /usr/include/gtk-2.0/gtk/gtktreesortable.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ - /usr/include/gtk-2.0/gtk/gtkcellview.h \ - /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ - /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ - /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkitem.h \ - /usr/include/gtk-2.0/gtk/gtkclipboard.h \ - /usr/include/gtk-2.0/gtk/gtkselection.h \ - /usr/include/gtk-2.0/gtk/gtktextiter.h \ - /usr/include/gtk-2.0/gtk/gtktexttag.h \ - /usr/include/gtk-2.0/gtk/gtktextchild.h \ - /usr/include/gtk-2.0/gtk/gtkclist.h \ - /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkrange.h \ - /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ - /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ - /usr/include/gtk-2.0/gtk/gtkvbox.h \ - /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ - /usr/include/gtk-2.0/gtk/gtkcombo.h /usr/include/gtk-2.0/gtk/gtkhbox.h \ - /usr/include/gtk-2.0/gtk/gtkcombobox.h \ - /usr/include/gtk-2.0/gtk/gtktreeview.h \ - /usr/include/gtk-2.0/gtk/gtkdnd.h /usr/include/gtk-2.0/gtk/gtkentry.h \ - /usr/include/gtk-2.0/gtk/gtkeditable.h \ - /usr/include/gtk-2.0/gtk/gtkimcontext.h \ - /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ - /usr/include/gtk-2.0/gtk/gtkliststore.h \ - /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ - /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ - /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ - /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ - /usr/include/gtk-2.0/gtk/gtkeventbox.h \ - /usr/include/gtk-2.0/gtk/gtkexpander.h \ - /usr/include/gtk-2.0/gtk/gtkfilesel.h \ - /usr/include/gtk-2.0/gtk/gtkfixed.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ - /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ - /usr/include/gtk-2.0/gtk/gtkfontsel.h \ - /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ - /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ - /usr/include/gtk-2.0/gtk/gtkhbbox.h \ - /usr/include/gtk-2.0/gtk/gtkhpaned.h \ - /usr/include/gtk-2.0/gtk/gtkpaned.h \ - /usr/include/gtk-2.0/gtk/gtkhruler.h \ - /usr/include/gtk-2.0/gtk/gtkruler.h \ - /usr/include/gtk-2.0/gtk/gtkhscale.h \ - /usr/include/gtk-2.0/gtk/gtkscale.h \ - /usr/include/gtk-2.0/gtk/gtkhseparator.h \ - /usr/include/gtk-2.0/gtk/gtkseparator.h \ - /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ - /usr/include/gtk-2.0/gtk/gtkicontheme.h \ - /usr/include/gtk-2.0/gtk/gtkiconview.h \ - /usr/include/gtk-2.0/gtk/gtktooltip.h \ - /usr/include/gtk-2.0/gtk/gtkwidget.h \ - /usr/include/gtk-2.0/gtk/gtkwindow.h \ - /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ - /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ - /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ - /usr/include/gtk-2.0/gtk/gtkinvisible.h \ - /usr/include/gtk-2.0/gtk/gtklayout.h \ - /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ - /usr/include/gtk-2.0/gtk/gtklist.h \ - /usr/include/gtk-2.0/gtk/gtklistitem.h \ - /usr/include/gtk-2.0/gtk/gtkmain.h \ - /usr/include/gtk-2.0/gtk/gtkmenubar.h \ - /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtkmenu.h \ - /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolitem.h \ - /usr/include/gtk-2.0/gtk/gtktooltips.h \ - /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ - /usr/include/gtk-2.0/gtk/gtkmodules.h \ - /usr/include/gtk-2.0/gtk/gtknotebook.h \ - /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ - /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ - /usr/include/gtk-2.0/gtk/gtkpixmap.h /usr/include/gtk-2.0/gtk/gtkplug.h \ - /usr/include/gtk-2.0/gtk/gtksocket.h \ - /usr/include/gtk-2.0/gtk/gtkpreview.h \ - /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ - /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkenums.h \ - /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ - /usr/include/gtk-2.0/gtk/gtkpapersize.h \ - /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ - /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ - /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ - /usr/include/gtk-2.0/gtk/gtkprogress.h \ - /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ - /usr/include/gtk-2.0/gtk/gtkradioaction.h \ - /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ - /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ - /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ - /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ - /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ - /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ - /usr/include/gtk-2.0/gtk/gtkviewport.h \ - /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ - /usr/include/gtk-2.0/gtk/gtksizegroup.h \ - /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ - /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ - /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ - /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ - /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtktext.h \ - /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ - /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ - /usr/include/gtk-2.0/gtk/gtktextmark.h \ - /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ - /usr/include/gtk-2.0/gtk/gtktextview.h \ - /usr/include/gtk-2.0/gtk/gtktipsquery.h \ - /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolbar.h \ - /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolitem.h \ - /usr/include/gtk-2.0/gtk/gtktree.h \ - /usr/include/gtk-2.0/gtk/gtktreednd.h \ - /usr/include/gtk-2.0/gtk/gtktreeitem.h \ - /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ - /usr/include/gtk-2.0/gtk/gtktreeselection.h \ - /usr/include/gtk-2.0/gtk/gtktreestore.h \ - /usr/include/gtk-2.0/gtk/gtkuimanager.h \ - /usr/include/gtk-2.0/gtk/gtkvbbox.h \ - /usr/include/gtk-2.0/gtk/gtkversion.h \ - /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ - /usr/include/gtk-2.0/gtk/gtkvpaned.h \ - /usr/include/gtk-2.0/gtk/gtkvruler.h \ - /usr/include/gtk-2.0/gtk/gtkvscale.h \ - /usr/include/gtk-2.0/gtk/gtkvseparator.h \ - /usr/local/include/libglade-2.0/glade/glade.h \ - /usr/local/include/libglade-2.0/glade/glade-init.h \ - /usr/local/include/libglade-2.0/glade/glade-xml.h elfrc.h \ - /usr/local/include/libr.h /usr/include/sys/types.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h \ - /usr/include/bits/pthreadtypes.h /usr/include/string.h \ - /usr/include/bits/string.h /usr/include/bits/string2.h \ - /usr/include/stdlib.h /usr/include/sys/stat.h /usr/include/bits/stat.h \ - /usr/include/alloca.h /usr/include/sysexits.h - -/usr/include/gtk-2.0/gtk/gtk.h: - -/usr/include/gtk-2.0/gdk/gdk.h: - -/usr/include/gtk-2.0/gdk/gdkcairo.h: - -/usr/include/gtk-2.0/gdk/gdkcolor.h: - -/usr/include/cairo/cairo.h: - -/usr/include/cairo/cairo-features.h: - -/usr/include/cairo/cairo-deprecated.h: - -/usr/include/gtk-2.0/gdk/gdktypes.h: - -/usr/include/glib-2.0/glib.h: - -/usr/include/glib-2.0/glib/galloca.h: - -/usr/include/glib-2.0/glib/gtypes.h: - -/usr/lib/glib-2.0/include/glibconfig.h: - -/usr/include/glib-2.0/glib/gmacros.h: - -/usr/lib/gcc/i486-linux-gnu/4.2.4/include/stddef.h: - -/usr/lib/gcc/i486-linux-gnu/4.2.4/include/limits.h: - -/usr/lib/gcc/i486-linux-gnu/4.2.4/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-32.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/lib/gcc/i486-linux-gnu/4.2.4/include/float.h: - -/usr/include/glib-2.0/glib/garray.h: - -/usr/include/glib-2.0/glib/gasyncqueue.h: - -/usr/include/glib-2.0/glib/gthread.h: - -/usr/include/glib-2.0/glib/gerror.h: - -/usr/include/glib-2.0/glib/gquark.h: - -/usr/include/glib-2.0/glib/gutils.h: - -/usr/lib/gcc/i486-linux-gnu/4.2.4/include/stdarg.h: - -/usr/include/glib-2.0/glib/gatomic.h: - -/usr/include/glib-2.0/glib/gbacktrace.h: - -/usr/include/glib-2.0/glib/gbase64.h: - -/usr/include/glib-2.0/glib/gbookmarkfile.h: - -/usr/include/time.h: - -/usr/include/bits/time.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/glib-2.0/glib/gcache.h: - -/usr/include/glib-2.0/glib/glist.h: - -/usr/include/glib-2.0/glib/gmem.h: - -/usr/include/glib-2.0/glib/gslice.h: - -/usr/include/glib-2.0/glib/gchecksum.h: - -/usr/include/glib-2.0/glib/gcompletion.h: - -/usr/include/glib-2.0/glib/gconvert.h: - -/usr/include/glib-2.0/glib/gdataset.h: - -/usr/include/glib-2.0/glib/gdate.h: - -/usr/include/glib-2.0/glib/gdir.h: - -/usr/include/glib-2.0/glib/gfileutils.h: - -/usr/include/glib-2.0/glib/ghash.h: - -/usr/include/glib-2.0/glib/ghook.h: - -/usr/include/glib-2.0/glib/giochannel.h: - -/usr/include/glib-2.0/glib/gmain.h: - -/usr/include/glib-2.0/glib/gslist.h: - -/usr/include/glib-2.0/glib/gstring.h: - -/usr/include/glib-2.0/glib/gunicode.h: - -/usr/include/glib-2.0/glib/gkeyfile.h: - -/usr/include/glib-2.0/glib/gmappedfile.h: - -/usr/include/glib-2.0/glib/gmarkup.h: - -/usr/include/glib-2.0/glib/gmessages.h: - -/usr/include/glib-2.0/glib/gnode.h: - -/usr/include/glib-2.0/glib/goption.h: - -/usr/include/glib-2.0/glib/gpattern.h: - -/usr/include/glib-2.0/glib/gprimes.h: - -/usr/include/glib-2.0/glib/gqsort.h: - -/usr/include/glib-2.0/glib/gqueue.h: - -/usr/include/glib-2.0/glib/grand.h: - -/usr/include/glib-2.0/glib/grel.h: - -/usr/include/glib-2.0/glib/gregex.h: - -/usr/include/glib-2.0/glib/gscanner.h: - -/usr/include/glib-2.0/glib/gsequence.h: - -/usr/include/glib-2.0/glib/gshell.h: - -/usr/include/glib-2.0/glib/gspawn.h: - -/usr/include/glib-2.0/glib/gstrfuncs.h: - -/usr/include/glib-2.0/glib/gtestutils.h: - -/usr/include/glib-2.0/glib/gthreadpool.h: - -/usr/include/glib-2.0/glib/gtimer.h: - -/usr/include/glib-2.0/glib/gtree.h: - -/usr/include/glib-2.0/glib/gurifuncs.h: - -/usr/include/pango-1.0/pango/pango.h: - -/usr/include/pango-1.0/pango/pango-attributes.h: - -/usr/include/pango-1.0/pango/pango-font.h: - -/usr/include/pango-1.0/pango/pango-coverage.h: - -/usr/include/pango-1.0/pango/pango-types.h: - -/usr/include/glib-2.0/glib-object.h: - -/usr/include/glib-2.0/gobject/gboxed.h: - -/usr/include/glib-2.0/gobject/gtype.h: - -/usr/include/glib-2.0/gobject/genums.h: - -/usr/include/glib-2.0/gobject/gobject.h: - -/usr/include/glib-2.0/gobject/gvalue.h: - -/usr/include/glib-2.0/gobject/gparam.h: - -/usr/include/glib-2.0/gobject/gclosure.h: - -/usr/include/glib-2.0/gobject/gsignal.h: - -/usr/include/glib-2.0/gobject/gmarshal.h: - -/usr/include/glib-2.0/gobject/gparamspecs.h: - -/usr/include/glib-2.0/gobject/gsourceclosure.h: - -/usr/include/glib-2.0/gobject/gtypemodule.h: - -/usr/include/glib-2.0/gobject/gtypeplugin.h: - -/usr/include/glib-2.0/gobject/gvaluearray.h: - -/usr/include/glib-2.0/gobject/gvaluetypes.h: - -/usr/include/pango-1.0/pango/pango-gravity.h: - -/usr/include/pango-1.0/pango/pango-matrix.h: - -/usr/include/pango-1.0/pango/pango-script.h: - -/usr/include/pango-1.0/pango/pango-language.h: - -/usr/include/pango-1.0/pango/pango-break.h: - -/usr/include/pango-1.0/pango/pango-item.h: - -/usr/include/pango-1.0/pango/pango-context.h: - -/usr/include/pango-1.0/pango/pango-fontmap.h: - -/usr/include/pango-1.0/pango/pango-fontset.h: - -/usr/include/pango-1.0/pango/pango-engine.h: - -/usr/include/pango-1.0/pango/pango-glyph.h: - -/usr/include/pango-1.0/pango/pango-enum-types.h: - -/usr/include/pango-1.0/pango/pango-features.h: - -/usr/include/pango-1.0/pango/pango-glyph-item.h: - -/usr/include/pango-1.0/pango/pango-layout.h: - -/usr/include/pango-1.0/pango/pango-tabs.h: - -/usr/include/pango-1.0/pango/pango-renderer.h: - -/usr/include/pango-1.0/pango/pango-utils.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/bits/stdio.h: - -/usr/lib/gtk-2.0/include/gdkconfig.h: - -/usr/include/gtk-2.0/gdk/gdkpixbuf.h: - -/usr/include/gtk-2.0/gdk/gdkrgb.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: - -/usr/include/glib-2.0/gmodule.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: - -/usr/include/pango-1.0/pango/pangocairo.h: - -/usr/include/gtk-2.0/gdk/gdkcursor.h: - -/usr/include/gtk-2.0/gdk/gdkdisplay.h: - -/usr/include/gtk-2.0/gdk/gdkevents.h: - -/usr/include/gtk-2.0/gdk/gdkdnd.h: - -/usr/include/gtk-2.0/gdk/gdkinput.h: - -/usr/include/gtk-2.0/gdk/gdkdrawable.h: - -/usr/include/gtk-2.0/gdk/gdkgc.h: - -/usr/include/gtk-2.0/gdk/gdkenumtypes.h: - -/usr/include/gtk-2.0/gdk/gdkfont.h: - -/usr/include/gtk-2.0/gdk/gdkimage.h: - -/usr/include/gtk-2.0/gdk/gdkkeys.h: - -/usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: - -/usr/include/gtk-2.0/gdk/gdkpango.h: - -/usr/include/gtk-2.0/gdk/gdkpixmap.h: - -/usr/include/gtk-2.0/gdk/gdkproperty.h: - -/usr/include/gtk-2.0/gdk/gdkregion.h: - -/usr/include/gtk-2.0/gdk/gdkscreen.h: - -/usr/include/gtk-2.0/gdk/gdkselection.h: - -/usr/include/gtk-2.0/gdk/gdkspawn.h: - -/usr/include/gtk-2.0/gdk/gdkvisual.h: - -/usr/include/gtk-2.0/gdk/gdkwindow.h: - -/usr/include/gtk-2.0/gtk/gtkaboutdialog.h: - -/usr/include/gtk-2.0/gtk/gtkdialog.h: - -/usr/include/gtk-2.0/gtk/gtkwindow.h: - -/usr/include/gtk-2.0/gtk/gtkaccelgroup.h: - -/usr/include/gtk-2.0/gtk/gtkenums.h: - -/usr/include/gtk-2.0/gtk/gtkbin.h: - -/usr/include/gtk-2.0/gtk/gtkcontainer.h: - -/usr/include/gtk-2.0/gtk/gtkwidget.h: - -/usr/include/gtk-2.0/gtk/gtkobject.h: - -/usr/include/gtk-2.0/gtk/gtktypeutils.h: - -/usr/include/gtk-2.0/gtk/gtktypebuiltins.h: - -/usr/include/gtk-2.0/gtk/gtkdebug.h: - -/usr/include/gtk-2.0/gtk/gtkadjustment.h: - -/usr/include/gtk-2.0/gtk/gtkstyle.h: - -/usr/include/gtk-2.0/gtk/gtksettings.h: - -/usr/include/gtk-2.0/gtk/gtkrc.h: - -/usr/include/atk-1.0/atk/atkobject.h: - -/usr/include/atk-1.0/atk/atkstate.h: - -/usr/include/atk-1.0/atk/atkrelationtype.h: - -/usr/include/gtk-2.0/gtk/gtkaccellabel.h: - -/usr/include/gtk-2.0/gtk/gtklabel.h: - -/usr/include/gtk-2.0/gtk/gtkmisc.h: - -/usr/include/gtk-2.0/gtk/gtkmenu.h: - -/usr/include/gtk-2.0/gtk/gtkmenushell.h: - -/usr/include/gtk-2.0/gtk/gtkaccelmap.h: - -/usr/include/gtk-2.0/gtk/gtkaccessible.h: - -/usr/include/atk-1.0/atk/atk.h: - -/usr/include/atk-1.0/atk/atkaction.h: - -/usr/include/atk-1.0/atk/atkcomponent.h: - -/usr/include/atk-1.0/atk/atkutil.h: - -/usr/include/atk-1.0/atk/atkdocument.h: - -/usr/include/atk-1.0/atk/atkeditabletext.h: - -/usr/include/atk-1.0/atk/atktext.h: - -/usr/include/atk-1.0/atk/atkgobjectaccessible.h: - -/usr/include/atk-1.0/atk/atkhyperlink.h: - -/usr/include/atk-1.0/atk/atkhyperlinkimpl.h: - -/usr/include/atk-1.0/atk/atkhypertext.h: - -/usr/include/atk-1.0/atk/atkimage.h: - -/usr/include/atk-1.0/atk/atknoopobject.h: - -/usr/include/atk-1.0/atk/atknoopobjectfactory.h: - -/usr/include/atk-1.0/atk/atkobjectfactory.h: - -/usr/include/atk-1.0/atk/atkregistry.h: - -/usr/include/atk-1.0/atk/atkobjectfactory.h: - -/usr/include/atk-1.0/atk/atkrelation.h: - -/usr/include/atk-1.0/atk/atkrelationset.h: - -/usr/include/atk-1.0/atk/atkselection.h: - -/usr/include/atk-1.0/atk/atkstateset.h: - -/usr/include/atk-1.0/atk/atkstreamablecontent.h: - -/usr/include/atk-1.0/atk/atktable.h: - -/usr/include/atk-1.0/atk/atkmisc.h: - -/usr/include/atk-1.0/atk/atkvalue.h: - -/usr/include/gtk-2.0/gtk/gtkaction.h: - -/usr/include/gtk-2.0/gtk/gtkactiongroup.h: - -/usr/include/gtk-2.0/gtk/gtkitemfactory.h: - -/usr/include/gtk-2.0/gtk/gtkalignment.h: - -/usr/include/gtk-2.0/gtk/gtkarrow.h: - -/usr/include/gtk-2.0/gtk/gtkaspectframe.h: - -/usr/include/gtk-2.0/gtk/gtkframe.h: - -/usr/include/gtk-2.0/gtk/gtkassistant.h: - -/usr/include/gtk-2.0/gtk/gtkbbox.h: - -/usr/include/gtk-2.0/gtk/gtkbox.h: - -/usr/include/gtk-2.0/gtk/gtkbindings.h: - -/usr/include/gtk-2.0/gtk/gtkbuildable.h: - -/usr/include/gtk-2.0/gtk/gtkbuilder.h: - -/usr/include/gtk-2.0/gtk/gtkbutton.h: - -/usr/include/gtk-2.0/gtk/gtkimage.h: - -/usr/include/gtk-2.0/gtk/gtkcalendar.h: - -/usr/include/gtk-2.0/gtk/gtksignal.h: - -/usr/include/gtk-2.0/gtk/gtkmarshal.h: - -/usr/include/gtk-2.0/gtk/gtkcelllayout.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderer.h: - -/usr/include/gtk-2.0/gtk/gtkcelleditable.h: - -/usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: - -/usr/include/gtk-2.0/gtk/gtktreemodel.h: - -/usr/include/gtk-2.0/gtk/gtktreesortable.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: - -/usr/include/gtk-2.0/gtk/gtkcellview.h: - -/usr/include/gtk-2.0/gtk/gtkcheckbutton.h: - -/usr/include/gtk-2.0/gtk/gtktogglebutton.h: - -/usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkitem.h: - -/usr/include/gtk-2.0/gtk/gtkclipboard.h: - -/usr/include/gtk-2.0/gtk/gtkselection.h: - -/usr/include/gtk-2.0/gtk/gtktextiter.h: - -/usr/include/gtk-2.0/gtk/gtktexttag.h: - -/usr/include/gtk-2.0/gtk/gtktextchild.h: - -/usr/include/gtk-2.0/gtk/gtkclist.h: - -/usr/include/gtk-2.0/gtk/gtkhscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkrange.h: - -/usr/include/gtk-2.0/gtk/gtkvscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkcolorbutton.h: - -/usr/include/gtk-2.0/gtk/gtkcolorsel.h: - -/usr/include/gtk-2.0/gtk/gtkvbox.h: - -/usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: - -/usr/include/gtk-2.0/gtk/gtkcombo.h: - -/usr/include/gtk-2.0/gtk/gtkhbox.h: - -/usr/include/gtk-2.0/gtk/gtkcombobox.h: - -/usr/include/gtk-2.0/gtk/gtktreeview.h: - -/usr/include/gtk-2.0/gtk/gtkdnd.h: - -/usr/include/gtk-2.0/gtk/gtkentry.h: - -/usr/include/gtk-2.0/gtk/gtkeditable.h: - -/usr/include/gtk-2.0/gtk/gtkimcontext.h: - -/usr/include/gtk-2.0/gtk/gtkentrycompletion.h: - -/usr/include/gtk-2.0/gtk/gtkliststore.h: - -/usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: - -/usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: - -/usr/include/gtk-2.0/gtk/gtkctree.h: - -/usr/include/gtk-2.0/gtk/gtkcurve.h: - -/usr/include/gtk-2.0/gtk/gtkdrawingarea.h: - -/usr/include/gtk-2.0/gtk/gtkeventbox.h: - -/usr/include/gtk-2.0/gtk/gtkexpander.h: - -/usr/include/gtk-2.0/gtk/gtkfilesel.h: - -/usr/include/gtk-2.0/gtk/gtkfixed.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooser.h: - -/usr/include/gtk-2.0/gtk/gtkfilefilter.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooser.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: - -/usr/include/gtk-2.0/gtk/gtkfontbutton.h: - -/usr/include/gtk-2.0/gtk/gtkfontsel.h: - -/usr/include/gtk-2.0/gtk/gtkgamma.h: - -/usr/include/gtk-2.0/gtk/gtkgc.h: - -/usr/include/gtk-2.0/gtk/gtkhandlebox.h: - -/usr/include/gtk-2.0/gtk/gtkhbbox.h: - -/usr/include/gtk-2.0/gtk/gtkhpaned.h: - -/usr/include/gtk-2.0/gtk/gtkpaned.h: - -/usr/include/gtk-2.0/gtk/gtkhruler.h: - -/usr/include/gtk-2.0/gtk/gtkruler.h: - -/usr/include/gtk-2.0/gtk/gtkhscale.h: - -/usr/include/gtk-2.0/gtk/gtkscale.h: - -/usr/include/gtk-2.0/gtk/gtkhseparator.h: - -/usr/include/gtk-2.0/gtk/gtkseparator.h: - -/usr/include/gtk-2.0/gtk/gtkiconfactory.h: - -/usr/include/gtk-2.0/gtk/gtkicontheme.h: - -/usr/include/gtk-2.0/gtk/gtkiconview.h: - -/usr/include/gtk-2.0/gtk/gtktooltip.h: - -/usr/include/gtk-2.0/gtk/gtkwidget.h: - -/usr/include/gtk-2.0/gtk/gtkwindow.h: - -/usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: - -/usr/include/gtk-2.0/gtk/gtkimmulticontext.h: - -/usr/include/gtk-2.0/gtk/gtkinputdialog.h: - -/usr/include/gtk-2.0/gtk/gtkinvisible.h: - -/usr/include/gtk-2.0/gtk/gtklayout.h: - -/usr/include/gtk-2.0/gtk/gtklinkbutton.h: - -/usr/include/gtk-2.0/gtk/gtklist.h: - -/usr/include/gtk-2.0/gtk/gtklistitem.h: - -/usr/include/gtk-2.0/gtk/gtkmain.h: - -/usr/include/gtk-2.0/gtk/gtkmenubar.h: - -/usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtkmenu.h: - -/usr/include/gtk-2.0/gtk/gtktoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolitem.h: - -/usr/include/gtk-2.0/gtk/gtktooltips.h: - -/usr/include/gtk-2.0/gtk/gtkmessagedialog.h: - -/usr/include/gtk-2.0/gtk/gtkmodules.h: - -/usr/include/gtk-2.0/gtk/gtknotebook.h: - -/usr/include/gtk-2.0/gtk/gtkoldeditable.h: - -/usr/include/gtk-2.0/gtk/gtkoptionmenu.h: - -/usr/include/gtk-2.0/gtk/gtkpixmap.h: - -/usr/include/gtk-2.0/gtk/gtkplug.h: - -/usr/include/gtk-2.0/gtk/gtksocket.h: - -/usr/include/gtk-2.0/gtk/gtkpreview.h: - -/usr/include/gtk-2.0/gtk/gtkprintoperation.h: - -/usr/include/gtk-2.0/gtk/gtkmain.h: - -/usr/include/gtk-2.0/gtk/gtkenums.h: - -/usr/include/gtk-2.0/gtk/gtkpagesetup.h: - -/usr/include/gtk-2.0/gtk/gtkpapersize.h: - -/usr/include/gtk-2.0/gtk/gtkprintsettings.h: - -/usr/include/gtk-2.0/gtk/gtkprintcontext.h: - -/usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: - -/usr/include/gtk-2.0/gtk/gtkprogress.h: - -/usr/include/gtk-2.0/gtk/gtkprogressbar.h: - -/usr/include/gtk-2.0/gtk/gtkradioaction.h: - -/usr/include/gtk-2.0/gtk/gtktoggleaction.h: - -/usr/include/gtk-2.0/gtk/gtkradiobutton.h: - -/usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtkrecentaction.h: - -/usr/include/gtk-2.0/gtk/gtkrecentmanager.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooser.h: - -/usr/include/gtk-2.0/gtk/gtkrecentmanager.h: - -/usr/include/gtk-2.0/gtk/gtkrecentfilter.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooser.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: - -/usr/include/gtk-2.0/gtk/gtkrecentfilter.h: - -/usr/include/gtk-2.0/gtk/gtkscalebutton.h: - -/usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: - -/usr/include/gtk-2.0/gtk/gtkviewport.h: - -/usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: - -/usr/include/gtk-2.0/gtk/gtksizegroup.h: - -/usr/include/gtk-2.0/gtk/gtkspinbutton.h: - -/usr/include/gtk-2.0/gtk/gtkstatusbar.h: - -/usr/include/gtk-2.0/gtk/gtkstatusicon.h: - -/usr/include/gtk-2.0/gtk/gtkstock.h: - -/usr/include/gtk-2.0/gtk/gtktable.h: - -/usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtktext.h: - -/usr/include/gtk-2.0/gtk/gtktextbuffer.h: - -/usr/include/gtk-2.0/gtk/gtktexttagtable.h: - -/usr/include/gtk-2.0/gtk/gtktextmark.h: - -/usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: - -/usr/include/gtk-2.0/gtk/gtktextview.h: - -/usr/include/gtk-2.0/gtk/gtktipsquery.h: - -/usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolbar.h: - -/usr/include/gtk-2.0/gtk/gtktoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolitem.h: - -/usr/include/gtk-2.0/gtk/gtktree.h: - -/usr/include/gtk-2.0/gtk/gtktreednd.h: - -/usr/include/gtk-2.0/gtk/gtktreeitem.h: - -/usr/include/gtk-2.0/gtk/gtktreemodelsort.h: - -/usr/include/gtk-2.0/gtk/gtktreeselection.h: - -/usr/include/gtk-2.0/gtk/gtktreestore.h: - -/usr/include/gtk-2.0/gtk/gtkuimanager.h: - -/usr/include/gtk-2.0/gtk/gtkvbbox.h: - -/usr/include/gtk-2.0/gtk/gtkversion.h: - -/usr/include/gtk-2.0/gtk/gtkvolumebutton.h: - -/usr/include/gtk-2.0/gtk/gtkvpaned.h: - -/usr/include/gtk-2.0/gtk/gtkvruler.h: - -/usr/include/gtk-2.0/gtk/gtkvscale.h: - -/usr/include/gtk-2.0/gtk/gtkvseparator.h: - -/usr/local/include/libglade-2.0/glade/glade.h: - -/usr/local/include/libglade-2.0/glade/glade-init.h: - -/usr/local/include/libglade-2.0/glade/glade-xml.h: - -elfrc.h: - -/usr/local/include/libr.h: - -/usr/include/sys/types.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/bits/sigset.h: - -/usr/include/sys/sysmacros.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/string.h: - -/usr/include/bits/string.h: - -/usr/include/bits/string2.h: - -/usr/include/stdlib.h: - -/usr/include/sys/stat.h: - -/usr/include/bits/stat.h: - -/usr/include/alloca.h: - -/usr/include/sysexits.h: diff -Nru elfres-0.5.0~karmic/.deps/elfrc-gui.Po elfres-0.6.0~karmic/.deps/elfrc-gui.Po --- elfres-0.5.0~karmic/.deps/elfrc-gui.Po 2009-09-10 21:12:45.000000000 +0000 +++ elfres-0.6.0~karmic/.deps/elfrc-gui.Po 1970-01-01 00:00:00.000000000 +0000 @@ -1,1367 +0,0 @@ -elfrc-gui.o: elfrc-gui.c /usr/include/gtk-2.0/gtk/gtk.h \ - /usr/include/gtk-2.0/gdk/gdk.h \ - /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ - /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gioenums.h \ - /usr/include/glib-2.0/glib-object.h \ - /usr/include/glib-2.0/gobject/gboxed.h \ - /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ - /usr/include/glib-2.0/glib/galloca.h \ - /usr/include/glib-2.0/glib/gtypes.h \ - /usr/lib/glib-2.0/include/glibconfig.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include-fixed/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include-fixed/syslimits.h \ - /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/float.h \ - /usr/include/glib-2.0/glib/garray.h \ - /usr/include/glib-2.0/glib/gasyncqueue.h \ - /usr/include/glib-2.0/glib/gthread.h \ - /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ - /usr/include/glib-2.0/glib/gutils.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/stdarg.h \ - /usr/include/glib-2.0/glib/gatomic.h \ - /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ - /usr/include/bits/sigset.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ - /usr/include/time.h /usr/include/bits/siginfo.h \ - /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ - /usr/include/bits/sigstack.h /usr/include/bits/pthreadtypes.h \ - /usr/include/bits/sigthread.h /usr/include/glib-2.0/glib/gbase64.h \ - /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ - /usr/include/glib-2.0/glib/gcache.h /usr/include/glib-2.0/glib/glist.h \ - /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gslice.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/gcompletion.h \ - /usr/include/glib-2.0/glib/gconvert.h \ - /usr/include/glib-2.0/glib/gdataset.h \ - /usr/include/glib-2.0/glib/gdate.h /usr/include/glib-2.0/glib/gdir.h \ - /usr/include/glib-2.0/glib/gfileutils.h \ - /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ - /usr/include/glib-2.0/glib/giochannel.h \ - /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ - /usr/include/glib-2.0/glib/gslist.h \ - /usr/include/glib-2.0/glib/gstring.h \ - /usr/include/glib-2.0/glib/gunicode.h \ - /usr/include/glib-2.0/glib/gkeyfile.h \ - /usr/include/glib-2.0/glib/gmappedfile.h \ - /usr/include/glib-2.0/glib/gmarkup.h \ - /usr/include/glib-2.0/glib/gmessages.h \ - /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ - /usr/include/glib-2.0/glib/gpattern.h \ - /usr/include/glib-2.0/glib/gprimes.h \ - /usr/include/glib-2.0/glib/gqsort.h /usr/include/glib-2.0/glib/gqueue.h \ - /usr/include/glib-2.0/glib/grand.h /usr/include/glib-2.0/glib/grel.h \ - /usr/include/glib-2.0/glib/gregex.h \ - /usr/include/glib-2.0/glib/gscanner.h \ - /usr/include/glib-2.0/glib/gsequence.h \ - /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ - /usr/include/glib-2.0/glib/gstrfuncs.h \ - /usr/include/glib-2.0/glib/gtestutils.h \ - /usr/include/glib-2.0/glib/gthreadpool.h \ - /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ - /usr/include/glib-2.0/glib/gurifuncs.h \ - /usr/include/glib-2.0/gobject/genums.h \ - /usr/include/glib-2.0/gobject/gobject.h \ - /usr/include/glib-2.0/gobject/gvalue.h \ - /usr/include/glib-2.0/gobject/gparam.h \ - /usr/include/glib-2.0/gobject/gclosure.h \ - /usr/include/glib-2.0/gobject/gsignal.h \ - /usr/include/glib-2.0/gobject/gmarshal.h \ - /usr/include/glib-2.0/gobject/gparamspecs.h \ - /usr/include/glib-2.0/gobject/gsourceclosure.h \ - /usr/include/glib-2.0/gobject/gtypemodule.h \ - /usr/include/glib-2.0/gobject/gtypeplugin.h \ - /usr/include/glib-2.0/gobject/gvaluearray.h \ - /usr/include/glib-2.0/gobject/gvaluetypes.h \ - /usr/include/glib-2.0/gio/gappinfo.h \ - /usr/include/glib-2.0/gio/gasyncresult.h \ - /usr/include/glib-2.0/gio/gbufferedinputstream.h \ - /usr/include/glib-2.0/gio/gfilterinputstream.h \ - /usr/include/glib-2.0/gio/ginputstream.h \ - /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ - /usr/include/glib-2.0/gio/gfilteroutputstream.h \ - /usr/include/glib-2.0/gio/goutputstream.h \ - /usr/include/glib-2.0/gio/gcancellable.h \ - /usr/include/glib-2.0/gio/gcontenttype.h \ - /usr/include/glib-2.0/gio/gdatainputstream.h \ - /usr/include/glib-2.0/gio/gdataoutputstream.h \ - /usr/include/glib-2.0/gio/gdrive.h \ - /usr/include/glib-2.0/gio/gemblemedicon.h \ - /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ - /usr/include/glib-2.0/gio/gfile.h \ - /usr/include/glib-2.0/gio/gfileattribute.h \ - /usr/include/glib-2.0/gio/gfileenumerator.h \ - /usr/include/glib-2.0/gio/gfileicon.h \ - /usr/include/glib-2.0/gio/gfileinfo.h \ - /usr/include/glib-2.0/gio/gfileinputstream.h \ - /usr/include/glib-2.0/gio/gfilemonitor.h \ - /usr/include/glib-2.0/gio/gfilenamecompleter.h \ - /usr/include/glib-2.0/gio/gfileoutputstream.h \ - /usr/include/glib-2.0/gio/gioenumtypes.h \ - /usr/include/glib-2.0/gio/gioerror.h \ - /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ - /usr/include/glib-2.0/gio/gioscheduler.h \ - /usr/include/glib-2.0/gio/gloadableicon.h \ - /usr/include/glib-2.0/gio/gmemoryinputstream.h \ - /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ - /usr/include/glib-2.0/gio/gmount.h \ - /usr/include/glib-2.0/gio/gmountoperation.h \ - /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ - /usr/include/glib-2.0/gio/gvolumemonitor.h \ - /usr/include/glib-2.0/gio/gseekable.h \ - /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ - /usr/include/glib-2.0/gio/gthemedicon.h \ - /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ - /usr/include/gtk-2.0/gdk/gdkscreen.h /usr/include/cairo/cairo.h \ - /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ - /usr/include/cairo/cairo-deprecated.h \ - /usr/include/gtk-2.0/gdk/gdktypes.h \ - /usr/include/pango-1.0/pango/pango.h \ - /usr/include/pango-1.0/pango/pango-attributes.h \ - /usr/include/pango-1.0/pango/pango-font.h \ - /usr/include/pango-1.0/pango/pango-coverage.h \ - /usr/include/pango-1.0/pango/pango-types.h \ - /usr/include/pango-1.0/pango/pango-gravity.h \ - /usr/include/pango-1.0/pango/pango-matrix.h \ - /usr/include/pango-1.0/pango/pango-script.h \ - /usr/include/pango-1.0/pango/pango-language.h \ - /usr/include/pango-1.0/pango/pango-bidi-type.h \ - /usr/include/pango-1.0/pango/pango-break.h \ - /usr/include/pango-1.0/pango/pango-item.h \ - /usr/include/pango-1.0/pango/pango-context.h \ - /usr/include/pango-1.0/pango/pango-fontmap.h \ - /usr/include/pango-1.0/pango/pango-fontset.h \ - /usr/include/pango-1.0/pango/pango-engine.h \ - /usr/include/pango-1.0/pango/pango-glyph.h \ - /usr/include/pango-1.0/pango/pango-enum-types.h \ - /usr/include/pango-1.0/pango/pango-features.h \ - /usr/include/pango-1.0/pango/pango-glyph-item.h \ - /usr/include/pango-1.0/pango/pango-layout.h \ - /usr/include/pango-1.0/pango/pango-tabs.h \ - /usr/include/pango-1.0/pango/pango-renderer.h \ - /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/bits/stdio.h /usr/include/bits/stdio2.h \ - /usr/lib/gtk-2.0/include/gdkconfig.h \ - /usr/include/gtk-2.0/gdk/gdkdisplay.h \ - /usr/include/gtk-2.0/gdk/gdkevents.h \ - /usr/include/gtk-2.0/gdk/gdkcolor.h /usr/include/gtk-2.0/gdk/gdkdnd.h \ - /usr/include/gtk-2.0/gdk/gdkinput.h /usr/include/gtk-2.0/gdk/gdkcairo.h \ - /usr/include/gtk-2.0/gdk/gdkpixbuf.h /usr/include/gtk-2.0/gdk/gdkrgb.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ - /usr/include/pango-1.0/pango/pangocairo.h \ - /usr/include/gtk-2.0/gdk/gdkcursor.h \ - /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ - /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ - /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ - /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ - /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ - /usr/include/gtk-2.0/gdk/gdkpixmap.h \ - /usr/include/gtk-2.0/gdk/gdkproperty.h \ - /usr/include/gtk-2.0/gdk/gdkregion.h \ - /usr/include/gtk-2.0/gdk/gdkselection.h \ - /usr/include/gtk-2.0/gdk/gdkspawn.h \ - /usr/include/gtk-2.0/gdk/gdktestutils.h \ - /usr/include/gtk-2.0/gdk/gdkwindow.h \ - /usr/include/gtk-2.0/gdk/gdkvisual.h \ - /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ - /usr/include/gtk-2.0/gtk/gtkdialog.h \ - /usr/include/gtk-2.0/gtk/gtkwindow.h \ - /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ - /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ - /usr/include/gtk-2.0/gtk/gtkcontainer.h \ - /usr/include/gtk-2.0/gtk/gtkwidget.h \ - /usr/include/gtk-2.0/gtk/gtkobject.h \ - /usr/include/gtk-2.0/gtk/gtktypeutils.h \ - /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ - /usr/include/gtk-2.0/gtk/gtkdebug.h \ - /usr/include/gtk-2.0/gtk/gtkadjustment.h \ - /usr/include/gtk-2.0/gtk/gtkstyle.h \ - /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ - /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ - /usr/include/atk-1.0/atk/atkstate.h \ - /usr/include/atk-1.0/atk/atkrelationtype.h \ - /usr/include/atk-1.0/atk/atkaction.h \ - /usr/include/atk-1.0/atk/atkcomponent.h \ - /usr/include/atk-1.0/atk/atkutil.h \ - /usr/include/atk-1.0/atk/atkdocument.h \ - /usr/include/atk-1.0/atk/atkeditabletext.h \ - /usr/include/atk-1.0/atk/atktext.h \ - /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ - /usr/include/atk-1.0/atk/atkhyperlink.h \ - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ - /usr/include/atk-1.0/atk/atkhypertext.h \ - /usr/include/atk-1.0/atk/atkimage.h \ - /usr/include/atk-1.0/atk/atknoopobject.h \ - /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkregistry.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkrelation.h \ - /usr/include/atk-1.0/atk/atkrelationset.h \ - /usr/include/atk-1.0/atk/atkselection.h \ - /usr/include/atk-1.0/atk/atkstateset.h \ - /usr/include/atk-1.0/atk/atkstreamablecontent.h \ - /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ - /usr/include/atk-1.0/atk/atkvalue.h \ - /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ - /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ - /usr/include/gtk-2.0/gtk/gtkmenu.h \ - /usr/include/gtk-2.0/gtk/gtkmenushell.h \ - /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ - /usr/include/gtk-2.0/gtk/gtkaccessible.h \ - /usr/include/gtk-2.0/gtk/gtkaction.h \ - /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ - /usr/include/gtk-2.0/gtk/gtkactivatable.h \ - /usr/include/gtk-2.0/gtk/gtkalignment.h \ - /usr/include/gtk-2.0/gtk/gtkarrow.h \ - /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ - /usr/include/gtk-2.0/gtk/gtkframe.h \ - /usr/include/gtk-2.0/gtk/gtkassistant.h \ - /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ - /usr/include/gtk-2.0/gtk/gtkbindings.h \ - /usr/include/gtk-2.0/gtk/gtkbuildable.h \ - /usr/include/gtk-2.0/gtk/gtkbuilder.h \ - /usr/include/gtk-2.0/gtk/gtkbutton.h \ - /usr/include/gtk-2.0/gtk/gtkimage.h \ - /usr/include/gtk-2.0/gtk/gtkcalendar.h \ - /usr/include/gtk-2.0/gtk/gtksignal.h \ - /usr/include/gtk-2.0/gtk/gtkmarshal.h \ - /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ - /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ - /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ - /usr/include/gtk-2.0/gtk/gtktreemodel.h \ - /usr/include/gtk-2.0/gtk/gtktreesortable.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ - /usr/include/gtk-2.0/gtk/gtkcellview.h \ - /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ - /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ - /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkitem.h \ - /usr/include/gtk-2.0/gtk/gtkclipboard.h \ - /usr/include/gtk-2.0/gtk/gtkselection.h \ - /usr/include/gtk-2.0/gtk/gtktextiter.h \ - /usr/include/gtk-2.0/gtk/gtktexttag.h \ - /usr/include/gtk-2.0/gtk/gtktextchild.h \ - /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ - /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ - /usr/include/gtk-2.0/gtk/gtkvbox.h \ - /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ - /usr/include/gtk-2.0/gtk/gtkcombobox.h \ - /usr/include/gtk-2.0/gtk/gtktreeview.h \ - /usr/include/gtk-2.0/gtk/gtkdnd.h /usr/include/gtk-2.0/gtk/gtkentry.h \ - /usr/include/gtk-2.0/gtk/gtkeditable.h \ - /usr/include/gtk-2.0/gtk/gtkimcontext.h \ - /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ - /usr/include/gtk-2.0/gtk/gtkliststore.h \ - /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ - /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ - /usr/include/gtk-2.0/gtk/gtkcurve.h \ - /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ - /usr/include/gtk-2.0/gtk/gtkeventbox.h \ - /usr/include/gtk-2.0/gtk/gtkexpander.h \ - /usr/include/gtk-2.0/gtk/gtkfixed.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ - /usr/include/gtk-2.0/gtk/gtkhbox.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ - /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ - /usr/include/gtk-2.0/gtk/gtkfontsel.h \ - /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ - /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ - /usr/include/gtk-2.0/gtk/gtkhbbox.h \ - /usr/include/gtk-2.0/gtk/gtkhpaned.h \ - /usr/include/gtk-2.0/gtk/gtkpaned.h \ - /usr/include/gtk-2.0/gtk/gtkhruler.h \ - /usr/include/gtk-2.0/gtk/gtkruler.h \ - /usr/include/gtk-2.0/gtk/gtkhscale.h \ - /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ - /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkhseparator.h \ - /usr/include/gtk-2.0/gtk/gtkseparator.h \ - /usr/include/gtk-2.0/gtk/gtkhsv.h \ - /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ - /usr/include/gtk-2.0/gtk/gtkicontheme.h \ - /usr/include/gtk-2.0/gtk/gtkiconview.h \ - /usr/include/gtk-2.0/gtk/gtktooltip.h \ - /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ - /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ - /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ - /usr/include/gtk-2.0/gtk/gtkinvisible.h \ - /usr/include/gtk-2.0/gtk/gtklayout.h \ - /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ - /usr/include/gtk-2.0/gtk/gtkmain.h \ - /usr/include/gtk-2.0/gtk/gtkmenubar.h \ - /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolitem.h \ - /usr/include/gtk-2.0/gtk/gtktooltips.h \ - /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ - /usr/include/gtk-2.0/gtk/gtkmodules.h \ - /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ - /usr/include/gtk-2.0/gtk/gtknotebook.h \ - /usr/include/gtk-2.0/gtk/gtkorientable.h \ - /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ - /usr/include/gtk-2.0/gtk/gtkpapersize.h \ - /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ - /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ - /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ - /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ - /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ - /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ - /usr/include/gtk-2.0/gtk/gtkprogress.h \ - /usr/include/gtk-2.0/gtk/gtkradioaction.h \ - /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ - /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ - /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ - /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ - /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ - /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ - /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkviewport.h \ - /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ - /usr/include/gtk-2.0/gtk/gtkshow.h \ - /usr/include/gtk-2.0/gtk/gtksizegroup.h \ - /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ - /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ - /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ - /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ - /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ - /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ - /usr/include/gtk-2.0/gtk/gtktextmark.h \ - /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ - /usr/include/gtk-2.0/gtk/gtktextview.h \ - /usr/include/gtk-2.0/gtk/gtktoolbar.h \ - /usr/include/gtk-2.0/gtk/gtkpixmap.h \ - /usr/include/gtk-2.0/gtk/gtktoolshell.h \ - /usr/include/gtk-2.0/gtk/gtktestutils.h \ - /usr/include/gtk-2.0/gtk/gtktreednd.h \ - /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ - /usr/include/gtk-2.0/gtk/gtktreeselection.h \ - /usr/include/gtk-2.0/gtk/gtktreestore.h \ - /usr/include/gtk-2.0/gtk/gtkuimanager.h \ - /usr/include/gtk-2.0/gtk/gtkvbbox.h \ - /usr/include/gtk-2.0/gtk/gtkversion.h \ - /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ - /usr/include/gtk-2.0/gtk/gtkvpaned.h \ - /usr/include/gtk-2.0/gtk/gtkvruler.h \ - /usr/include/gtk-2.0/gtk/gtkvscale.h \ - /usr/include/gtk-2.0/gtk/gtkvseparator.h \ - /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ - /usr/include/gtk-2.0/gtk/gtktreeitem.h \ - /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ - /usr/include/gtk-2.0/gtk/gtkctree.h \ - /usr/include/gtk-2.0/gtk/gtkfilesel.h \ - /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ - /usr/include/gtk-2.0/gtk/gtklist.h \ - /usr/include/gtk-2.0/gtk/gtklistitem.h \ - /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ - /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ - /usr/include/gtk-2.0/gtk/gtkpreview.h \ - /usr/include/gtk-2.0/gtk/gtktipsquery.h \ - /usr/include/libglade-2.0/glade/glade.h \ - /usr/include/libglade-2.0/glade/glade-init.h \ - /usr/include/libglade-2.0/glade/glade-xml.h \ - /usr/local/include/libr/libr-gtk.h /usr/local/include/libr/libr.h \ - /usr/include/sys/types.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/sys/sysmacros.h elfrc.h /usr/local/include/libr/libr.h \ - /usr/local/include/libr/libr-icons.h /usr/include/string.h \ - /usr/include/bits/string.h /usr/include/bits/string2.h \ - /usr/include/stdlib.h /usr/include/bits/string3.h \ - /usr/include/sys/stat.h /usr/include/bits/stat.h /usr/include/alloca.h \ - /usr/include/bits/stdlib.h /usr/include/sysexits.h - -/usr/include/gtk-2.0/gtk/gtk.h: - -/usr/include/gtk-2.0/gdk/gdk.h: - -/usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: - -/usr/include/glib-2.0/gio/gio.h: - -/usr/include/glib-2.0/gio/giotypes.h: - -/usr/include/glib-2.0/gio/gioenums.h: - -/usr/include/glib-2.0/glib-object.h: - -/usr/include/glib-2.0/gobject/gboxed.h: - -/usr/include/glib-2.0/gobject/gtype.h: - -/usr/include/glib-2.0/glib.h: - -/usr/include/glib-2.0/glib/galloca.h: - -/usr/include/glib-2.0/glib/gtypes.h: - -/usr/lib/glib-2.0/include/glibconfig.h: - -/usr/include/glib-2.0/glib/gmacros.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/stddef.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include-fixed/limits.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include-fixed/syslimits.h: - -/usr/include/limits.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/float.h: - -/usr/include/glib-2.0/glib/garray.h: - -/usr/include/glib-2.0/glib/gasyncqueue.h: - -/usr/include/glib-2.0/glib/gthread.h: - -/usr/include/glib-2.0/glib/gerror.h: - -/usr/include/glib-2.0/glib/gquark.h: - -/usr/include/glib-2.0/glib/gutils.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/stdarg.h: - -/usr/include/glib-2.0/glib/gatomic.h: - -/usr/include/glib-2.0/glib/gbacktrace.h: - -/usr/include/signal.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/signum.h: - -/usr/include/time.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/bits/sigthread.h: - -/usr/include/glib-2.0/glib/gbase64.h: - -/usr/include/glib-2.0/glib/gbookmarkfile.h: - -/usr/include/bits/time.h: - -/usr/include/glib-2.0/glib/gcache.h: - -/usr/include/glib-2.0/glib/glist.h: - -/usr/include/glib-2.0/glib/gmem.h: - -/usr/include/glib-2.0/glib/gslice.h: - -/usr/include/glib-2.0/glib/gchecksum.h: - -/usr/include/glib-2.0/glib/gcompletion.h: - -/usr/include/glib-2.0/glib/gconvert.h: - -/usr/include/glib-2.0/glib/gdataset.h: - -/usr/include/glib-2.0/glib/gdate.h: - -/usr/include/glib-2.0/glib/gdir.h: - -/usr/include/glib-2.0/glib/gfileutils.h: - -/usr/include/glib-2.0/glib/ghash.h: - -/usr/include/glib-2.0/glib/ghook.h: - -/usr/include/glib-2.0/glib/giochannel.h: - -/usr/include/glib-2.0/glib/gmain.h: - -/usr/include/glib-2.0/glib/gpoll.h: - -/usr/include/glib-2.0/glib/gslist.h: - -/usr/include/glib-2.0/glib/gstring.h: - -/usr/include/glib-2.0/glib/gunicode.h: - -/usr/include/glib-2.0/glib/gkeyfile.h: - -/usr/include/glib-2.0/glib/gmappedfile.h: - -/usr/include/glib-2.0/glib/gmarkup.h: - -/usr/include/glib-2.0/glib/gmessages.h: - -/usr/include/glib-2.0/glib/gnode.h: - -/usr/include/glib-2.0/glib/goption.h: - -/usr/include/glib-2.0/glib/gpattern.h: - -/usr/include/glib-2.0/glib/gprimes.h: - -/usr/include/glib-2.0/glib/gqsort.h: - -/usr/include/glib-2.0/glib/gqueue.h: - -/usr/include/glib-2.0/glib/grand.h: - -/usr/include/glib-2.0/glib/grel.h: - -/usr/include/glib-2.0/glib/gregex.h: - -/usr/include/glib-2.0/glib/gscanner.h: - -/usr/include/glib-2.0/glib/gsequence.h: - -/usr/include/glib-2.0/glib/gshell.h: - -/usr/include/glib-2.0/glib/gspawn.h: - -/usr/include/glib-2.0/glib/gstrfuncs.h: - -/usr/include/glib-2.0/glib/gtestutils.h: - -/usr/include/glib-2.0/glib/gthreadpool.h: - -/usr/include/glib-2.0/glib/gtimer.h: - -/usr/include/glib-2.0/glib/gtree.h: - -/usr/include/glib-2.0/glib/gurifuncs.h: - -/usr/include/glib-2.0/gobject/genums.h: - -/usr/include/glib-2.0/gobject/gobject.h: - -/usr/include/glib-2.0/gobject/gvalue.h: - -/usr/include/glib-2.0/gobject/gparam.h: - -/usr/include/glib-2.0/gobject/gclosure.h: - -/usr/include/glib-2.0/gobject/gsignal.h: - -/usr/include/glib-2.0/gobject/gmarshal.h: - -/usr/include/glib-2.0/gobject/gparamspecs.h: - -/usr/include/glib-2.0/gobject/gsourceclosure.h: - -/usr/include/glib-2.0/gobject/gtypemodule.h: - -/usr/include/glib-2.0/gobject/gtypeplugin.h: - -/usr/include/glib-2.0/gobject/gvaluearray.h: - -/usr/include/glib-2.0/gobject/gvaluetypes.h: - -/usr/include/glib-2.0/gio/gappinfo.h: - -/usr/include/glib-2.0/gio/gasyncresult.h: - -/usr/include/glib-2.0/gio/gbufferedinputstream.h: - -/usr/include/glib-2.0/gio/gfilterinputstream.h: - -/usr/include/glib-2.0/gio/ginputstream.h: - -/usr/include/glib-2.0/gio/gbufferedoutputstream.h: - -/usr/include/glib-2.0/gio/gfilteroutputstream.h: - -/usr/include/glib-2.0/gio/goutputstream.h: - -/usr/include/glib-2.0/gio/gcancellable.h: - -/usr/include/glib-2.0/gio/gcontenttype.h: - -/usr/include/glib-2.0/gio/gdatainputstream.h: - -/usr/include/glib-2.0/gio/gdataoutputstream.h: - -/usr/include/glib-2.0/gio/gdrive.h: - -/usr/include/glib-2.0/gio/gemblemedicon.h: - -/usr/include/glib-2.0/gio/gicon.h: - -/usr/include/glib-2.0/gio/gemblem.h: - -/usr/include/glib-2.0/gio/gfile.h: - -/usr/include/glib-2.0/gio/gfileattribute.h: - -/usr/include/glib-2.0/gio/gfileenumerator.h: - -/usr/include/glib-2.0/gio/gfileicon.h: - -/usr/include/glib-2.0/gio/gfileinfo.h: - -/usr/include/glib-2.0/gio/gfileinputstream.h: - -/usr/include/glib-2.0/gio/gfilemonitor.h: - -/usr/include/glib-2.0/gio/gfilenamecompleter.h: - -/usr/include/glib-2.0/gio/gfileoutputstream.h: - -/usr/include/glib-2.0/gio/gioenumtypes.h: - -/usr/include/glib-2.0/gio/gioerror.h: - -/usr/include/glib-2.0/gio/giomodule.h: - -/usr/include/glib-2.0/gmodule.h: - -/usr/include/glib-2.0/gio/gioscheduler.h: - -/usr/include/glib-2.0/gio/gloadableicon.h: - -/usr/include/glib-2.0/gio/gmemoryinputstream.h: - -/usr/include/glib-2.0/gio/gmemoryoutputstream.h: - -/usr/include/glib-2.0/gio/gmount.h: - -/usr/include/glib-2.0/gio/gmountoperation.h: - -/usr/include/glib-2.0/gio/gnativevolumemonitor.h: - -/usr/include/glib-2.0/gio/gvolumemonitor.h: - -/usr/include/glib-2.0/gio/gseekable.h: - -/usr/include/glib-2.0/gio/gsimpleasyncresult.h: - -/usr/include/glib-2.0/gio/gthemedicon.h: - -/usr/include/glib-2.0/gio/gvfs.h: - -/usr/include/glib-2.0/gio/gvolume.h: - -/usr/include/gtk-2.0/gdk/gdkscreen.h: - -/usr/include/cairo/cairo.h: - -/usr/include/cairo/cairo-version.h: - -/usr/include/cairo/cairo-features.h: - -/usr/include/cairo/cairo-deprecated.h: - -/usr/include/gtk-2.0/gdk/gdktypes.h: - -/usr/include/pango-1.0/pango/pango.h: - -/usr/include/pango-1.0/pango/pango-attributes.h: - -/usr/include/pango-1.0/pango/pango-font.h: - -/usr/include/pango-1.0/pango/pango-coverage.h: - -/usr/include/pango-1.0/pango/pango-types.h: - -/usr/include/pango-1.0/pango/pango-gravity.h: - -/usr/include/pango-1.0/pango/pango-matrix.h: - -/usr/include/pango-1.0/pango/pango-script.h: - -/usr/include/pango-1.0/pango/pango-language.h: - -/usr/include/pango-1.0/pango/pango-bidi-type.h: - -/usr/include/pango-1.0/pango/pango-break.h: - -/usr/include/pango-1.0/pango/pango-item.h: - -/usr/include/pango-1.0/pango/pango-context.h: - -/usr/include/pango-1.0/pango/pango-fontmap.h: - -/usr/include/pango-1.0/pango/pango-fontset.h: - -/usr/include/pango-1.0/pango/pango-engine.h: - -/usr/include/pango-1.0/pango/pango-glyph.h: - -/usr/include/pango-1.0/pango/pango-enum-types.h: - -/usr/include/pango-1.0/pango/pango-features.h: - -/usr/include/pango-1.0/pango/pango-glyph-item.h: - -/usr/include/pango-1.0/pango/pango-layout.h: - -/usr/include/pango-1.0/pango/pango-tabs.h: - -/usr/include/pango-1.0/pango/pango-renderer.h: - -/usr/include/pango-1.0/pango/pango-utils.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/bits/stdio.h: - -/usr/include/bits/stdio2.h: - -/usr/lib/gtk-2.0/include/gdkconfig.h: - -/usr/include/gtk-2.0/gdk/gdkdisplay.h: - -/usr/include/gtk-2.0/gdk/gdkevents.h: - -/usr/include/gtk-2.0/gdk/gdkcolor.h: - -/usr/include/gtk-2.0/gdk/gdkdnd.h: - -/usr/include/gtk-2.0/gdk/gdkinput.h: - -/usr/include/gtk-2.0/gdk/gdkcairo.h: - -/usr/include/gtk-2.0/gdk/gdkpixbuf.h: - -/usr/include/gtk-2.0/gdk/gdkrgb.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: - -/usr/include/pango-1.0/pango/pangocairo.h: - -/usr/include/gtk-2.0/gdk/gdkcursor.h: - -/usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: - -/usr/include/gtk-2.0/gdk/gdkdrawable.h: - -/usr/include/gtk-2.0/gdk/gdkgc.h: - -/usr/include/gtk-2.0/gdk/gdkenumtypes.h: - -/usr/include/gtk-2.0/gdk/gdkfont.h: - -/usr/include/gtk-2.0/gdk/gdkimage.h: - -/usr/include/gtk-2.0/gdk/gdkkeys.h: - -/usr/include/gtk-2.0/gdk/gdkpango.h: - -/usr/include/gtk-2.0/gdk/gdkpixmap.h: - -/usr/include/gtk-2.0/gdk/gdkproperty.h: - -/usr/include/gtk-2.0/gdk/gdkregion.h: - -/usr/include/gtk-2.0/gdk/gdkselection.h: - -/usr/include/gtk-2.0/gdk/gdkspawn.h: - -/usr/include/gtk-2.0/gdk/gdktestutils.h: - -/usr/include/gtk-2.0/gdk/gdkwindow.h: - -/usr/include/gtk-2.0/gdk/gdkvisual.h: - -/usr/include/gtk-2.0/gtk/gtkaboutdialog.h: - -/usr/include/gtk-2.0/gtk/gtkdialog.h: - -/usr/include/gtk-2.0/gtk/gtkwindow.h: - -/usr/include/gtk-2.0/gtk/gtkaccelgroup.h: - -/usr/include/gtk-2.0/gtk/gtkenums.h: - -/usr/include/gtk-2.0/gtk/gtkbin.h: - -/usr/include/gtk-2.0/gtk/gtkcontainer.h: - -/usr/include/gtk-2.0/gtk/gtkwidget.h: - -/usr/include/gtk-2.0/gtk/gtkobject.h: - -/usr/include/gtk-2.0/gtk/gtktypeutils.h: - -/usr/include/gtk-2.0/gtk/gtktypebuiltins.h: - -/usr/include/gtk-2.0/gtk/gtkdebug.h: - -/usr/include/gtk-2.0/gtk/gtkadjustment.h: - -/usr/include/gtk-2.0/gtk/gtkstyle.h: - -/usr/include/gtk-2.0/gtk/gtksettings.h: - -/usr/include/gtk-2.0/gtk/gtkrc.h: - -/usr/include/atk-1.0/atk/atk.h: - -/usr/include/atk-1.0/atk/atkobject.h: - -/usr/include/atk-1.0/atk/atkstate.h: - -/usr/include/atk-1.0/atk/atkrelationtype.h: - -/usr/include/atk-1.0/atk/atkaction.h: - -/usr/include/atk-1.0/atk/atkcomponent.h: - -/usr/include/atk-1.0/atk/atkutil.h: - -/usr/include/atk-1.0/atk/atkdocument.h: - -/usr/include/atk-1.0/atk/atkeditabletext.h: - -/usr/include/atk-1.0/atk/atktext.h: - -/usr/include/atk-1.0/atk/atkgobjectaccessible.h: - -/usr/include/atk-1.0/atk/atkhyperlink.h: - -/usr/include/atk-1.0/atk/atkhyperlinkimpl.h: - -/usr/include/atk-1.0/atk/atkhypertext.h: - -/usr/include/atk-1.0/atk/atkimage.h: - -/usr/include/atk-1.0/atk/atknoopobject.h: - -/usr/include/atk-1.0/atk/atknoopobjectfactory.h: - -/usr/include/atk-1.0/atk/atkobjectfactory.h: - -/usr/include/atk-1.0/atk/atkregistry.h: - -/usr/include/atk-1.0/atk/atkobjectfactory.h: - -/usr/include/atk-1.0/atk/atkrelation.h: - -/usr/include/atk-1.0/atk/atkrelationset.h: - -/usr/include/atk-1.0/atk/atkselection.h: - -/usr/include/atk-1.0/atk/atkstateset.h: - -/usr/include/atk-1.0/atk/atkstreamablecontent.h: - -/usr/include/atk-1.0/atk/atktable.h: - -/usr/include/atk-1.0/atk/atkmisc.h: - -/usr/include/atk-1.0/atk/atkvalue.h: - -/usr/include/gtk-2.0/gtk/gtkaccellabel.h: - -/usr/include/gtk-2.0/gtk/gtklabel.h: - -/usr/include/gtk-2.0/gtk/gtkmisc.h: - -/usr/include/gtk-2.0/gtk/gtkmenu.h: - -/usr/include/gtk-2.0/gtk/gtkmenushell.h: - -/usr/include/gtk-2.0/gtk/gtkaccelmap.h: - -/usr/include/gtk-2.0/gtk/gtkaccessible.h: - -/usr/include/gtk-2.0/gtk/gtkaction.h: - -/usr/include/gtk-2.0/gtk/gtkactiongroup.h: - -/usr/include/gtk-2.0/gtk/gtkactivatable.h: - -/usr/include/gtk-2.0/gtk/gtkalignment.h: - -/usr/include/gtk-2.0/gtk/gtkarrow.h: - -/usr/include/gtk-2.0/gtk/gtkaspectframe.h: - -/usr/include/gtk-2.0/gtk/gtkframe.h: - -/usr/include/gtk-2.0/gtk/gtkassistant.h: - -/usr/include/gtk-2.0/gtk/gtkbbox.h: - -/usr/include/gtk-2.0/gtk/gtkbox.h: - -/usr/include/gtk-2.0/gtk/gtkbindings.h: - -/usr/include/gtk-2.0/gtk/gtkbuildable.h: - -/usr/include/gtk-2.0/gtk/gtkbuilder.h: - -/usr/include/gtk-2.0/gtk/gtkbutton.h: - -/usr/include/gtk-2.0/gtk/gtkimage.h: - -/usr/include/gtk-2.0/gtk/gtkcalendar.h: - -/usr/include/gtk-2.0/gtk/gtksignal.h: - -/usr/include/gtk-2.0/gtk/gtkmarshal.h: - -/usr/include/gtk-2.0/gtk/gtkcelleditable.h: - -/usr/include/gtk-2.0/gtk/gtkcelllayout.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderer.h: - -/usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: - -/usr/include/gtk-2.0/gtk/gtktreemodel.h: - -/usr/include/gtk-2.0/gtk/gtktreesortable.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: - -/usr/include/gtk-2.0/gtk/gtkcellview.h: - -/usr/include/gtk-2.0/gtk/gtkcheckbutton.h: - -/usr/include/gtk-2.0/gtk/gtktogglebutton.h: - -/usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkitem.h: - -/usr/include/gtk-2.0/gtk/gtkclipboard.h: - -/usr/include/gtk-2.0/gtk/gtkselection.h: - -/usr/include/gtk-2.0/gtk/gtktextiter.h: - -/usr/include/gtk-2.0/gtk/gtktexttag.h: - -/usr/include/gtk-2.0/gtk/gtktextchild.h: - -/usr/include/gtk-2.0/gtk/gtkcolorbutton.h: - -/usr/include/gtk-2.0/gtk/gtkcolorsel.h: - -/usr/include/gtk-2.0/gtk/gtkvbox.h: - -/usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: - -/usr/include/gtk-2.0/gtk/gtkcombobox.h: - -/usr/include/gtk-2.0/gtk/gtktreeview.h: - -/usr/include/gtk-2.0/gtk/gtkdnd.h: - -/usr/include/gtk-2.0/gtk/gtkentry.h: - -/usr/include/gtk-2.0/gtk/gtkeditable.h: - -/usr/include/gtk-2.0/gtk/gtkimcontext.h: - -/usr/include/gtk-2.0/gtk/gtkentrycompletion.h: - -/usr/include/gtk-2.0/gtk/gtkliststore.h: - -/usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: - -/usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: - -/usr/include/gtk-2.0/gtk/gtkcurve.h: - -/usr/include/gtk-2.0/gtk/gtkdrawingarea.h: - -/usr/include/gtk-2.0/gtk/gtkeventbox.h: - -/usr/include/gtk-2.0/gtk/gtkexpander.h: - -/usr/include/gtk-2.0/gtk/gtkfixed.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooser.h: - -/usr/include/gtk-2.0/gtk/gtkfilefilter.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: - -/usr/include/gtk-2.0/gtk/gtkhbox.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: - -/usr/include/gtk-2.0/gtk/gtkfontbutton.h: - -/usr/include/gtk-2.0/gtk/gtkfontsel.h: - -/usr/include/gtk-2.0/gtk/gtkgamma.h: - -/usr/include/gtk-2.0/gtk/gtkgc.h: - -/usr/include/gtk-2.0/gtk/gtkhandlebox.h: - -/usr/include/gtk-2.0/gtk/gtkhbbox.h: - -/usr/include/gtk-2.0/gtk/gtkhpaned.h: - -/usr/include/gtk-2.0/gtk/gtkpaned.h: - -/usr/include/gtk-2.0/gtk/gtkhruler.h: - -/usr/include/gtk-2.0/gtk/gtkruler.h: - -/usr/include/gtk-2.0/gtk/gtkhscale.h: - -/usr/include/gtk-2.0/gtk/gtkscale.h: - -/usr/include/gtk-2.0/gtk/gtkrange.h: - -/usr/include/gtk-2.0/gtk/gtkhscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkhseparator.h: - -/usr/include/gtk-2.0/gtk/gtkseparator.h: - -/usr/include/gtk-2.0/gtk/gtkhsv.h: - -/usr/include/gtk-2.0/gtk/gtkiconfactory.h: - -/usr/include/gtk-2.0/gtk/gtkicontheme.h: - -/usr/include/gtk-2.0/gtk/gtkiconview.h: - -/usr/include/gtk-2.0/gtk/gtktooltip.h: - -/usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: - -/usr/include/gtk-2.0/gtk/gtkimmulticontext.h: - -/usr/include/gtk-2.0/gtk/gtkinputdialog.h: - -/usr/include/gtk-2.0/gtk/gtkinvisible.h: - -/usr/include/gtk-2.0/gtk/gtklayout.h: - -/usr/include/gtk-2.0/gtk/gtklinkbutton.h: - -/usr/include/gtk-2.0/gtk/gtkmain.h: - -/usr/include/gtk-2.0/gtk/gtkmenubar.h: - -/usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolitem.h: - -/usr/include/gtk-2.0/gtk/gtktooltips.h: - -/usr/include/gtk-2.0/gtk/gtkmessagedialog.h: - -/usr/include/gtk-2.0/gtk/gtkmodules.h: - -/usr/include/gtk-2.0/gtk/gtkmountoperation.h: - -/usr/include/gtk-2.0/gtk/gtknotebook.h: - -/usr/include/gtk-2.0/gtk/gtkorientable.h: - -/usr/include/gtk-2.0/gtk/gtkpagesetup.h: - -/usr/include/gtk-2.0/gtk/gtkpapersize.h: - -/usr/include/gtk-2.0/gtk/gtkplug.h: - -/usr/include/gtk-2.0/gtk/gtksocket.h: - -/usr/include/gtk-2.0/gtk/gtkprintcontext.h: - -/usr/include/gtk-2.0/gtk/gtkprintoperation.h: - -/usr/include/gtk-2.0/gtk/gtkprintsettings.h: - -/usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: - -/usr/include/gtk-2.0/gtk/gtkprogressbar.h: - -/usr/include/gtk-2.0/gtk/gtkprogress.h: - -/usr/include/gtk-2.0/gtk/gtkradioaction.h: - -/usr/include/gtk-2.0/gtk/gtktoggleaction.h: - -/usr/include/gtk-2.0/gtk/gtkradiobutton.h: - -/usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtkrecentaction.h: - -/usr/include/gtk-2.0/gtk/gtkrecentmanager.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooser.h: - -/usr/include/gtk-2.0/gtk/gtkrecentfilter.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: - -/usr/include/gtk-2.0/gtk/gtkscalebutton.h: - -/usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: - -/usr/include/gtk-2.0/gtk/gtkvscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkviewport.h: - -/usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: - -/usr/include/gtk-2.0/gtk/gtkshow.h: - -/usr/include/gtk-2.0/gtk/gtksizegroup.h: - -/usr/include/gtk-2.0/gtk/gtkspinbutton.h: - -/usr/include/gtk-2.0/gtk/gtkstatusbar.h: - -/usr/include/gtk-2.0/gtk/gtkstatusicon.h: - -/usr/include/gtk-2.0/gtk/gtkstock.h: - -/usr/include/gtk-2.0/gtk/gtktable.h: - -/usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtktextbuffer.h: - -/usr/include/gtk-2.0/gtk/gtktexttagtable.h: - -/usr/include/gtk-2.0/gtk/gtktextmark.h: - -/usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: - -/usr/include/gtk-2.0/gtk/gtktextview.h: - -/usr/include/gtk-2.0/gtk/gtktoolbar.h: - -/usr/include/gtk-2.0/gtk/gtkpixmap.h: - -/usr/include/gtk-2.0/gtk/gtktoolshell.h: - -/usr/include/gtk-2.0/gtk/gtktestutils.h: - -/usr/include/gtk-2.0/gtk/gtktreednd.h: - -/usr/include/gtk-2.0/gtk/gtktreemodelsort.h: - -/usr/include/gtk-2.0/gtk/gtktreeselection.h: - -/usr/include/gtk-2.0/gtk/gtktreestore.h: - -/usr/include/gtk-2.0/gtk/gtkuimanager.h: - -/usr/include/gtk-2.0/gtk/gtkvbbox.h: - -/usr/include/gtk-2.0/gtk/gtkversion.h: - -/usr/include/gtk-2.0/gtk/gtkvolumebutton.h: - -/usr/include/gtk-2.0/gtk/gtkvpaned.h: - -/usr/include/gtk-2.0/gtk/gtkvruler.h: - -/usr/include/gtk-2.0/gtk/gtkvscale.h: - -/usr/include/gtk-2.0/gtk/gtkvseparator.h: - -/usr/include/gtk-2.0/gtk/gtktext.h: - -/usr/include/gtk-2.0/gtk/gtktree.h: - -/usr/include/gtk-2.0/gtk/gtktreeitem.h: - -/usr/include/gtk-2.0/gtk/gtkclist.h: - -/usr/include/gtk-2.0/gtk/gtkcombo.h: - -/usr/include/gtk-2.0/gtk/gtkctree.h: - -/usr/include/gtk-2.0/gtk/gtkfilesel.h: - -/usr/include/gtk-2.0/gtk/gtkitemfactory.h: - -/usr/include/gtk-2.0/gtk/gtklist.h: - -/usr/include/gtk-2.0/gtk/gtklistitem.h: - -/usr/include/gtk-2.0/gtk/gtkoldeditable.h: - -/usr/include/gtk-2.0/gtk/gtkoptionmenu.h: - -/usr/include/gtk-2.0/gtk/gtkpreview.h: - -/usr/include/gtk-2.0/gtk/gtktipsquery.h: - -/usr/include/libglade-2.0/glade/glade.h: - -/usr/include/libglade-2.0/glade/glade-init.h: - -/usr/include/libglade-2.0/glade/glade-xml.h: - -/usr/local/include/libr/libr-gtk.h: - -/usr/local/include/libr/libr.h: - -/usr/include/sys/types.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/sys/sysmacros.h: - -elfrc.h: - -/usr/local/include/libr/libr.h: - -/usr/local/include/libr/libr-icons.h: - -/usr/include/string.h: - -/usr/include/bits/string.h: - -/usr/include/bits/string2.h: - -/usr/include/stdlib.h: - -/usr/include/bits/string3.h: - -/usr/include/sys/stat.h: - -/usr/include/bits/stat.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib.h: - -/usr/include/sysexits.h: diff -Nru elfres-0.5.0~karmic/.deps/elfrc.Po elfres-0.6.0~karmic/.deps/elfrc.Po --- elfres-0.5.0~karmic/.deps/elfrc.Po 2009-09-10 21:12:46.000000000 +0000 +++ elfres-0.6.0~karmic/.deps/elfrc.Po 1970-01-01 00:00:00.000000000 +0000 @@ -1,1379 +0,0 @@ -elfrc.o: elfrc.c /usr/include/gtk-2.0/gtk/gtk.h \ - /usr/include/gtk-2.0/gdk/gdk.h \ - /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ - /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ - /usr/include/glib-2.0/gio/gioenums.h \ - /usr/include/glib-2.0/glib-object.h \ - /usr/include/glib-2.0/gobject/gboxed.h \ - /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ - /usr/include/glib-2.0/glib/galloca.h \ - /usr/include/glib-2.0/glib/gtypes.h \ - /usr/lib/glib-2.0/include/glibconfig.h \ - /usr/include/glib-2.0/glib/gmacros.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include-fixed/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include-fixed/syslimits.h \ - /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ - /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ - /usr/include/gnu/stubs-64.h /usr/include/bits/posix1_lim.h \ - /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ - /usr/include/bits/posix2_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/float.h \ - /usr/include/glib-2.0/glib/garray.h \ - /usr/include/glib-2.0/glib/gasyncqueue.h \ - /usr/include/glib-2.0/glib/gthread.h \ - /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ - /usr/include/glib-2.0/glib/gutils.h \ - /usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/stdarg.h \ - /usr/include/glib-2.0/glib/gatomic.h \ - /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ - /usr/include/bits/sigset.h /usr/include/bits/types.h \ - /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ - /usr/include/time.h /usr/include/bits/siginfo.h \ - /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ - /usr/include/bits/sigstack.h /usr/include/bits/pthreadtypes.h \ - /usr/include/bits/sigthread.h /usr/include/glib-2.0/glib/gbase64.h \ - /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ - /usr/include/glib-2.0/glib/gcache.h /usr/include/glib-2.0/glib/glist.h \ - /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gslice.h \ - /usr/include/glib-2.0/glib/gchecksum.h \ - /usr/include/glib-2.0/glib/gcompletion.h \ - /usr/include/glib-2.0/glib/gconvert.h \ - /usr/include/glib-2.0/glib/gdataset.h \ - /usr/include/glib-2.0/glib/gdate.h /usr/include/glib-2.0/glib/gdir.h \ - /usr/include/glib-2.0/glib/gfileutils.h \ - /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ - /usr/include/glib-2.0/glib/giochannel.h \ - /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ - /usr/include/glib-2.0/glib/gslist.h \ - /usr/include/glib-2.0/glib/gstring.h \ - /usr/include/glib-2.0/glib/gunicode.h \ - /usr/include/glib-2.0/glib/gkeyfile.h \ - /usr/include/glib-2.0/glib/gmappedfile.h \ - /usr/include/glib-2.0/glib/gmarkup.h \ - /usr/include/glib-2.0/glib/gmessages.h \ - /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ - /usr/include/glib-2.0/glib/gpattern.h \ - /usr/include/glib-2.0/glib/gprimes.h \ - /usr/include/glib-2.0/glib/gqsort.h /usr/include/glib-2.0/glib/gqueue.h \ - /usr/include/glib-2.0/glib/grand.h /usr/include/glib-2.0/glib/grel.h \ - /usr/include/glib-2.0/glib/gregex.h \ - /usr/include/glib-2.0/glib/gscanner.h \ - /usr/include/glib-2.0/glib/gsequence.h \ - /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ - /usr/include/glib-2.0/glib/gstrfuncs.h \ - /usr/include/glib-2.0/glib/gtestutils.h \ - /usr/include/glib-2.0/glib/gthreadpool.h \ - /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ - /usr/include/glib-2.0/glib/gurifuncs.h \ - /usr/include/glib-2.0/gobject/genums.h \ - /usr/include/glib-2.0/gobject/gobject.h \ - /usr/include/glib-2.0/gobject/gvalue.h \ - /usr/include/glib-2.0/gobject/gparam.h \ - /usr/include/glib-2.0/gobject/gclosure.h \ - /usr/include/glib-2.0/gobject/gsignal.h \ - /usr/include/glib-2.0/gobject/gmarshal.h \ - /usr/include/glib-2.0/gobject/gparamspecs.h \ - /usr/include/glib-2.0/gobject/gsourceclosure.h \ - /usr/include/glib-2.0/gobject/gtypemodule.h \ - /usr/include/glib-2.0/gobject/gtypeplugin.h \ - /usr/include/glib-2.0/gobject/gvaluearray.h \ - /usr/include/glib-2.0/gobject/gvaluetypes.h \ - /usr/include/glib-2.0/gio/gappinfo.h \ - /usr/include/glib-2.0/gio/gasyncresult.h \ - /usr/include/glib-2.0/gio/gbufferedinputstream.h \ - /usr/include/glib-2.0/gio/gfilterinputstream.h \ - /usr/include/glib-2.0/gio/ginputstream.h \ - /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ - /usr/include/glib-2.0/gio/gfilteroutputstream.h \ - /usr/include/glib-2.0/gio/goutputstream.h \ - /usr/include/glib-2.0/gio/gcancellable.h \ - /usr/include/glib-2.0/gio/gcontenttype.h \ - /usr/include/glib-2.0/gio/gdatainputstream.h \ - /usr/include/glib-2.0/gio/gdataoutputstream.h \ - /usr/include/glib-2.0/gio/gdrive.h \ - /usr/include/glib-2.0/gio/gemblemedicon.h \ - /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ - /usr/include/glib-2.0/gio/gfile.h \ - /usr/include/glib-2.0/gio/gfileattribute.h \ - /usr/include/glib-2.0/gio/gfileenumerator.h \ - /usr/include/glib-2.0/gio/gfileicon.h \ - /usr/include/glib-2.0/gio/gfileinfo.h \ - /usr/include/glib-2.0/gio/gfileinputstream.h \ - /usr/include/glib-2.0/gio/gfilemonitor.h \ - /usr/include/glib-2.0/gio/gfilenamecompleter.h \ - /usr/include/glib-2.0/gio/gfileoutputstream.h \ - /usr/include/glib-2.0/gio/gioenumtypes.h \ - /usr/include/glib-2.0/gio/gioerror.h \ - /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ - /usr/include/glib-2.0/gio/gioscheduler.h \ - /usr/include/glib-2.0/gio/gloadableicon.h \ - /usr/include/glib-2.0/gio/gmemoryinputstream.h \ - /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ - /usr/include/glib-2.0/gio/gmount.h \ - /usr/include/glib-2.0/gio/gmountoperation.h \ - /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ - /usr/include/glib-2.0/gio/gvolumemonitor.h \ - /usr/include/glib-2.0/gio/gseekable.h \ - /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ - /usr/include/glib-2.0/gio/gthemedicon.h \ - /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ - /usr/include/gtk-2.0/gdk/gdkscreen.h /usr/include/cairo/cairo.h \ - /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ - /usr/include/cairo/cairo-deprecated.h \ - /usr/include/gtk-2.0/gdk/gdktypes.h \ - /usr/include/pango-1.0/pango/pango.h \ - /usr/include/pango-1.0/pango/pango-attributes.h \ - /usr/include/pango-1.0/pango/pango-font.h \ - /usr/include/pango-1.0/pango/pango-coverage.h \ - /usr/include/pango-1.0/pango/pango-types.h \ - /usr/include/pango-1.0/pango/pango-gravity.h \ - /usr/include/pango-1.0/pango/pango-matrix.h \ - /usr/include/pango-1.0/pango/pango-script.h \ - /usr/include/pango-1.0/pango/pango-language.h \ - /usr/include/pango-1.0/pango/pango-bidi-type.h \ - /usr/include/pango-1.0/pango/pango-break.h \ - /usr/include/pango-1.0/pango/pango-item.h \ - /usr/include/pango-1.0/pango/pango-context.h \ - /usr/include/pango-1.0/pango/pango-fontmap.h \ - /usr/include/pango-1.0/pango/pango-fontset.h \ - /usr/include/pango-1.0/pango/pango-engine.h \ - /usr/include/pango-1.0/pango/pango-glyph.h \ - /usr/include/pango-1.0/pango/pango-enum-types.h \ - /usr/include/pango-1.0/pango/pango-features.h \ - /usr/include/pango-1.0/pango/pango-glyph-item.h \ - /usr/include/pango-1.0/pango/pango-layout.h \ - /usr/include/pango-1.0/pango/pango-tabs.h \ - /usr/include/pango-1.0/pango/pango-renderer.h \ - /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ - /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ - /usr/include/bits/stdio.h /usr/include/bits/stdio2.h \ - /usr/lib/gtk-2.0/include/gdkconfig.h \ - /usr/include/gtk-2.0/gdk/gdkdisplay.h \ - /usr/include/gtk-2.0/gdk/gdkevents.h \ - /usr/include/gtk-2.0/gdk/gdkcolor.h /usr/include/gtk-2.0/gdk/gdkdnd.h \ - /usr/include/gtk-2.0/gdk/gdkinput.h /usr/include/gtk-2.0/gdk/gdkcairo.h \ - /usr/include/gtk-2.0/gdk/gdkpixbuf.h /usr/include/gtk-2.0/gdk/gdkrgb.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ - /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ - /usr/include/pango-1.0/pango/pangocairo.h \ - /usr/include/gtk-2.0/gdk/gdkcursor.h \ - /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ - /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ - /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ - /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ - /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ - /usr/include/gtk-2.0/gdk/gdkpixmap.h \ - /usr/include/gtk-2.0/gdk/gdkproperty.h \ - /usr/include/gtk-2.0/gdk/gdkregion.h \ - /usr/include/gtk-2.0/gdk/gdkselection.h \ - /usr/include/gtk-2.0/gdk/gdkspawn.h \ - /usr/include/gtk-2.0/gdk/gdktestutils.h \ - /usr/include/gtk-2.0/gdk/gdkwindow.h \ - /usr/include/gtk-2.0/gdk/gdkvisual.h \ - /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ - /usr/include/gtk-2.0/gtk/gtkdialog.h \ - /usr/include/gtk-2.0/gtk/gtkwindow.h \ - /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ - /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ - /usr/include/gtk-2.0/gtk/gtkcontainer.h \ - /usr/include/gtk-2.0/gtk/gtkwidget.h \ - /usr/include/gtk-2.0/gtk/gtkobject.h \ - /usr/include/gtk-2.0/gtk/gtktypeutils.h \ - /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ - /usr/include/gtk-2.0/gtk/gtkdebug.h \ - /usr/include/gtk-2.0/gtk/gtkadjustment.h \ - /usr/include/gtk-2.0/gtk/gtkstyle.h \ - /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ - /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ - /usr/include/atk-1.0/atk/atkstate.h \ - /usr/include/atk-1.0/atk/atkrelationtype.h \ - /usr/include/atk-1.0/atk/atkaction.h \ - /usr/include/atk-1.0/atk/atkcomponent.h \ - /usr/include/atk-1.0/atk/atkutil.h \ - /usr/include/atk-1.0/atk/atkdocument.h \ - /usr/include/atk-1.0/atk/atkeditabletext.h \ - /usr/include/atk-1.0/atk/atktext.h \ - /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ - /usr/include/atk-1.0/atk/atkhyperlink.h \ - /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ - /usr/include/atk-1.0/atk/atkhypertext.h \ - /usr/include/atk-1.0/atk/atkimage.h \ - /usr/include/atk-1.0/atk/atknoopobject.h \ - /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkregistry.h \ - /usr/include/atk-1.0/atk/atkobjectfactory.h \ - /usr/include/atk-1.0/atk/atkrelation.h \ - /usr/include/atk-1.0/atk/atkrelationset.h \ - /usr/include/atk-1.0/atk/atkselection.h \ - /usr/include/atk-1.0/atk/atkstateset.h \ - /usr/include/atk-1.0/atk/atkstreamablecontent.h \ - /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ - /usr/include/atk-1.0/atk/atkvalue.h \ - /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ - /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ - /usr/include/gtk-2.0/gtk/gtkmenu.h \ - /usr/include/gtk-2.0/gtk/gtkmenushell.h \ - /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ - /usr/include/gtk-2.0/gtk/gtkaccessible.h \ - /usr/include/gtk-2.0/gtk/gtkaction.h \ - /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ - /usr/include/gtk-2.0/gtk/gtkactivatable.h \ - /usr/include/gtk-2.0/gtk/gtkalignment.h \ - /usr/include/gtk-2.0/gtk/gtkarrow.h \ - /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ - /usr/include/gtk-2.0/gtk/gtkframe.h \ - /usr/include/gtk-2.0/gtk/gtkassistant.h \ - /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ - /usr/include/gtk-2.0/gtk/gtkbindings.h \ - /usr/include/gtk-2.0/gtk/gtkbuildable.h \ - /usr/include/gtk-2.0/gtk/gtkbuilder.h \ - /usr/include/gtk-2.0/gtk/gtkbutton.h \ - /usr/include/gtk-2.0/gtk/gtkimage.h \ - /usr/include/gtk-2.0/gtk/gtkcalendar.h \ - /usr/include/gtk-2.0/gtk/gtksignal.h \ - /usr/include/gtk-2.0/gtk/gtkmarshal.h \ - /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ - /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ - /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ - /usr/include/gtk-2.0/gtk/gtktreemodel.h \ - /usr/include/gtk-2.0/gtk/gtktreesortable.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ - /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ - /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ - /usr/include/gtk-2.0/gtk/gtkcellview.h \ - /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ - /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ - /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkitem.h \ - /usr/include/gtk-2.0/gtk/gtkclipboard.h \ - /usr/include/gtk-2.0/gtk/gtkselection.h \ - /usr/include/gtk-2.0/gtk/gtktextiter.h \ - /usr/include/gtk-2.0/gtk/gtktexttag.h \ - /usr/include/gtk-2.0/gtk/gtktextchild.h \ - /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ - /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ - /usr/include/gtk-2.0/gtk/gtkvbox.h \ - /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ - /usr/include/gtk-2.0/gtk/gtkcombobox.h \ - /usr/include/gtk-2.0/gtk/gtktreeview.h \ - /usr/include/gtk-2.0/gtk/gtkdnd.h /usr/include/gtk-2.0/gtk/gtkentry.h \ - /usr/include/gtk-2.0/gtk/gtkeditable.h \ - /usr/include/gtk-2.0/gtk/gtkimcontext.h \ - /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ - /usr/include/gtk-2.0/gtk/gtkliststore.h \ - /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ - /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ - /usr/include/gtk-2.0/gtk/gtkcurve.h \ - /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ - /usr/include/gtk-2.0/gtk/gtkeventbox.h \ - /usr/include/gtk-2.0/gtk/gtkexpander.h \ - /usr/include/gtk-2.0/gtk/gtkfixed.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ - /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ - /usr/include/gtk-2.0/gtk/gtkhbox.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ - /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ - /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ - /usr/include/gtk-2.0/gtk/gtkfontsel.h \ - /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ - /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ - /usr/include/gtk-2.0/gtk/gtkhbbox.h \ - /usr/include/gtk-2.0/gtk/gtkhpaned.h \ - /usr/include/gtk-2.0/gtk/gtkpaned.h \ - /usr/include/gtk-2.0/gtk/gtkhruler.h \ - /usr/include/gtk-2.0/gtk/gtkruler.h \ - /usr/include/gtk-2.0/gtk/gtkhscale.h \ - /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ - /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkhseparator.h \ - /usr/include/gtk-2.0/gtk/gtkseparator.h \ - /usr/include/gtk-2.0/gtk/gtkhsv.h \ - /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ - /usr/include/gtk-2.0/gtk/gtkicontheme.h \ - /usr/include/gtk-2.0/gtk/gtkiconview.h \ - /usr/include/gtk-2.0/gtk/gtktooltip.h \ - /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ - /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ - /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ - /usr/include/gtk-2.0/gtk/gtkinvisible.h \ - /usr/include/gtk-2.0/gtk/gtklayout.h \ - /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ - /usr/include/gtk-2.0/gtk/gtkmain.h \ - /usr/include/gtk-2.0/gtk/gtkmenubar.h \ - /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoolitem.h \ - /usr/include/gtk-2.0/gtk/gtktooltips.h \ - /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ - /usr/include/gtk-2.0/gtk/gtkmodules.h \ - /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ - /usr/include/gtk-2.0/gtk/gtknotebook.h \ - /usr/include/gtk-2.0/gtk/gtkorientable.h \ - /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ - /usr/include/gtk-2.0/gtk/gtkpapersize.h \ - /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ - /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ - /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ - /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ - /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ - /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ - /usr/include/gtk-2.0/gtk/gtkprogress.h \ - /usr/include/gtk-2.0/gtk/gtkradioaction.h \ - /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ - /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ - /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ - /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ - /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ - /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ - /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ - /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ - /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ - /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ - /usr/include/gtk-2.0/gtk/gtkviewport.h \ - /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ - /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ - /usr/include/gtk-2.0/gtk/gtkshow.h \ - /usr/include/gtk-2.0/gtk/gtksizegroup.h \ - /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ - /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ - /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ - /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ - /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ - /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ - /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ - /usr/include/gtk-2.0/gtk/gtktextmark.h \ - /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ - /usr/include/gtk-2.0/gtk/gtktextview.h \ - /usr/include/gtk-2.0/gtk/gtktoolbar.h \ - /usr/include/gtk-2.0/gtk/gtkpixmap.h \ - /usr/include/gtk-2.0/gtk/gtktoolshell.h \ - /usr/include/gtk-2.0/gtk/gtktestutils.h \ - /usr/include/gtk-2.0/gtk/gtktreednd.h \ - /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ - /usr/include/gtk-2.0/gtk/gtktreeselection.h \ - /usr/include/gtk-2.0/gtk/gtktreestore.h \ - /usr/include/gtk-2.0/gtk/gtkuimanager.h \ - /usr/include/gtk-2.0/gtk/gtkvbbox.h \ - /usr/include/gtk-2.0/gtk/gtkversion.h \ - /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ - /usr/include/gtk-2.0/gtk/gtkvpaned.h \ - /usr/include/gtk-2.0/gtk/gtkvruler.h \ - /usr/include/gtk-2.0/gtk/gtkvscale.h \ - /usr/include/gtk-2.0/gtk/gtkvseparator.h \ - /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ - /usr/include/gtk-2.0/gtk/gtktreeitem.h \ - /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ - /usr/include/gtk-2.0/gtk/gtkctree.h \ - /usr/include/gtk-2.0/gtk/gtkfilesel.h \ - /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ - /usr/include/gtk-2.0/gtk/gtklist.h \ - /usr/include/gtk-2.0/gtk/gtklistitem.h \ - /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ - /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ - /usr/include/gtk-2.0/gtk/gtkpreview.h \ - /usr/include/gtk-2.0/gtk/gtktipsquery.h \ - /usr/include/libglade-2.0/glade/glade.h \ - /usr/include/libglade-2.0/glade/glade-init.h \ - /usr/include/libglade-2.0/glade/glade-xml.h /usr/include/getopt.h \ - /usr/local/include/libr/libr-i18n.h /usr/local/include/libr/libr.h \ - /usr/include/sys/types.h /usr/include/endian.h \ - /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ - /usr/include/sys/select.h /usr/include/bits/select.h \ - /usr/include/sys/sysmacros.h /usr/local/include/libr/gettext.h \ - /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ - /usr/include/string.h /usr/include/bits/string.h \ - /usr/include/bits/string2.h /usr/include/stdlib.h \ - /usr/include/bits/string3.h elfrc.h /usr/local/include/libr/libr.h \ - /usr/local/include/libr/libr-icons.h /usr/include/sys/stat.h \ - /usr/include/bits/stat.h /usr/include/alloca.h \ - /usr/include/bits/stdlib.h /usr/include/sysexits.h - -/usr/include/gtk-2.0/gtk/gtk.h: - -/usr/include/gtk-2.0/gdk/gdk.h: - -/usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: - -/usr/include/glib-2.0/gio/gio.h: - -/usr/include/glib-2.0/gio/giotypes.h: - -/usr/include/glib-2.0/gio/gioenums.h: - -/usr/include/glib-2.0/glib-object.h: - -/usr/include/glib-2.0/gobject/gboxed.h: - -/usr/include/glib-2.0/gobject/gtype.h: - -/usr/include/glib-2.0/glib.h: - -/usr/include/glib-2.0/glib/galloca.h: - -/usr/include/glib-2.0/glib/gtypes.h: - -/usr/lib/glib-2.0/include/glibconfig.h: - -/usr/include/glib-2.0/glib/gmacros.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/stddef.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include-fixed/limits.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include-fixed/syslimits.h: - -/usr/include/limits.h: - -/usr/include/features.h: - -/usr/include/sys/cdefs.h: - -/usr/include/bits/wordsize.h: - -/usr/include/gnu/stubs.h: - -/usr/include/gnu/stubs-64.h: - -/usr/include/bits/posix1_lim.h: - -/usr/include/bits/local_lim.h: - -/usr/include/linux/limits.h: - -/usr/include/bits/posix2_lim.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/float.h: - -/usr/include/glib-2.0/glib/garray.h: - -/usr/include/glib-2.0/glib/gasyncqueue.h: - -/usr/include/glib-2.0/glib/gthread.h: - -/usr/include/glib-2.0/glib/gerror.h: - -/usr/include/glib-2.0/glib/gquark.h: - -/usr/include/glib-2.0/glib/gutils.h: - -/usr/lib/gcc/x86_64-linux-gnu/4.3.3/include/stdarg.h: - -/usr/include/glib-2.0/glib/gatomic.h: - -/usr/include/glib-2.0/glib/gbacktrace.h: - -/usr/include/signal.h: - -/usr/include/bits/sigset.h: - -/usr/include/bits/types.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/signum.h: - -/usr/include/time.h: - -/usr/include/bits/siginfo.h: - -/usr/include/bits/sigaction.h: - -/usr/include/bits/sigcontext.h: - -/usr/include/bits/sigstack.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/bits/sigthread.h: - -/usr/include/glib-2.0/glib/gbase64.h: - -/usr/include/glib-2.0/glib/gbookmarkfile.h: - -/usr/include/bits/time.h: - -/usr/include/glib-2.0/glib/gcache.h: - -/usr/include/glib-2.0/glib/glist.h: - -/usr/include/glib-2.0/glib/gmem.h: - -/usr/include/glib-2.0/glib/gslice.h: - -/usr/include/glib-2.0/glib/gchecksum.h: - -/usr/include/glib-2.0/glib/gcompletion.h: - -/usr/include/glib-2.0/glib/gconvert.h: - -/usr/include/glib-2.0/glib/gdataset.h: - -/usr/include/glib-2.0/glib/gdate.h: - -/usr/include/glib-2.0/glib/gdir.h: - -/usr/include/glib-2.0/glib/gfileutils.h: - -/usr/include/glib-2.0/glib/ghash.h: - -/usr/include/glib-2.0/glib/ghook.h: - -/usr/include/glib-2.0/glib/giochannel.h: - -/usr/include/glib-2.0/glib/gmain.h: - -/usr/include/glib-2.0/glib/gpoll.h: - -/usr/include/glib-2.0/glib/gslist.h: - -/usr/include/glib-2.0/glib/gstring.h: - -/usr/include/glib-2.0/glib/gunicode.h: - -/usr/include/glib-2.0/glib/gkeyfile.h: - -/usr/include/glib-2.0/glib/gmappedfile.h: - -/usr/include/glib-2.0/glib/gmarkup.h: - -/usr/include/glib-2.0/glib/gmessages.h: - -/usr/include/glib-2.0/glib/gnode.h: - -/usr/include/glib-2.0/glib/goption.h: - -/usr/include/glib-2.0/glib/gpattern.h: - -/usr/include/glib-2.0/glib/gprimes.h: - -/usr/include/glib-2.0/glib/gqsort.h: - -/usr/include/glib-2.0/glib/gqueue.h: - -/usr/include/glib-2.0/glib/grand.h: - -/usr/include/glib-2.0/glib/grel.h: - -/usr/include/glib-2.0/glib/gregex.h: - -/usr/include/glib-2.0/glib/gscanner.h: - -/usr/include/glib-2.0/glib/gsequence.h: - -/usr/include/glib-2.0/glib/gshell.h: - -/usr/include/glib-2.0/glib/gspawn.h: - -/usr/include/glib-2.0/glib/gstrfuncs.h: - -/usr/include/glib-2.0/glib/gtestutils.h: - -/usr/include/glib-2.0/glib/gthreadpool.h: - -/usr/include/glib-2.0/glib/gtimer.h: - -/usr/include/glib-2.0/glib/gtree.h: - -/usr/include/glib-2.0/glib/gurifuncs.h: - -/usr/include/glib-2.0/gobject/genums.h: - -/usr/include/glib-2.0/gobject/gobject.h: - -/usr/include/glib-2.0/gobject/gvalue.h: - -/usr/include/glib-2.0/gobject/gparam.h: - -/usr/include/glib-2.0/gobject/gclosure.h: - -/usr/include/glib-2.0/gobject/gsignal.h: - -/usr/include/glib-2.0/gobject/gmarshal.h: - -/usr/include/glib-2.0/gobject/gparamspecs.h: - -/usr/include/glib-2.0/gobject/gsourceclosure.h: - -/usr/include/glib-2.0/gobject/gtypemodule.h: - -/usr/include/glib-2.0/gobject/gtypeplugin.h: - -/usr/include/glib-2.0/gobject/gvaluearray.h: - -/usr/include/glib-2.0/gobject/gvaluetypes.h: - -/usr/include/glib-2.0/gio/gappinfo.h: - -/usr/include/glib-2.0/gio/gasyncresult.h: - -/usr/include/glib-2.0/gio/gbufferedinputstream.h: - -/usr/include/glib-2.0/gio/gfilterinputstream.h: - -/usr/include/glib-2.0/gio/ginputstream.h: - -/usr/include/glib-2.0/gio/gbufferedoutputstream.h: - -/usr/include/glib-2.0/gio/gfilteroutputstream.h: - -/usr/include/glib-2.0/gio/goutputstream.h: - -/usr/include/glib-2.0/gio/gcancellable.h: - -/usr/include/glib-2.0/gio/gcontenttype.h: - -/usr/include/glib-2.0/gio/gdatainputstream.h: - -/usr/include/glib-2.0/gio/gdataoutputstream.h: - -/usr/include/glib-2.0/gio/gdrive.h: - -/usr/include/glib-2.0/gio/gemblemedicon.h: - -/usr/include/glib-2.0/gio/gicon.h: - -/usr/include/glib-2.0/gio/gemblem.h: - -/usr/include/glib-2.0/gio/gfile.h: - -/usr/include/glib-2.0/gio/gfileattribute.h: - -/usr/include/glib-2.0/gio/gfileenumerator.h: - -/usr/include/glib-2.0/gio/gfileicon.h: - -/usr/include/glib-2.0/gio/gfileinfo.h: - -/usr/include/glib-2.0/gio/gfileinputstream.h: - -/usr/include/glib-2.0/gio/gfilemonitor.h: - -/usr/include/glib-2.0/gio/gfilenamecompleter.h: - -/usr/include/glib-2.0/gio/gfileoutputstream.h: - -/usr/include/glib-2.0/gio/gioenumtypes.h: - -/usr/include/glib-2.0/gio/gioerror.h: - -/usr/include/glib-2.0/gio/giomodule.h: - -/usr/include/glib-2.0/gmodule.h: - -/usr/include/glib-2.0/gio/gioscheduler.h: - -/usr/include/glib-2.0/gio/gloadableicon.h: - -/usr/include/glib-2.0/gio/gmemoryinputstream.h: - -/usr/include/glib-2.0/gio/gmemoryoutputstream.h: - -/usr/include/glib-2.0/gio/gmount.h: - -/usr/include/glib-2.0/gio/gmountoperation.h: - -/usr/include/glib-2.0/gio/gnativevolumemonitor.h: - -/usr/include/glib-2.0/gio/gvolumemonitor.h: - -/usr/include/glib-2.0/gio/gseekable.h: - -/usr/include/glib-2.0/gio/gsimpleasyncresult.h: - -/usr/include/glib-2.0/gio/gthemedicon.h: - -/usr/include/glib-2.0/gio/gvfs.h: - -/usr/include/glib-2.0/gio/gvolume.h: - -/usr/include/gtk-2.0/gdk/gdkscreen.h: - -/usr/include/cairo/cairo.h: - -/usr/include/cairo/cairo-version.h: - -/usr/include/cairo/cairo-features.h: - -/usr/include/cairo/cairo-deprecated.h: - -/usr/include/gtk-2.0/gdk/gdktypes.h: - -/usr/include/pango-1.0/pango/pango.h: - -/usr/include/pango-1.0/pango/pango-attributes.h: - -/usr/include/pango-1.0/pango/pango-font.h: - -/usr/include/pango-1.0/pango/pango-coverage.h: - -/usr/include/pango-1.0/pango/pango-types.h: - -/usr/include/pango-1.0/pango/pango-gravity.h: - -/usr/include/pango-1.0/pango/pango-matrix.h: - -/usr/include/pango-1.0/pango/pango-script.h: - -/usr/include/pango-1.0/pango/pango-language.h: - -/usr/include/pango-1.0/pango/pango-bidi-type.h: - -/usr/include/pango-1.0/pango/pango-break.h: - -/usr/include/pango-1.0/pango/pango-item.h: - -/usr/include/pango-1.0/pango/pango-context.h: - -/usr/include/pango-1.0/pango/pango-fontmap.h: - -/usr/include/pango-1.0/pango/pango-fontset.h: - -/usr/include/pango-1.0/pango/pango-engine.h: - -/usr/include/pango-1.0/pango/pango-glyph.h: - -/usr/include/pango-1.0/pango/pango-enum-types.h: - -/usr/include/pango-1.0/pango/pango-features.h: - -/usr/include/pango-1.0/pango/pango-glyph-item.h: - -/usr/include/pango-1.0/pango/pango-layout.h: - -/usr/include/pango-1.0/pango/pango-tabs.h: - -/usr/include/pango-1.0/pango/pango-renderer.h: - -/usr/include/pango-1.0/pango/pango-utils.h: - -/usr/include/stdio.h: - -/usr/include/libio.h: - -/usr/include/_G_config.h: - -/usr/include/wchar.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/sys_errlist.h: - -/usr/include/bits/stdio.h: - -/usr/include/bits/stdio2.h: - -/usr/lib/gtk-2.0/include/gdkconfig.h: - -/usr/include/gtk-2.0/gdk/gdkdisplay.h: - -/usr/include/gtk-2.0/gdk/gdkevents.h: - -/usr/include/gtk-2.0/gdk/gdkcolor.h: - -/usr/include/gtk-2.0/gdk/gdkdnd.h: - -/usr/include/gtk-2.0/gdk/gdkinput.h: - -/usr/include/gtk-2.0/gdk/gdkcairo.h: - -/usr/include/gtk-2.0/gdk/gdkpixbuf.h: - -/usr/include/gtk-2.0/gdk/gdkrgb.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: - -/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: - -/usr/include/pango-1.0/pango/pangocairo.h: - -/usr/include/gtk-2.0/gdk/gdkcursor.h: - -/usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: - -/usr/include/gtk-2.0/gdk/gdkdrawable.h: - -/usr/include/gtk-2.0/gdk/gdkgc.h: - -/usr/include/gtk-2.0/gdk/gdkenumtypes.h: - -/usr/include/gtk-2.0/gdk/gdkfont.h: - -/usr/include/gtk-2.0/gdk/gdkimage.h: - -/usr/include/gtk-2.0/gdk/gdkkeys.h: - -/usr/include/gtk-2.0/gdk/gdkpango.h: - -/usr/include/gtk-2.0/gdk/gdkpixmap.h: - -/usr/include/gtk-2.0/gdk/gdkproperty.h: - -/usr/include/gtk-2.0/gdk/gdkregion.h: - -/usr/include/gtk-2.0/gdk/gdkselection.h: - -/usr/include/gtk-2.0/gdk/gdkspawn.h: - -/usr/include/gtk-2.0/gdk/gdktestutils.h: - -/usr/include/gtk-2.0/gdk/gdkwindow.h: - -/usr/include/gtk-2.0/gdk/gdkvisual.h: - -/usr/include/gtk-2.0/gtk/gtkaboutdialog.h: - -/usr/include/gtk-2.0/gtk/gtkdialog.h: - -/usr/include/gtk-2.0/gtk/gtkwindow.h: - -/usr/include/gtk-2.0/gtk/gtkaccelgroup.h: - -/usr/include/gtk-2.0/gtk/gtkenums.h: - -/usr/include/gtk-2.0/gtk/gtkbin.h: - -/usr/include/gtk-2.0/gtk/gtkcontainer.h: - -/usr/include/gtk-2.0/gtk/gtkwidget.h: - -/usr/include/gtk-2.0/gtk/gtkobject.h: - -/usr/include/gtk-2.0/gtk/gtktypeutils.h: - -/usr/include/gtk-2.0/gtk/gtktypebuiltins.h: - -/usr/include/gtk-2.0/gtk/gtkdebug.h: - -/usr/include/gtk-2.0/gtk/gtkadjustment.h: - -/usr/include/gtk-2.0/gtk/gtkstyle.h: - -/usr/include/gtk-2.0/gtk/gtksettings.h: - -/usr/include/gtk-2.0/gtk/gtkrc.h: - -/usr/include/atk-1.0/atk/atk.h: - -/usr/include/atk-1.0/atk/atkobject.h: - -/usr/include/atk-1.0/atk/atkstate.h: - -/usr/include/atk-1.0/atk/atkrelationtype.h: - -/usr/include/atk-1.0/atk/atkaction.h: - -/usr/include/atk-1.0/atk/atkcomponent.h: - -/usr/include/atk-1.0/atk/atkutil.h: - -/usr/include/atk-1.0/atk/atkdocument.h: - -/usr/include/atk-1.0/atk/atkeditabletext.h: - -/usr/include/atk-1.0/atk/atktext.h: - -/usr/include/atk-1.0/atk/atkgobjectaccessible.h: - -/usr/include/atk-1.0/atk/atkhyperlink.h: - -/usr/include/atk-1.0/atk/atkhyperlinkimpl.h: - -/usr/include/atk-1.0/atk/atkhypertext.h: - -/usr/include/atk-1.0/atk/atkimage.h: - -/usr/include/atk-1.0/atk/atknoopobject.h: - -/usr/include/atk-1.0/atk/atknoopobjectfactory.h: - -/usr/include/atk-1.0/atk/atkobjectfactory.h: - -/usr/include/atk-1.0/atk/atkregistry.h: - -/usr/include/atk-1.0/atk/atkobjectfactory.h: - -/usr/include/atk-1.0/atk/atkrelation.h: - -/usr/include/atk-1.0/atk/atkrelationset.h: - -/usr/include/atk-1.0/atk/atkselection.h: - -/usr/include/atk-1.0/atk/atkstateset.h: - -/usr/include/atk-1.0/atk/atkstreamablecontent.h: - -/usr/include/atk-1.0/atk/atktable.h: - -/usr/include/atk-1.0/atk/atkmisc.h: - -/usr/include/atk-1.0/atk/atkvalue.h: - -/usr/include/gtk-2.0/gtk/gtkaccellabel.h: - -/usr/include/gtk-2.0/gtk/gtklabel.h: - -/usr/include/gtk-2.0/gtk/gtkmisc.h: - -/usr/include/gtk-2.0/gtk/gtkmenu.h: - -/usr/include/gtk-2.0/gtk/gtkmenushell.h: - -/usr/include/gtk-2.0/gtk/gtkaccelmap.h: - -/usr/include/gtk-2.0/gtk/gtkaccessible.h: - -/usr/include/gtk-2.0/gtk/gtkaction.h: - -/usr/include/gtk-2.0/gtk/gtkactiongroup.h: - -/usr/include/gtk-2.0/gtk/gtkactivatable.h: - -/usr/include/gtk-2.0/gtk/gtkalignment.h: - -/usr/include/gtk-2.0/gtk/gtkarrow.h: - -/usr/include/gtk-2.0/gtk/gtkaspectframe.h: - -/usr/include/gtk-2.0/gtk/gtkframe.h: - -/usr/include/gtk-2.0/gtk/gtkassistant.h: - -/usr/include/gtk-2.0/gtk/gtkbbox.h: - -/usr/include/gtk-2.0/gtk/gtkbox.h: - -/usr/include/gtk-2.0/gtk/gtkbindings.h: - -/usr/include/gtk-2.0/gtk/gtkbuildable.h: - -/usr/include/gtk-2.0/gtk/gtkbuilder.h: - -/usr/include/gtk-2.0/gtk/gtkbutton.h: - -/usr/include/gtk-2.0/gtk/gtkimage.h: - -/usr/include/gtk-2.0/gtk/gtkcalendar.h: - -/usr/include/gtk-2.0/gtk/gtksignal.h: - -/usr/include/gtk-2.0/gtk/gtkmarshal.h: - -/usr/include/gtk-2.0/gtk/gtkcelleditable.h: - -/usr/include/gtk-2.0/gtk/gtkcelllayout.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderer.h: - -/usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: - -/usr/include/gtk-2.0/gtk/gtktreemodel.h: - -/usr/include/gtk-2.0/gtk/gtktreesortable.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: - -/usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: - -/usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: - -/usr/include/gtk-2.0/gtk/gtkcellview.h: - -/usr/include/gtk-2.0/gtk/gtkcheckbutton.h: - -/usr/include/gtk-2.0/gtk/gtktogglebutton.h: - -/usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkitem.h: - -/usr/include/gtk-2.0/gtk/gtkclipboard.h: - -/usr/include/gtk-2.0/gtk/gtkselection.h: - -/usr/include/gtk-2.0/gtk/gtktextiter.h: - -/usr/include/gtk-2.0/gtk/gtktexttag.h: - -/usr/include/gtk-2.0/gtk/gtktextchild.h: - -/usr/include/gtk-2.0/gtk/gtkcolorbutton.h: - -/usr/include/gtk-2.0/gtk/gtkcolorsel.h: - -/usr/include/gtk-2.0/gtk/gtkvbox.h: - -/usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: - -/usr/include/gtk-2.0/gtk/gtkcombobox.h: - -/usr/include/gtk-2.0/gtk/gtktreeview.h: - -/usr/include/gtk-2.0/gtk/gtkdnd.h: - -/usr/include/gtk-2.0/gtk/gtkentry.h: - -/usr/include/gtk-2.0/gtk/gtkeditable.h: - -/usr/include/gtk-2.0/gtk/gtkimcontext.h: - -/usr/include/gtk-2.0/gtk/gtkentrycompletion.h: - -/usr/include/gtk-2.0/gtk/gtkliststore.h: - -/usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: - -/usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: - -/usr/include/gtk-2.0/gtk/gtkcurve.h: - -/usr/include/gtk-2.0/gtk/gtkdrawingarea.h: - -/usr/include/gtk-2.0/gtk/gtkeventbox.h: - -/usr/include/gtk-2.0/gtk/gtkexpander.h: - -/usr/include/gtk-2.0/gtk/gtkfixed.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooser.h: - -/usr/include/gtk-2.0/gtk/gtkfilefilter.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: - -/usr/include/gtk-2.0/gtk/gtkhbox.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: - -/usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: - -/usr/include/gtk-2.0/gtk/gtkfontbutton.h: - -/usr/include/gtk-2.0/gtk/gtkfontsel.h: - -/usr/include/gtk-2.0/gtk/gtkgamma.h: - -/usr/include/gtk-2.0/gtk/gtkgc.h: - -/usr/include/gtk-2.0/gtk/gtkhandlebox.h: - -/usr/include/gtk-2.0/gtk/gtkhbbox.h: - -/usr/include/gtk-2.0/gtk/gtkhpaned.h: - -/usr/include/gtk-2.0/gtk/gtkpaned.h: - -/usr/include/gtk-2.0/gtk/gtkhruler.h: - -/usr/include/gtk-2.0/gtk/gtkruler.h: - -/usr/include/gtk-2.0/gtk/gtkhscale.h: - -/usr/include/gtk-2.0/gtk/gtkscale.h: - -/usr/include/gtk-2.0/gtk/gtkrange.h: - -/usr/include/gtk-2.0/gtk/gtkhscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkhseparator.h: - -/usr/include/gtk-2.0/gtk/gtkseparator.h: - -/usr/include/gtk-2.0/gtk/gtkhsv.h: - -/usr/include/gtk-2.0/gtk/gtkiconfactory.h: - -/usr/include/gtk-2.0/gtk/gtkicontheme.h: - -/usr/include/gtk-2.0/gtk/gtkiconview.h: - -/usr/include/gtk-2.0/gtk/gtktooltip.h: - -/usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: - -/usr/include/gtk-2.0/gtk/gtkimmulticontext.h: - -/usr/include/gtk-2.0/gtk/gtkinputdialog.h: - -/usr/include/gtk-2.0/gtk/gtkinvisible.h: - -/usr/include/gtk-2.0/gtk/gtklayout.h: - -/usr/include/gtk-2.0/gtk/gtklinkbutton.h: - -/usr/include/gtk-2.0/gtk/gtkmain.h: - -/usr/include/gtk-2.0/gtk/gtkmenubar.h: - -/usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoolitem.h: - -/usr/include/gtk-2.0/gtk/gtktooltips.h: - -/usr/include/gtk-2.0/gtk/gtkmessagedialog.h: - -/usr/include/gtk-2.0/gtk/gtkmodules.h: - -/usr/include/gtk-2.0/gtk/gtkmountoperation.h: - -/usr/include/gtk-2.0/gtk/gtknotebook.h: - -/usr/include/gtk-2.0/gtk/gtkorientable.h: - -/usr/include/gtk-2.0/gtk/gtkpagesetup.h: - -/usr/include/gtk-2.0/gtk/gtkpapersize.h: - -/usr/include/gtk-2.0/gtk/gtkplug.h: - -/usr/include/gtk-2.0/gtk/gtksocket.h: - -/usr/include/gtk-2.0/gtk/gtkprintcontext.h: - -/usr/include/gtk-2.0/gtk/gtkprintoperation.h: - -/usr/include/gtk-2.0/gtk/gtkprintsettings.h: - -/usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: - -/usr/include/gtk-2.0/gtk/gtkprogressbar.h: - -/usr/include/gtk-2.0/gtk/gtkprogress.h: - -/usr/include/gtk-2.0/gtk/gtkradioaction.h: - -/usr/include/gtk-2.0/gtk/gtktoggleaction.h: - -/usr/include/gtk-2.0/gtk/gtkradiobutton.h: - -/usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: - -/usr/include/gtk-2.0/gtk/gtkrecentaction.h: - -/usr/include/gtk-2.0/gtk/gtkrecentmanager.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooser.h: - -/usr/include/gtk-2.0/gtk/gtkrecentfilter.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: - -/usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: - -/usr/include/gtk-2.0/gtk/gtkscalebutton.h: - -/usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: - -/usr/include/gtk-2.0/gtk/gtkvscrollbar.h: - -/usr/include/gtk-2.0/gtk/gtkviewport.h: - -/usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: - -/usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: - -/usr/include/gtk-2.0/gtk/gtkshow.h: - -/usr/include/gtk-2.0/gtk/gtksizegroup.h: - -/usr/include/gtk-2.0/gtk/gtkspinbutton.h: - -/usr/include/gtk-2.0/gtk/gtkstatusbar.h: - -/usr/include/gtk-2.0/gtk/gtkstatusicon.h: - -/usr/include/gtk-2.0/gtk/gtkstock.h: - -/usr/include/gtk-2.0/gtk/gtktable.h: - -/usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: - -/usr/include/gtk-2.0/gtk/gtktextbuffer.h: - -/usr/include/gtk-2.0/gtk/gtktexttagtable.h: - -/usr/include/gtk-2.0/gtk/gtktextmark.h: - -/usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: - -/usr/include/gtk-2.0/gtk/gtktextview.h: - -/usr/include/gtk-2.0/gtk/gtktoolbar.h: - -/usr/include/gtk-2.0/gtk/gtkpixmap.h: - -/usr/include/gtk-2.0/gtk/gtktoolshell.h: - -/usr/include/gtk-2.0/gtk/gtktestutils.h: - -/usr/include/gtk-2.0/gtk/gtktreednd.h: - -/usr/include/gtk-2.0/gtk/gtktreemodelsort.h: - -/usr/include/gtk-2.0/gtk/gtktreeselection.h: - -/usr/include/gtk-2.0/gtk/gtktreestore.h: - -/usr/include/gtk-2.0/gtk/gtkuimanager.h: - -/usr/include/gtk-2.0/gtk/gtkvbbox.h: - -/usr/include/gtk-2.0/gtk/gtkversion.h: - -/usr/include/gtk-2.0/gtk/gtkvolumebutton.h: - -/usr/include/gtk-2.0/gtk/gtkvpaned.h: - -/usr/include/gtk-2.0/gtk/gtkvruler.h: - -/usr/include/gtk-2.0/gtk/gtkvscale.h: - -/usr/include/gtk-2.0/gtk/gtkvseparator.h: - -/usr/include/gtk-2.0/gtk/gtktext.h: - -/usr/include/gtk-2.0/gtk/gtktree.h: - -/usr/include/gtk-2.0/gtk/gtktreeitem.h: - -/usr/include/gtk-2.0/gtk/gtkclist.h: - -/usr/include/gtk-2.0/gtk/gtkcombo.h: - -/usr/include/gtk-2.0/gtk/gtkctree.h: - -/usr/include/gtk-2.0/gtk/gtkfilesel.h: - -/usr/include/gtk-2.0/gtk/gtkitemfactory.h: - -/usr/include/gtk-2.0/gtk/gtklist.h: - -/usr/include/gtk-2.0/gtk/gtklistitem.h: - -/usr/include/gtk-2.0/gtk/gtkoldeditable.h: - -/usr/include/gtk-2.0/gtk/gtkoptionmenu.h: - -/usr/include/gtk-2.0/gtk/gtkpreview.h: - -/usr/include/gtk-2.0/gtk/gtktipsquery.h: - -/usr/include/libglade-2.0/glade/glade.h: - -/usr/include/libglade-2.0/glade/glade-init.h: - -/usr/include/libglade-2.0/glade/glade-xml.h: - -/usr/include/getopt.h: - -/usr/local/include/libr/libr-i18n.h: - -/usr/local/include/libr/libr.h: - -/usr/include/sys/types.h: - -/usr/include/endian.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/byteswap.h: - -/usr/include/sys/select.h: - -/usr/include/bits/select.h: - -/usr/include/sys/sysmacros.h: - -/usr/local/include/libr/gettext.h: - -/usr/include/libintl.h: - -/usr/include/locale.h: - -/usr/include/bits/locale.h: - -/usr/include/string.h: - -/usr/include/bits/string.h: - -/usr/include/bits/string2.h: - -/usr/include/stdlib.h: - -/usr/include/bits/string3.h: - -elfrc.h: - -/usr/local/include/libr/libr.h: - -/usr/local/include/libr/libr-icons.h: - -/usr/include/sys/stat.h: - -/usr/include/bits/stat.h: - -/usr/include/alloca.h: - -/usr/include/bits/stdlib.h: - -/usr/include/sysexits.h: diff -Nru elfres-0.5.0~karmic/.deps/exe-thumbnailer.Po elfres-0.6.0~karmic/.deps/exe-thumbnailer.Po --- elfres-0.5.0~karmic/.deps/exe-thumbnailer.Po 2008-03-26 03:41:07.000000000 +0000 +++ elfres-0.6.0~karmic/.deps/exe-thumbnailer.Po 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -# dummy diff -Nru elfres-0.5.0~karmic/Makefile.in elfres-0.6.0~karmic/Makefile.in --- elfres-0.5.0~karmic/Makefile.in 2010-05-03 04:05:40.000000000 +0000 +++ elfres-0.6.0~karmic/Makefile.in 2011-03-06 05:49:32.000000000 +0000 @@ -181,6 +181,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ diff -Nru elfres-0.5.0~karmic/.project elfres-0.6.0~karmic/.project --- elfres-0.5.0~karmic/.project 2008-03-30 05:56:22.000000000 +0000 +++ elfres-0.6.0~karmic/.project 1970-01-01 00:00:00.000000000 +0000 @@ -1,82 +0,0 @@ - - - elfrc - - - - - - org.eclipse.cdt.make.core.makeBuilder - clean,full,incremental, - - - org.eclipse.cdt.make.core.enableCleanBuild - true - - - org.eclipse.cdt.make.core.append_environment - true - - - org.eclipse.cdt.make.core.stopOnError - false - - - org.eclipse.cdt.make.core.enabledIncrementalBuild - true - - - org.eclipse.cdt.make.core.build.command - make - - - org.eclipse.cdt.make.core.build.target.inc - all - - - org.eclipse.cdt.make.core.build.arguments - - - - org.eclipse.cdt.make.core.environment - - - - org.eclipse.cdt.make.core.useDefaultBuildCmd - true - - - org.eclipse.cdt.make.core.enableAutoBuild - false - - - org.eclipse.cdt.make.core.build.target.auto - all - - - org.eclipse.cdt.make.core.enableFullBuild - true - - - org.eclipse.cdt.make.core.build.target.clean - clean - - - org.eclipse.cdt.core.errorOutputParser - org.eclipse.cdt.core.MakeErrorParser;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser;org.eclipse.cdt.core.VCErrorParser; - - - - - org.eclipse.cdt.make.core.ScannerConfigBuilder - - - - - - org.eclipse.cdt.core.cnature - org.eclipse.cdt.make.core.makeNature - org.eclipse.cdt.make.core.ScannerConfigNature - org.eclipse.cdt.core.ccnature - - diff -Nru elfres-0.5.0~karmic/.settings/org.eclipse.cdt.core.prefs elfres-0.6.0~karmic/.settings/org.eclipse.cdt.core.prefs --- elfres-0.5.0~karmic/.settings/org.eclipse.cdt.core.prefs 2009-01-23 18:46:43.000000000 +0000 +++ elfres-0.6.0~karmic/.settings/org.eclipse.cdt.core.prefs 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -#Fri Jan 23 11:46:43 GMT-07:00 2009 -eclipse.preferences.version=1 -indexerId=org.eclipse.cdt.core.nullindexer diff -Nru elfres-0.5.0~karmic/src/elf-exe-thumbnailer.schemas elfres-0.6.0~karmic/src/elf-exe-thumbnailer.schemas --- elfres-0.5.0~karmic/src/elf-exe-thumbnailer.schemas 2009-09-10 04:10:56.000000000 +0000 +++ elfres-0.6.0~karmic/src/elf-exe-thumbnailer.schemas 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ - - - - - /schemas/desktop/gnome/thumbnailers/application@x-executable/enable - /desktop/gnome/thumbnailers/application@x-executable/enable - elf-exe-thumbnailer - bool - true - - Enable thumbnailing of application/x-executable files - Enable thumbnailing of application/x-executable files - - - - - /schemas/desktop/gnome/thumbnailers/application@x-executable/command - /desktop/gnome/thumbnailers/application@x-executable/command - elf-exe-thumbnailer - string - elf-exe-thumbnailer.sh %s %i %o - - Command that creates a thumbnail - Command that creates a thumbnail (%o) for an ELF executable (%i) - - - - - diff -Nru elfres-0.5.0~karmic/src/elf-exe-thumbnailer.sh elfres-0.6.0~karmic/src/elf-exe-thumbnailer.sh --- elfres-0.5.0~karmic/src/elf-exe-thumbnailer.sh 2009-11-12 07:59:41.000000000 +0000 +++ elfres-0.6.0~karmic/src/elf-exe-thumbnailer.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -#!/bin/sh - -# This script extracts the icon from an executable file and uses that -# icon to represent the application in the file viewer. Currently, only -# ELF executables created by 'elficon' are supported. -# -# TODO: Add support for Windows executables -# For now see "gnome-exe-thumbnailer": -# http://packages.ubuntu.com/karmic/gnome-exe-thumbnailer -# -# Inputs: -# 1) Image Size Request -# 2) Executable File -# 3) Temporary Output File -DEFAULT_ICON=/usr/share/icons/gnome/scalable/mimetypes/application-x-executable.svg -#DEBUG_OUTPUT=/home/${USER}/thumbnail.txt -DEBUG_OUTPUT=/dev/null - -DATE=`date`; -echo "${DATE}: elficon -f \"$2\" \"$1\" \"$3\"" >> ${DEBUG_OUTPUT}; -rm "$3"; -elficon -f "$2" "$1" "$3" 2>> ${DEBUG_OUTPUT}; -# GNOME will not ever regenerate an icon for a "failed" thumbnail, -# so to work around this problem we now always generate a thumbnail. -if [ ! -e "$3" ]; then - echo "No image, using default." >> ${DEBUG_OUTPUT}; - cp "${DEFAULT_ICON}" "$3"; -fi - diff -Nru elfres-0.5.0~karmic/src/elfres.c elfres-0.6.0~karmic/src/elfres.c --- elfres-0.5.0~karmic/src/elfres.c 2009-12-03 18:12:07.000000000 +0000 +++ elfres-0.6.0~karmic/src/elfres.c 2011-03-05 18:37:23.000000000 +0000 @@ -1,22 +1,26 @@ /* * - * Copyright (c) 2008-2009 Erich Hoover + * Copyright (c) 2008-2011 Erich E. Hoover * * elfres - Adds resources into ELF files * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. * * To provide feedback, report bugs, or otherwise contact me: * ehoover at mines dot edu @@ -48,7 +52,7 @@ PARAM_PROGNAME = 0, PARAM_OPTIONS = 1, PARAM_ELF_FILE = 2, - PARAM_GUID = 3, + PARAM_UUID = 3, PARAM_RESOURCE_NAME = 3, PARAM_ICON_NAME = 3, PARAM_ICON_SIZE = 3, @@ -68,9 +72,9 @@ {"add-icon", 0, 0, 'a'}, {"clear-icons", 0, 0, 'c'}, {"find-icon", 0, 0, 'f'}, - {"get-guid", 0, 0, 'g'}, + {"get-uuid", 0, 0, 'g'}, {"retrieve-icon", 0, 0, 'r'}, - {"set-guid", 0, 0, 's'}, + {"set-uuid", 0, 0, 's'}, {"version", 0, 0, 'v'}, {NULL, 0, 0, 0} }, @@ -78,9 +82,9 @@ N_("add an icon to the ELF file"), N_("clear the file's ELF icon"), N_("find an ELF icon in the file by closest size"), - N_("get the icon GUID for the file"), + N_("get the icon UUID for the file"), N_("retrieve an icon from the ELF file"), - N_("set the icon GUID for the ELF file"), + N_("set the icon UUID for the ELF file"), N_("display the current application revision"), } }; @@ -128,8 +132,8 @@ MODE_ADD_ICON, MODE_RETRIEVE_ICON, MODE_CLEAR_ICON, - MODE_SET_GUID, - MODE_GET_GUID, + MODE_SET_UUID, + MODE_GET_UUID, MODE_FIND_ICON, MODE_LAUNCH_GUI } eMode; @@ -186,7 +190,7 @@ required_params = 5; break; case 'g': - *mode = MODE_GET_GUID; + *mode = MODE_GET_UUID; required_params = 3; break; case 'r': @@ -194,7 +198,7 @@ required_params = 5; break; case 's': - *mode = MODE_SET_GUID; + *mode = MODE_SET_UUID; required_params = 4; break; case 'v': @@ -257,7 +261,7 @@ print_icon_usage: fprintf(stderr, _("usage: %s [-a|-r] elf-file-name icon-name svg-file-name\n"), argv[PARAM_PROGNAME]); fprintf(stderr, _("usage: %s [-c|-g] elf-file-name\n"), argv[PARAM_PROGNAME]); - fprintf(stderr, _("usage: %s [-s] elf-file-name guid\n"), argv[PARAM_PROGNAME]); + fprintf(stderr, _("usage: %s [-s] elf-file-name uuid\n"), argv[PARAM_PROGNAME]); for(i=0;i - - -image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru elfres-0.5.0~karmic/src/Makefile.am elfres-0.6.0~karmic/src/Makefile.am --- elfres-0.5.0~karmic/src/Makefile.am 2009-11-20 22:58:01.000000000 +0000 +++ elfres-0.6.0~karmic/src/Makefile.am 2011-03-05 19:00:28.000000000 +0000 @@ -1,5 +1,3 @@ -SCHEMADIR=$(DESTDIR)/usr/share/gconf/schemas -GCONF_SCHEMAS=`which gconf-schemas` top_srcdir = @top_srcdir@ instdir = @bindir@ @@ -33,7 +31,7 @@ @cp ./elficon ./elficon-tmp @cp ./elfres ./elfres-tmp @./elficon-tmp -s ./elfres 1d5481ac-052c-11dd-9a75-7751c40e021a - @./elficon-tmp -a ./elfres "icon.svg" icon.svg + @./elficon-tmp -a ./elfres "one-canvas.svg" one-canvas.svg @./elfres-tmp -a ./elfres ".glade" elfres.glade @./elfres-tmp -a ./elfres ".ui" elfres.ui @./elfres-tmp -a ./elfres "gears.svg" gears.svg @@ -43,17 +41,3 @@ @rm ./elficon-tmp ./elfres-tmp @echo Post-compile complete. -# Add the thumbnailer and the elficon symbolic link to the install list -dist_inst_SCRIPTS = \ - elf-exe-thumbnailer.sh - -# Install the thumbnailer script for the local user even if called with sudo -install: install-am - @echo "Installing thumbnailer globally..." - @mkdir -p $(SCHEMADIR)/ - @cp elf-exe-thumbnailer.schemas $(SCHEMADIR) - @if [ -n "$(GCONF_SCHEMAS)" ]; then \ - $(GCONF_SCHEMAS) --register $(SCHEMADIR)/elf-exe-thumbnailer.schemas; \ - fi - @echo Done - diff -Nru elfres-0.5.0~karmic/src/Makefile.in elfres-0.6.0~karmic/src/Makefile.in --- elfres-0.5.0~karmic/src/Makefile.in 2010-05-03 04:05:40.000000000 +0000 +++ elfres-0.6.0~karmic/src/Makefile.in 2011-03-06 05:49:32.000000000 +0000 @@ -15,7 +15,6 @@ @SET_MAKE@ - VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ @@ -37,8 +36,7 @@ host_triplet = @host@ bin_PROGRAMS = elfres$(EXEEXT) elficon$(EXEEXT) subdir = src -DIST_COMMON = $(dist_inst_SCRIPTS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \ @@ -53,7 +51,7 @@ mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(instdir)" +am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) elficon_SOURCES = elficon.c elficon_OBJECTS = elficon.$(OBJEXT) @@ -64,28 +62,6 @@ elfres_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(elfres_LDFLAGS) \ $(LDFLAGS) -o $@ -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -SCRIPTS = $(dist_inst_SCRIPTS) DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles @@ -178,6 +154,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ @@ -241,8 +219,6 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -SCHEMADIR = $(DESTDIR)/usr/share/gconf/schemas -GCONF_SCHEMAS = `which gconf-schemas` instdir = @bindir@ INCLUDES = \ -DGUI_ENABLED=@GUI_ENABLED@ \ @@ -260,11 +236,6 @@ @LIBGLADE_LIBS@ \ @LIBR_LIBS@ - -# Add the thumbnailer and the elficon symbolic link to the install list -dist_inst_SCRIPTS = \ - elf-exe-thumbnailer.sh - all: all-am .SUFFIXES: @@ -345,40 +316,6 @@ elfres$(EXEEXT): $(elfres_OBJECTS) $(elfres_DEPENDENCIES) @rm -f elfres$(EXEEXT) $(elfres_LINK) $(elfres_OBJECTS) $(elfres_LDADD) $(LIBS) -install-dist_instSCRIPTS: $(dist_inst_SCRIPTS) - @$(NORMAL_INSTALL) - test -z "$(instdir)" || $(MKDIR_P) "$(DESTDIR)$(instdir)" - @list='$(dist_inst_SCRIPTS)'; test -n "$(instdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n' \ - -e 'h;s|.*|.|' \ - -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) { files[d] = files[d] " " $$1; \ - if (++n[d] == $(am__install_max)) { \ - print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ - else { print "f", d "/" $$4, $$1 } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(instdir)$$dir'"; \ - $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(instdir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-dist_instSCRIPTS: - @$(NORMAL_UNINSTALL) - @list='$(dist_inst_SCRIPTS)'; test -n "$(instdir)" || exit 0; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 's,.*/,,;$(transform)'`; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(instdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(instdir)" && rm -f $$files mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -501,11 +438,12 @@ done check-am: all-am check: check-am -all-am: Makefile $(PROGRAMS) $(SCRIPTS) all-local +all-am: Makefile $(PROGRAMS) all-local installdirs: - for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(instdir)"; do \ + for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done +install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am @@ -552,7 +490,7 @@ info-am: -install-data-am: install-dist_instSCRIPTS +install-data-am: install-dvi: install-dvi-am @@ -598,7 +536,7 @@ ps-am: -uninstall-am: uninstall-binPROGRAMS uninstall-dist_instSCRIPTS +uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip @@ -607,15 +545,14 @@ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-data \ - install-data-am install-dist_instSCRIPTS install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am \ - uninstall-binPROGRAMS uninstall-dist_instSCRIPTS + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS # TODO: Handle symbolic link better (check if exists) @@ -628,7 +565,7 @@ @cp ./elficon ./elficon-tmp @cp ./elfres ./elfres-tmp @./elficon-tmp -s ./elfres 1d5481ac-052c-11dd-9a75-7751c40e021a - @./elficon-tmp -a ./elfres "icon.svg" icon.svg + @./elficon-tmp -a ./elfres "one-canvas.svg" one-canvas.svg @./elfres-tmp -a ./elfres ".glade" elfres.glade @./elfres-tmp -a ./elfres ".ui" elfres.ui @./elfres-tmp -a ./elfres "gears.svg" gears.svg @@ -638,16 +575,6 @@ @rm ./elficon-tmp ./elfres-tmp @echo Post-compile complete. -# Install the thumbnailer script for the local user even if called with sudo -install: install-am - @echo "Installing thumbnailer globally..." - @mkdir -p $(SCHEMADIR)/ - @cp elf-exe-thumbnailer.schemas $(SCHEMADIR) - @if [ -n "$(GCONF_SCHEMAS)" ]; then \ - $(GCONF_SCHEMAS) --register $(SCHEMADIR)/elf-exe-thumbnailer.schemas; \ - fi - @echo Done - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -Nru elfres-0.5.0~karmic/src/one-canvas.svg elfres-0.6.0~karmic/src/one-canvas.svg --- elfres-0.5.0~karmic/src/one-canvas.svg 2009-11-15 02:50:55.000000000 +0000 +++ elfres-0.6.0~karmic/src/one-canvas.svg 2011-03-05 18:47:48.000000000 +0000 @@ -19,12 +19,12 @@ viewBox="0 0 122.418 334.39" xml:space="preserve" sodipodi:version="0.32" - inkscape:version="0.47pre4 r22446" + inkscape:version="0.48+devel r9864" sodipodi:docname="one-canvas.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">image/svg+xmlone-canvas + enabled="true" + empspacing="5" + snapvisiblegridlinesonly="true" /> Instructions: Place each icon's contenton the correct layer and within thecorrect bounding box. + sodipodi:role="line" + x="-141.65428" + y="32.324368" + id="tspan3733">on the correct layer and within thecorrect bounding box. + The appropriate icon will automaticallybe selected when possible, otherwisethe largest icon will be scaled. + sodipodi:role="line">The appropriate icon will automaticallybe selected when possible, otherwisethe largest icon will be scaled. + \ No newline at end of file + id="path4014" /> diff -Nru elfres-0.5.0~karmic/src/testalsa.sh elfres-0.6.0~karmic/src/testalsa.sh --- elfres-0.5.0~karmic/src/testalsa.sh 2009-11-20 23:08:51.000000000 +0000 +++ elfres-0.6.0~karmic/src/testalsa.sh 2011-03-05 18:09:57.000000000 +0000 @@ -2,7 +2,7 @@ cp /usr/bin/alsamixer . ./elficon -s alsamixer 1d5481ac-052c-11dd-9a75-7751c40e021a -./elficon -a alsamixer "icon.svg" icon.svg +./elficon -a alsamixer "icon.svg" one-canvas.svg ./elfres -a alsamixer ".glade" elfres.glade ls -alF alsamixer ./elficon -a alsamixer "icon.svg" gears.svg