diff options
Diffstat (limited to 'projects/gvpndialer/trunk')
53 files changed, 27314 insertions, 0 deletions
diff --git a/projects/gvpndialer/trunk/AUTHORS b/projects/gvpndialer/trunk/AUTHORS new file mode 100644 index 0000000..54a6c46 --- /dev/null +++ b/projects/gvpndialer/trunk/AUTHORS @@ -0,0 +1,2 @@ +**Written by Stanley Kamithi +**Email skamithi@yahoo.com diff --git a/projects/gvpndialer/trunk/ChangeLog b/projects/gvpndialer/trunk/ChangeLog new file mode 100644 index 0000000..72fd3b3 --- /dev/null +++ b/projects/gvpndialer/trunk/ChangeLog @@ -0,0 +1,16 @@ +version 1.1 +* Fixed Segv whe you start gvpndialer in hidden mode +* Save password prompt is not properly handled by gvpndialer +version 1.0 +* Removed expect lib dependency (finally!) +* program will detect if group password needs to be entered by user +* Made status bar a little more verbose about what vpnclient is doing +* Profile list is now sorted +* Fixed some minor bugs + +version 0.9 +Bug Fixes and enhancements: + +1179825: Profile list isn't filled properly. Thanks to ddemus +1152758: Additional Preferences. Ability to configure default user. Thanks to + cgreco16 diff --git a/projects/gvpndialer/trunk/Makefile.am b/projects/gvpndialer/trunk/Makefile.am new file mode 100644 index 0000000..72c5a35 --- /dev/null +++ b/projects/gvpndialer/trunk/Makefile.am @@ -0,0 +1,30 @@ +## Process this file with automake to produce Makefile.in + +SUBDIRS = src + +EXTRA_DIST = \ + autogen.sh \ + gvpn_dialer.glade \ + gvpn_dialer.gladep + +install-data-local: + @$(NORMAL_INSTALL) + if test -d $(srcdir)/pixmaps; then \ + $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \ + for pixmap in $(srcdir)/pixmaps/*; do \ + if test -f $$pixmap; then \ + $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \ + fi \ + done \ + fi + +dist-hook: + if test -d pixmaps; then \ + mkdir $(distdir)/pixmaps; \ + for pixmap in pixmaps/*; do \ + if test -f $$pixmap; then \ + cp -p $$pixmap $(distdir)/pixmaps; \ + fi \ + done \ + fi + diff --git a/projects/gvpndialer/trunk/NEWS b/projects/gvpndialer/trunk/NEWS new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/projects/gvpndialer/trunk/NEWS diff --git a/projects/gvpndialer/trunk/README b/projects/gvpndialer/trunk/README new file mode 100644 index 0000000..df4b397 --- /dev/null +++ b/projects/gvpndialer/trunk/README @@ -0,0 +1,26 @@ +GNOME VPN Dialer +---------------- + +This is a GNOME2 GUI for the Cisco Vpnclient linux application. +It works much like the Windows version. This software is not +supported by Cisco Systems. + +Features: +* Saves the last selected Profile +* Minimizes to the system panel when a VPN connection is activated. +(require libegg) +* Informs user if vpnclient is abruptly killed +* Prompts user if group password is required +* User can define a default username +( no support for default password. I feel this is not secure ) + + +User Configurable Options +* Location of the vpnclient app (default: /usr/local/bin/vpnclient) +* Location of the PCF files (default: /etc/CiscoSystemsVPNClient/Profiles/ ) +To install this program, run ./configure then "make". + + +Requirements: +* GNOME2 Libraries +* PCRE Libraries diff --git a/projects/gvpndialer/trunk/Status-Dock.png b/projects/gvpndialer/trunk/Status-Dock.png Binary files differnew file mode 100644 index 0000000..95ab8f9 --- /dev/null +++ b/projects/gvpndialer/trunk/Status-Dock.png diff --git a/projects/gvpndialer/trunk/TODO b/projects/gvpndialer/trunk/TODO new file mode 100644 index 0000000..c79b388 --- /dev/null +++ b/projects/gvpndialer/trunk/TODO @@ -0,0 +1,11 @@ +TODO: +--- +Allow user to create their own PCF file. + +BUGS: +-- +(really a vpnclient bug). If you shutdown your ethernet interface, +the vpnclient will not shutdown quickly. If you try and access +VPN stats at this time, the whole PC will lockup. +Want to check to see if the ethernet interface is up before allowing +user to check vpn stats. diff --git a/projects/gvpndialer/trunk/acconfig.h b/projects/gvpndialer/trunk/acconfig.h new file mode 100644 index 0000000..0a76fa0 --- /dev/null +++ b/projects/gvpndialer/trunk/acconfig.h @@ -0,0 +1,7 @@ +#undef ENABLE_NLS +#undef HAVE_CATGETS +#undef HAVE_GETTEXT +#undef GETTEXT_PACKAGE +#undef HAVE_LC_MESSAGES +#undef HAVE_STPCPY +#undef HAVE_LIBSM diff --git a/projects/gvpndialer/trunk/aclocal.m4 b/projects/gvpndialer/trunk/aclocal.m4 new file mode 100644 index 0000000..175263e --- /dev/null +++ b/projects/gvpndialer/trunk/aclocal.m4 @@ -0,0 +1,1575 @@ +# generated automatically by aclocal 1.9.2 -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 +# Free Software Foundation, Inc. +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +# Copyright (C) 1995-2002 Free Software Foundation, Inc. +# Copyright (C) 2001-2003,2004 Red Hat, Inc. +# +# This file is free software, distributed under the terms of the GNU +# General Public License. As a special exception to the GNU General +# Public License, this file may be distributed as part of a program +# that contains a configuration script generated by Autoconf, under +# the same distribution terms as the rest of that program. +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU Public License +# but which still want to provide support for the GNU gettext functionality. +# +# Macro to add for using GNU gettext. +# Ulrich Drepper <drepper@cygnus.com>, 1995, 1996 +# +# Modified to never use included libintl. +# Owen Taylor <otaylor@redhat.com>, 12/15/1998 +# +# Major rework to remove unused code +# Owen Taylor <otaylor@redhat.com>, 12/11/2002 +# +# Added better handling of ALL_LINGUAS from GNU gettext version +# written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002 +# +# Modified to require ngettext +# Matthias Clasen <mclasen@redhat.com> 08/06/2004 +# +# We need this here as well, since someone might use autoconf-2.5x +# to configure GLib then an older version to configure a package +# using AM_GLIB_GNU_GETTEXT +AC_PREREQ(2.53) + +dnl +dnl We go to great lengths to make sure that aclocal won't +dnl try to pull in the installed version of these macros +dnl when running aclocal in the glib directory. +dnl +m4_copy([AC_DEFUN],[glib_DEFUN]) +m4_copy([AC_REQUIRE],[glib_REQUIRE]) +dnl +dnl At the end, if we're not within glib, we'll define the public +dnl definitions in terms of our private definitions. +dnl + +# GLIB_LC_MESSAGES +#-------------------- +glib_DEFUN([GLIB_LC_MESSAGES], + [AC_CHECK_HEADERS([locale.h]) + if test $ac_cv_header_locale_h = yes; then + AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, + [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES], + am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) + if test $am_cv_val_LC_MESSAGES = yes; then + AC_DEFINE(HAVE_LC_MESSAGES, 1, + [Define if your <locale.h> file defines LC_MESSAGES.]) + fi + fi]) + +# GLIB_PATH_PROG_WITH_TEST +#---------------------------- +dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, +dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) +glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], +[# Extract the first word of "$2", so it can be a program name with args. +set dummy $2; ac_word=[$]2 +AC_MSG_CHECKING([for $ac_word]) +AC_CACHE_VAL(ac_cv_path_$1, +[case "[$]$1" in + /*) + ac_cv_path_$1="[$]$1" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in ifelse([$5], , $PATH, [$5]); do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if [$3]; then + ac_cv_path_$1="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" +dnl If no 4th arg is given, leave the cache variable unset, +dnl so AC_PATH_PROGS will keep looking. +ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" +])dnl + ;; +esac])dnl +$1="$ac_cv_path_$1" +if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then + AC_MSG_RESULT([$]$1) +else + AC_MSG_RESULT(no) +fi +AC_SUBST($1)dnl +]) + +# GLIB_WITH_NLS +#----------------- +glib_DEFUN([GLIB_WITH_NLS], + dnl NLS is obligatory + [USE_NLS=yes + AC_SUBST(USE_NLS) + + gt_cv_have_gettext=no + + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= + + AC_CHECK_HEADER(libintl.h, + [gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" + + # + # First check in libc + # + AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, + [AC_TRY_LINK([ +#include <libintl.h> +], + [return !ngettext ("","", 1)], + gt_cv_func_ngettext_libc=yes, + gt_cv_func_ngettext_libc=no) + ]) + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, + [AC_TRY_LINK([ +#include <libintl.h> +], + [return !dgettext ("","")], + gt_cv_func_dgettext_libc=yes, + gt_cv_func_dgettext_libc=no) + ]) + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CHECK_FUNCS(bind_textdomain_codeset) + fi + + # + # If we don't have everything we want, check in libintl + # + if test "$gt_cv_func_dgettext_libc" != "yes" \ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + + AC_CHECK_LIB(intl, bindtextdomain, + [AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dgettext, + gt_cv_func_dgettext_libintl=yes)])]) + + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then + AC_MSG_CHECKING([if -liconv is needed to use gettext]) + AC_MSG_RESULT([]) + AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dcgettext, + [gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv], + :,-liconv)], + :,-liconv) + fi + + # + # If we found libintl, then check in it for bind_textdomain_codeset(); + # we'll prefer libc if neither have bind_textdomain_codeset(), + # and both have dgettext and ngettext + # + if test "$gt_cv_func_dgettext_libintl" = "yes" ; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS -lintl $libintl_extra_libs" + unset ac_cv_func_bind_textdomain_codeset + AC_CHECK_FUNCS(bind_textdomain_codeset) + LIBS="$glib_save_LIBS" + + if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then + gt_cv_func_dgettext_libc=no + else + if test "$gt_cv_func_dgettext_libc" = "yes" \ + && test "$gt_cv_func_ngettext_libc" = "yes"; then + gt_cv_func_dgettext_libintl=no + fi + fi + fi + fi + + if test "$gt_cv_func_dgettext_libc" = "yes" \ + || test "$gt_cv_func_dgettext_libintl" = "yes"; then + gt_cv_have_gettext=yes + fi + + if test "$gt_cv_func_dgettext_libintl" = "yes"; then + INTLLIBS="-lintl $libintl_extra_libs" + fi + + if test "$gt_cv_have_gettext" = "yes"; then + AC_DEFINE(HAVE_GETTEXT,1, + [Define if the GNU gettext() function is already present or preinstalled.]) + GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" + AC_CHECK_FUNCS(dcgettext) + AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) + GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) + AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr], + [CATOBJEXT=.gmo + DATADIRNAME=share], + [case $host in + *-*-solaris*) + dnl On Solaris, if bind_textdomain_codeset is in libc, + dnl GNU format message catalog is always supported, + dnl since both are added to the libc all together. + dnl Hence, we'd like to go with DATADIRNAME=share and + dnl and CATOBJEXT=.gmo in this case. + AC_CHECK_FUNC(bind_textdomain_codeset, + [CATOBJEXT=.gmo + DATADIRNAME=share], + [CATOBJEXT=.mo + DATADIRNAME=lib]) + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac]) + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi + ]) + + if test "$gt_cv_have_gettext" = "yes" ; then + AC_DEFINE(ENABLE_NLS, 1, + [always defined to indicate that i18n is enabled]) + fi + + dnl Test whether we really found GNU xgettext. + if test "$XGETTEXT" != ":"; then + dnl If it is not GNU xgettext we define it as : so that the + dnl Makefiles still can work. + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else + AC_MSG_RESULT( + [found xgettext program is not GNU xgettext; ignore it]) + XGETTEXT=":" + fi + fi + + # We need to process the po/ directory. + POSUB=po + + AC_OUTPUT_COMMANDS( + [case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac]) + + dnl These rules are solely for the distribution goal. While doing this + dnl we only have to keep exactly one list of the available catalogs + dnl in configure.in. + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done + + dnl Make all variables we use known to autoconf. + AC_SUBST(CATALOGS) + AC_SUBST(CATOBJEXT) + AC_SUBST(DATADIRNAME) + AC_SUBST(GMOFILES) + AC_SUBST(INSTOBJEXT) + AC_SUBST(INTLLIBS) + AC_SUBST(PO_IN_DATADIR_TRUE) + AC_SUBST(PO_IN_DATADIR_FALSE) + AC_SUBST(POFILES) + AC_SUBST(POSUB) + ]) + +# AM_GLIB_GNU_GETTEXT +# ------------------- +# Do checks necessary for use of gettext. If a suitable implementation +# of gettext is found in either in libintl or in the C library, +# it will set INTLLIBS to the libraries needed for use of gettext +# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable +# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() +# on various variables needed by the Makefile.in.in installed by +# glib-gettextize. +dnl +glib_DEFUN([GLIB_GNU_GETTEXT], + [AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_HEADER_STDC])dnl + + GLIB_LC_MESSAGES + GLIB_WITH_NLS + + if test "$gt_cv_have_gettext" = "yes"; then + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else + AC_MSG_CHECKING(for catalogs to be installed) + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi + done + LINGUAS=$NEW_LINGUAS + AC_MSG_RESULT($LINGUAS) + fi + + dnl Construct list of names of catalog files to be constructed. + if test -n "$LINGUAS"; then + for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done + fi + fi + + dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly + dnl find the mkinstalldirs script in another subdir but ($top_srcdir). + dnl Try to locate is. + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi + AC_SUBST(MKINSTALLDIRS) + + dnl Generate list of files to be processed by xgettext which will + dnl be included in po/Makefile. + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES + ]) + +# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) +# ------------------------------- +# Define VARIABLE to the location where catalog files will +# be installed by po/Makefile. +glib_DEFUN([GLIB_DEFINE_LOCALEDIR], +[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl +glib_save_prefix="$prefix" +glib_save_exec_prefix="$exec_prefix" +test "x$prefix" = xNONE && prefix=$ac_default_prefix +test "x$exec_prefix" = xNONE && exec_prefix=$prefix +if test "x$CATOBJEXT" = "x.mo" ; then + localedir=`eval echo "${libdir}/locale"` +else + localedir=`eval echo "${datadir}/locale"` +fi +prefix="$glib_save_prefix" +exec_prefix="$glib_save_exec_prefix" +AC_DEFINE_UNQUOTED($1, "$localedir", + [Define the location where the catalogs will be installed]) +]) + +dnl +dnl Now the definitions that aclocal will find +dnl +ifdef(glib_configure_in,[],[ +AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) +AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) +])dnl + + +dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not) +dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page +dnl also defines GSTUFF_PKG_ERRORS on error +AC_DEFUN([PKG_CHECK_MODULES], [ + succeeded=no + + if test -z "$PKG_CONFIG"; then + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) + fi + + if test "$PKG_CONFIG" = "no" ; then + echo "*** The pkg-config script could not be found. Make sure it is" + echo "*** in your path, or set the PKG_CONFIG environment variable" + echo "*** to the full path to pkg-config." + echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." + else + PKG_CONFIG_MIN_VERSION=0.9.0 + if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then + AC_MSG_CHECKING(for $2) + + if $PKG_CONFIG --exists "$2" ; then + AC_MSG_RESULT(yes) + succeeded=yes + + AC_MSG_CHECKING($1_CFLAGS) + $1_CFLAGS=`$PKG_CONFIG --cflags "$2"` + AC_MSG_RESULT($$1_CFLAGS) + + AC_MSG_CHECKING($1_LIBS) + $1_LIBS=`$PKG_CONFIG --libs "$2"` + AC_MSG_RESULT($$1_LIBS) + else + $1_CFLAGS="" + $1_LIBS="" + ## If we have a custom action on failure, don't print errors, but + ## do set a variable so people can do so. + $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` + ifelse([$4], ,echo $$1_PKG_ERRORS,) + fi + + AC_SUBST($1_CFLAGS) + AC_SUBST($1_LIBS) + else + echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." + echo "*** See http://www.freedesktop.org/software/pkgconfig" + fi + fi + + if test $succeeded = yes; then + ifelse([$3], , :, [$3]) + else + ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4]) + fi +]) + + + +# -*- Autoconf -*- +# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Generated from amversion.in; do not edit by hand. + +# 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, 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 + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION so it can be traced. +# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], + [AM_AUTOMAKE_VERSION([1.9.2])]) + +# AM_AUX_DIR_EXPAND + +# Copyright (C) 2001, 2003 Free Software Foundation, Inc. + +# 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, 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. + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +# `$srcdir', `$srcdir/..', or `$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is `.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) + + +# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003 +# Free Software Foundation, Inc. + +# 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, 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. + +# serial 3 + +# This was merged into AC_PROG_CC in Autoconf. + +AU_DEFUN([AM_PROG_CC_STDC], +[AC_PROG_CC +AC_DIAGNOSE([obsolete], [$0: + your code should no longer depend upon `am_cv_prog_cc_stdc', but upon + `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when + you adjust the code. You can also remove the above call to + AC_PROG_CC if you already called it elsewhere.]) +am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc +]) +AU_DEFUN([fp_PROG_CC_STDC]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. + +# 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, 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. + +# serial 6 + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE]) +AC_SUBST([$1_FALSE]) +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# serial 7 -*- Autoconf -*- + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 +# Free Software Foundation, Inc. + +# 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, 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. + + +# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "GCJ", or "OBJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +ifelse([$1], CC, [depcc="$CC" am_compiler_list=], + [$1], CXX, [depcc="$CXX" am_compiler_list=], + [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE(dependency-tracking, +[ --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH]) +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 +# Free Software Foundation, Inc. + +# 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, 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. + +#serial 2 + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[for mf in $CONFIG_FILES; do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # So let's grep whole file. + if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done +done +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking +# is enabled. FIXME. This creates each `.P' file that we will +# need in order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) + +# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc. + +# 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, 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. + +# serial 7 + +# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. +AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) + +# Do all the work for Automake. -*- Autoconf -*- + +# This macro actually does too much some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 +# Free Software Foundation, Inc. + +# 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, 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. + +# serial 11 + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.58])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +# test to see if srcdir already configured +if test "`cd $srcdir && pwd`" != "`pwd`" && + test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +AM_MISSING_PROG(AUTOCONF, autoconf) +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +AM_MISSING_PROG(AUTOHEADER, autoheader) +AM_MISSING_PROG(MAKEINFO, makeinfo) +AM_PROG_INSTALL_SH +AM_PROG_INSTALL_STRIP +AC_REQUIRE([AM_PROG_MKDIR_P])dnl +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +]) +]) + + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $1 | $1:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. + +# Copyright (C) 2001, 2003 Free Software Foundation, Inc. + +# 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, 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. + +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +install_sh=${install_sh-"$am_aux_dir/install-sh"} +AC_SUBST(install_sh)]) + +# -*- Autoconf -*- +# Copyright (C) 2003 Free Software Foundation, Inc. + +# 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, 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. + +# serial 1 + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Add --enable-maintainer-mode option to configure. +# From Jim Meyering + +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004 +# Free Software Foundation, Inc. + +# 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, 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. + +# serial 3 + +AC_DEFUN([AM_MAINTAINER_MODE], +[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) + dnl maintainer-mode is disabled by default + AC_ARG_ENABLE(maintainer-mode, +[ --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer], + USE_MAINTAINER_MODE=$enableval, + USE_MAINTAINER_MODE=no) + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) + AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes]) + MAINT=$MAINTAINER_MODE_TRUE + AC_SUBST(MAINT)dnl +] +) + +AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. + +# 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, 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. + +# serial 2 + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], +[am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo done +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# We grep out `Entering directory' and `Leaving directory' +# messages which can occur if `w' ends up in MAKEFLAGS. +# In particular we don't look at `^make:' because GNU make might +# be invoked under some other name (usually "gmake"), in which +# case it prints its new name instead of `make'. +if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then + am__include=include + am__quote= + _am_result=GNU +fi +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then + am__include=.include + am__quote="\"" + _am_result=BSD + fi +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) + +# -*- Autoconf -*- + + +# Copyright (C) 1997, 1999, 2000, 2001, 2003 Free Software Foundation, Inc. + +# 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, 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. + +# serial 3 + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it supports --run. +# If it does, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) +fi +]) + +# AM_PROG_MKDIR_P +# --------------- +# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. + +# Copyright (C) 2003, 2004 Free Software Foundation, Inc. + +# 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, 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. + +# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories +# created by `make install' are always world readable, even if the +# installer happens to have an overly restrictive umask (e.g. 077). +# This was a mistake. There are at least two reasons why we must not +# use `-m 0755': +# - it causes special bits like SGID to be ignored, +# - it may be too restrictive (some setups expect 775 directories). +# +# Do not use -m 0755 and let people choose whatever they expect by +# setting umask. +# +# We cannot accept any implementation of `mkdir' that recognizes `-p'. +# Some implementations (such as Solaris 8's) are not thread-safe: if a +# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' +# concurrently, both version can detect that a/ is missing, but only +# one can create it and the other will error out. Consequently we +# restrict ourselves to GNU make (using the --version option ensures +# this.) +AC_DEFUN([AM_PROG_MKDIR_P], +[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then + # We used to keeping the `.' as first argument, in order to + # allow $(mkdir_p) to be used without argument. As in + # $(mkdir_p) $(somedir) + # where $(somedir) is conditionally defined. However this is wrong + # for two reasons: + # 1. if the package is installed by a user who cannot write `.' + # make install will fail, + # 2. the above comment should most certainly read + # $(mkdir_p) $(DESTDIR)$(somedir) + # so it does not work when $(somedir) is undefined and + # $(DESTDIR) is not. + # To support the latter case, we have to write + # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), + # so the `.' trick is pointless. + mkdir_p='mkdir -p --' +else + # On NextStep and OpenStep, the `mkdir' command does not + # recognize any option. It will interpret all options as + # directories to create, and then abort because `.' already + # exists. + for d in ./-p ./--version; + do + test -d $d && rmdir $d + done + # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. + if test -f "$ac_aux_dir/mkinstalldirs"; then + mkdir_p='$(mkinstalldirs)' + else + mkdir_p='$(install_sh) -d' + fi +fi +AC_SUBST([mkdir_p])]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. + +# 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, 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. + +# serial 2 + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# ------------------------------ +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +# _AM_SET_OPTIONS(OPTIONS) +# ---------------------------------- +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# +# Check to make sure that the build environment is sane. +# + +# Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc. + +# 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, 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. + +# serial 3 + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Just in case +sleep 1 +echo timestamp > conftest.file +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t $srcdir/configure conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # 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". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +alias in your environment]) + fi + + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT(yes)]) + +# AM_PROG_INSTALL_STRIP + +# Copyright (C) 2001, 2003 Free Software Foundation, Inc. + +# 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, 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. + +# One issue with vendor `install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in `make install-strip', and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004 Free Software Foundation, Inc. + +# 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, 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. + +# serial 1 + + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of `v7', `ustar', or `pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. +AM_MISSING_PROG([AMTAR], [tar]) +m4_if([$1], [v7], + [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], + [m4_case([$1], [ustar],, [pax],, + [m4_fatal([Unknown tar format])]) +AC_MSG_CHECKING([how to create a $1 tar archive]) +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +_am_tools=${am_cv_prog_tar_$1-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar <conftest.tar]) + grep GrepMe conftest.dir/file >/dev/null 2>&1 && break + fi +done +rm -rf conftest.dir + +AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + diff --git a/projects/gvpndialer/trunk/autogen.sh b/projects/gvpndialer/trunk/autogen.sh new file mode 100755 index 0000000..8fe1de8 --- /dev/null +++ b/projects/gvpndialer/trunk/autogen.sh @@ -0,0 +1,159 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +DIE=0 + +if [ -n "$GNOME2_DIR" ]; then + ACLOCAL_FLAGS="-I $GNOME2_DIR/share/aclocal $ACLOCAL_FLAGS" + LD_LIBRARY_PATH="$GNOME2_DIR/lib:$LD_LIBRARY_PATH" + PATH="$GNOME2_DIR/bin:$PATH" + export PATH + export LD_LIBRARY_PATH +fi + +(test -f $srcdir/configure.in) || { + echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" + echo " top-level package directory" + exit 1 +} + +(autoconf --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have \`autoconf' installed." + echo "Download the appropriate package for your distribution," + echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" + DIE=1 +} + +(grep "^AC_PROG_INTLTOOL" $srcdir/configure.in >/dev/null) && { + (intltoolize --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have \`intltool' installed." + echo "You can get it from:" + echo " ftp://ftp.gnome.org/pub/GNOME/" + DIE=1 + } +} + +(grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.in >/dev/null) && { + (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have \`xml-i18n-toolize' installed." + echo "You can get it from:" + echo " ftp://ftp.gnome.org/pub/GNOME/" + DIE=1 + } +} + +(grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && { + (libtool --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have \`libtool' installed." + echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" + DIE=1 + } +} + +(grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.in >/dev/null) && { + (grep "sed.*POTFILES" $srcdir/configure.in) > /dev/null || \ + (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have \`glib' installed." + echo "You can get it from: ftp://ftp.gtk.org/pub/gtk" + DIE=1 + } +} + +(automake --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have \`automake' installed." + echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" + DIE=1 + NO_AUTOMAKE=yes +} + + +# if no automake, don't bother testing for aclocal +test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: Missing \`aclocal'. The version of \`automake'" + echo "installed doesn't appear recent enough." + echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/" + DIE=1 +} + +if test "$DIE" -eq 1; then + exit 1 +fi + +if test -z "$*"; then + echo "**Warning**: I am going to run \`configure' with no arguments." + echo "If you wish to pass any to it, please specify them on the" + echo \`$0\'" command line." + echo +fi + +case $CC in +xlc ) + am_opt=--include-deps;; +esac + +for coin in `find $srcdir -path $srcdir/CVS -prune -o -name configure.in -print` +do + dr=`dirname $coin` + if test -f $dr/NO-AUTO-GEN; then + echo skipping $dr -- flagged as no auto-gen + else + echo processing $dr + ( cd $dr + + aclocalinclude="$ACLOCAL_FLAGS" + + if grep "^AM_GLIB_GNU_GETTEXT" configure.in >/dev/null; then + echo "Creating $dr/aclocal.m4 ..." + test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 + echo "Running glib-gettextize... Ignore non-fatal messages." + echo "no" | glib-gettextize --force --copy + echo "Making $dr/aclocal.m4 writable ..." + test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 + fi + if grep "^AC_PROG_INTLTOOL" configure.in >/dev/null; then + echo "Running intltoolize..." + intltoolize --copy --force --automake + fi + if grep "^AM_PROG_XML_I18N_TOOLS" configure.in >/dev/null; then + echo "Running xml-i18n-toolize..." + xml-i18n-toolize --copy --force --automake + fi + if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then + if test -z "$NO_LIBTOOLIZE" ; then + echo "Running libtoolize..." + libtoolize --force --copy + fi + fi + echo "Running aclocal $aclocalinclude ..." + aclocal $aclocalinclude + if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then + echo "Running autoheader..." + autoheader + fi + echo "Running automake --gnu $am_opt ..." + automake --add-missing --gnu $am_opt + echo "Running autoconf ..." + autoconf + ) + fi +done + +conf_flags="--enable-maintainer-mode" + +if test x$NOCONFIGURE = x; then + echo Running $srcdir/configure $conf_flags "$@" ... + $srcdir/configure $conf_flags "$@" \ + && echo Now type \`make\' to compile. || exit 1 +else + echo Skipping configure process. +fi diff --git a/projects/gvpndialer/trunk/autom4te.cache/output.0 b/projects/gvpndialer/trunk/autom4te.cache/output.0 new file mode 100644 index 0000000..fa3eb8b --- /dev/null +++ b/projects/gvpndialer/trunk/autom4te.cache/output.0 @@ -0,0 +1,8622 @@ +@%:@! /bin/sh +@%:@ Guess values for system-dependent variables and create Makefiles. +@%:@ Generated by GNU Autoconf 2.59. +@%:@ +@%:@ Copyright (C) 2003 Free Software Foundation, Inc. +@%:@ This configure script is free software; the Free Software Foundation +@%:@ gives unlimited permission to copy, distribute and modify it. +## --------------------- ## +## M4sh Initialization. ## +## --------------------- ## + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' +elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then + set -o posix +fi +DUALCASE=1; export DUALCASE # for MKS sh + +# Support unset when possible. +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + as_unset=unset +else + as_unset=false +fi + + +# Work around bugs in pre-3.0 UWIN ksh. +$as_unset ENV MAIL MAILPATH +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +for as_var in \ + LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ + LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ + LC_TELEPHONE LC_TIME +do + if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then + eval $as_var=C; export $as_var + else + $as_unset $as_var + fi +done + +# Required to use basename. +if expr a : '\(a\)' >/dev/null 2>&1; then + as_expr=expr +else + as_expr=false +fi + +if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + + +# Name of the executable. +as_me=`$as_basename "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)$' \| \ + . : '\(.\)' 2>/dev/null || +echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } + /^X\/\(\/\/\)$/{ s//\1/; q; } + /^X\/\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + + +# PATH needs CR, and LINENO needs CR and PATH. +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + + + as_lineno_1=$LINENO + as_lineno_2=$LINENO + as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x$as_lineno_3" = "x$as_lineno_2" || { + # Find who we are. Look in the path if we contain no path at all + # relative or not. + case $0 in + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +done + + ;; + esac + # We did not find ourselves, most probably we were run as `sh COMMAND' + # in which case we are not to be found in the path. + if test "x$as_myself" = x; then + as_myself=$0 + fi + if test ! -f "$as_myself"; then + { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 + { (exit 1); exit 1; }; } + fi + case $CONFIG_SHELL in + '') + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for as_base in sh bash ksh sh5; do + case $as_dir in + /*) + if ("$as_dir/$as_base" -c ' + as_lineno_1=$LINENO + as_lineno_2=$LINENO + as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then + $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } + $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } + CONFIG_SHELL=$as_dir/$as_base + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$0" ${1+"$@"} + fi;; + esac + done +done +;; + esac + + # Create $as_me.lineno as a copy of $as_myself, but with $LINENO + # uniformly replaced by the line number. The first 'sed' inserts a + # line-number line before each line; the second 'sed' does the real + # work. The second script uses 'N' to pair each line-number line + # with the numbered line, and appends trailing '-' during + # substitution so that $LINENO is not a special case at line end. + # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the + # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) + sed '=' <$as_myself | + sed ' + N + s,$,-, + : loop + s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, + t loop + s,-$,, + s,^['$as_cr_digits']*\n,, + ' >$as_me.lineno && + chmod +x $as_me.lineno || + { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensible to this). + . ./$as_me.lineno + # Exit status is that of the last command. + exit +} + + +case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in + *c*,-n*) ECHO_N= ECHO_C=' +' ECHO_T=' ' ;; + *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; + *) ECHO_N= ECHO_C='\c' ECHO_T= ;; +esac + +if expr a : '\(a\)' >/dev/null 2>&1; then + as_expr=expr +else + as_expr=false +fi + +rm -f conf$$ conf$$.exe conf$$.file +echo >conf$$.file +if ln -s conf$$.file conf$$ 2>/dev/null; then + # We could just check for DJGPP; but this test a) works b) is more generic + # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). + if test -f conf$$.exe; then + # Don't use ln at all; we don't have any links + as_ln_s='cp -p' + else + as_ln_s='ln -s' + fi +elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.file + +if mkdir -p . 2>/dev/null; then + as_mkdir_p=: +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +as_executable_p="test -f" + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +# IFS +# We need space, tab and new line, in precisely that order. +as_nl=' +' +IFS=" $as_nl" + +# CDPATH. +$as_unset CDPATH + + +# Name of the host. +# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +exec 6>&1 + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_config_libobj_dir=. +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= +SHELL=${CONFIG_SHELL-/bin/sh} + +# Maximum number of lines to put in a shell here document. +# This variable seems obsolete. It should probably be removed, and +# only ac_max_sed_lines should be used. +: ${ac_max_here_lines=38} + +# Identity of this package. +PACKAGE_NAME= +PACKAGE_TARNAME= +PACKAGE_VERSION= +PACKAGE_STRING= +PACKAGE_BUGREPORT= + +ac_unique_file="configure.in" +# Factoring default headers for most tests. +ac_includes_default="\ +#include <stdio.h> +#if HAVE_SYS_TYPES_H +# include <sys/types.h> +#endif +#if HAVE_SYS_STAT_H +# include <sys/stat.h> +#endif +#if STDC_HEADERS +# include <stdlib.h> +# include <stddef.h> +#else +# if HAVE_STDLIB_H +# include <stdlib.h> +# endif +#endif +#if HAVE_STRING_H +# if !STDC_HEADERS && HAVE_MEMORY_H +# include <memory.h> +# endif +# include <string.h> +#endif +#if HAVE_STRINGS_H +# include <strings.h> +#endif +#if HAVE_INTTYPES_H +# include <inttypes.h> +#else +# if HAVE_STDINT_H +# include <stdint.h> +# endif +#endif +#if HAVE_UNISTD_H +# include <unistd.h> +#endif" + +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP PKG_CONFIG PACKAGE_CFLAGS PACKAGE_LIBS GETTEXT_PACKAGE USE_NLS MSGFMT GMSGFMT XGETTEXT CATALOGS CATOBJEXT DATADIRNAME GMOFILES INSTOBJEXT INTLLIBS PO_IN_DATADIR_TRUE PO_IN_DATADIR_FALSE POFILES POSUB MKINSTALLDIRS LIB@&t@OBJS LTLIBOBJS' +ac_subst_files='' + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datadir='${prefix}/share' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +libdir='${exec_prefix}/lib' +includedir='${prefix}/include' +oldincludedir='/usr/include' +infodir='${prefix}/info' +mandir='${prefix}/man' + +ac_prev= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval "$ac_prev=\$ac_option" + ac_prev= + continue + fi + + ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_option in + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad | --data | --dat | --da) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ + | --da=*) + datadir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } + ac_feature=`echo $ac_feature | sed 's/-/_/g'` + eval "enable_$ac_feature=no" ;; + + -enable-* | --enable-*) + ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } + ac_feature=`echo $ac_feature | sed 's/-/_/g'` + case $ac_option in + *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; + *) ac_optarg=yes ;; + esac + eval "enable_$ac_feature='$ac_optarg'" ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst \ + | --locals | --local | --loca | --loc | --lo) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* \ + | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } + ac_package=`echo $ac_package| sed 's/-/_/g'` + case $ac_option in + *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; + *) ac_optarg=yes ;; + esac + eval "with_$ac_package='$ac_optarg'" ;; + + -without-* | --without-*) + ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } + ac_package=`echo $ac_package | sed 's/-/_/g'` + eval "with_$ac_package=no" ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) { echo "$as_me: error: unrecognized option: $ac_option +Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 + { (exit 1); exit 1; }; } + ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` + eval "$ac_envvar='$ac_optarg'" + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + { echo "$as_me: error: missing argument to $ac_option" >&2 + { (exit 1); exit 1; }; } +fi + +# Be sure to have absolute paths. +for ac_var in exec_prefix prefix +do + eval ac_val=$`echo $ac_var` + case $ac_val in + [\\/$]* | ?:[\\/]* | NONE | '' ) ;; + *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 + { (exit 1); exit 1; }; };; + esac +done + +# Be sure to have absolute paths. +for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ + localstatedir libdir includedir oldincludedir infodir mandir +do + eval ac_val=$`echo $ac_var` + case $ac_val in + [\\/$]* | ?:[\\/]* ) ;; + *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 + { (exit 1); exit 1; }; };; + esac +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + 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 +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then its parent. + ac_confdir=`(dirname "$0") 2>/dev/null || +$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$0" : 'X\(//\)[^/]' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$0" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r $srcdir/$ac_unique_file; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r $srcdir/$ac_unique_file; then + if test "$ac_srcdir_defaulted" = yes; then + { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 + { (exit 1); exit 1; }; } + else + { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 + { (exit 1); exit 1; }; } + fi +fi +(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || + { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 + { (exit 1); exit 1; }; } +srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` +ac_env_build_alias_set=${build_alias+set} +ac_env_build_alias_value=$build_alias +ac_cv_env_build_alias_set=${build_alias+set} +ac_cv_env_build_alias_value=$build_alias +ac_env_host_alias_set=${host_alias+set} +ac_env_host_alias_value=$host_alias +ac_cv_env_host_alias_set=${host_alias+set} +ac_cv_env_host_alias_value=$host_alias +ac_env_target_alias_set=${target_alias+set} +ac_env_target_alias_value=$target_alias +ac_cv_env_target_alias_set=${target_alias+set} +ac_cv_env_target_alias_value=$target_alias +ac_env_CC_set=${CC+set} +ac_env_CC_value=$CC +ac_cv_env_CC_set=${CC+set} +ac_cv_env_CC_value=$CC +ac_env_CFLAGS_set=${CFLAGS+set} +ac_env_CFLAGS_value=$CFLAGS +ac_cv_env_CFLAGS_set=${CFLAGS+set} +ac_cv_env_CFLAGS_value=$CFLAGS +ac_env_LDFLAGS_set=${LDFLAGS+set} +ac_env_LDFLAGS_value=$LDFLAGS +ac_cv_env_LDFLAGS_set=${LDFLAGS+set} +ac_cv_env_LDFLAGS_value=$LDFLAGS +ac_env_CPPFLAGS_set=${CPPFLAGS+set} +ac_env_CPPFLAGS_value=$CPPFLAGS +ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} +ac_cv_env_CPPFLAGS_value=$CPPFLAGS +ac_env_CPP_set=${CPP+set} +ac_env_CPP_value=$CPP +ac_cv_env_CPP_set=${CPP+set} +ac_cv_env_CPP_value=$CPP + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures this package to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --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 + --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 + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +_ACEOF + + cat <<_ACEOF +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --datadir=DIR read-only architecture-independent data [PREFIX/share] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --infodir=DIR info documentation [PREFIX/info] + --mandir=DIR man documentation [PREFIX/man] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names +_ACEOF +fi + +if test -n "$ac_init_help"; then + + cat <<\_ACEOF + +Optional Features: + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors + +Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a + nonstandard directory <lib dir> + CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have + headers in a nonstandard directory <include dir> + CPP C preprocessor + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +_ACEOF +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + ac_popdir=`pwd` + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d $ac_dir || continue + ac_builddir=. + +if test "$ac_dir" != .; then + ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A "../" for each directory in $ac_dir_suffix. + ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` +else + ac_dir_suffix= ac_top_builddir= +fi + +case $srcdir in + .) # No --srcdir option. We are building in place. + ac_srcdir=. + if test -z "$ac_top_builddir"; then + ac_top_srcdir=. + else + ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` + fi ;; + [\\/]* | ?:[\\/]* ) # Absolute path. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir ;; + *) # Relative path. + ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_builddir$srcdir ;; +esac + +# Do not use `cd foo && pwd` to compute absolute paths, because +# the directories may not exist. +case `pwd` in +.) ac_abs_builddir="$ac_dir";; +*) + case "$ac_dir" in + .) ac_abs_builddir=`pwd`;; + [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; + *) ac_abs_builddir=`pwd`/"$ac_dir";; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_top_builddir=${ac_top_builddir}.;; +*) + case ${ac_top_builddir}. in + .) ac_abs_top_builddir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; + *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_srcdir=$ac_srcdir;; +*) + case $ac_srcdir in + .) ac_abs_srcdir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; + *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_top_srcdir=$ac_top_srcdir;; +*) + case $ac_top_srcdir in + .) ac_abs_top_srcdir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; + *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; + esac;; +esac + + cd $ac_dir + # Check for guested configure; otherwise get Cygnus style configure. + if test -f $ac_srcdir/configure.gnu; then + echo + $SHELL $ac_srcdir/configure.gnu --help=recursive + elif test -f $ac_srcdir/configure; then + echo + $SHELL $ac_srcdir/configure --help=recursive + elif test -f $ac_srcdir/configure.ac || + test -f $ac_srcdir/configure.in; then + echo + $ac_configure --help + else + echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi + cd $ac_popdir + done +fi + +test -n "$ac_init_help" && exit 0 +if $ac_init_version; then + cat <<\_ACEOF + +Copyright (C) 2003 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit 0 +fi +exec 5>config.log +cat >&5 <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by $as_me, which was +generated by GNU Autoconf 2.59. Invocation command line was + + $ $0 $@ + +_ACEOF +{ +cat <<_ASUNAME +@%:@@%:@ --------- @%:@@%:@ +@%:@@%:@ Platform. @%:@@%:@ +@%:@@%:@ --------- @%:@@%:@ + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +hostinfo = `(hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + echo "PATH: $as_dir" +done + +} >&5 + +cat >&5 <<_ACEOF + + +@%:@@%:@ ----------- @%:@@%:@ +@%:@@%:@ Core tests. @%:@@%:@ +@%:@@%:@ ----------- @%:@@%:@ + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_sep= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) + ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; + 2) + ac_configure_args1="$ac_configure_args1 '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" + # Get rid of the leading space. + ac_sep=" " + ;; + esac + done +done +$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } +$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Be sure not to use single quotes in there, as some shells, +# such as our DU 5.0 friend, will then `close' the trap. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + cat <<\_ASBOX +@%:@@%:@ ---------------- @%:@@%:@ +@%:@@%:@ Cache variables. @%:@@%:@ +@%:@@%:@ ---------------- @%:@@%:@ +_ASBOX + echo + # The following way of writing the cache mishandles newlines in values, +{ + (set) 2>&1 | + case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in + *ac_space=\ *) + sed -n \ + "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" + ;; + *) + sed -n \ + "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" + ;; + esac; +} + echo + + cat <<\_ASBOX +@%:@@%:@ ----------------- @%:@@%:@ +@%:@@%:@ Output variables. @%:@@%:@ +@%:@@%:@ ----------------- @%:@@%:@ +_ASBOX + echo + for ac_var in $ac_subst_vars + do + eval ac_val=$`echo $ac_var` + echo "$ac_var='"'"'$ac_val'"'"'" + done | sort + echo + + if test -n "$ac_subst_files"; then + cat <<\_ASBOX +@%:@@%:@ ------------- @%:@@%:@ +@%:@@%:@ Output files. @%:@@%:@ +@%:@@%:@ ------------- @%:@@%:@ +_ASBOX + echo + for ac_var in $ac_subst_files + do + eval ac_val=$`echo $ac_var` + echo "$ac_var='"'"'$ac_val'"'"'" + done | sort + echo + fi + + if test -s confdefs.h; then + cat <<\_ASBOX +@%:@@%:@ ----------- @%:@@%:@ +@%:@@%:@ confdefs.h. @%:@@%:@ +@%:@@%:@ ----------- @%:@@%:@ +_ASBOX + echo + sed "/^$/d" confdefs.h | sort + echo + fi + test "$ac_signal" != 0 && + echo "$as_me: caught signal $ac_signal" + echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core && + rm -rf conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status + ' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -rf conftest* confdefs.h +# AIX cpp loses on an empty file, so make sure it contains at least a newline. +echo >confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer explicitly selected file to automatically selected ones. +if test -z "$CONFIG_SITE"; then + if test "x$prefix" != xNONE; then + CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" + else + CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" + fi +fi +for ac_site_file in $CONFIG_SITE; do + if test -r "$ac_site_file"; then + { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 +echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special + # files actually), so we avoid doing that. + if test -f "$cache_file"; then + { echo "$as_me:$LINENO: loading cache $cache_file" >&5 +echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . $cache_file;; + *) . ./$cache_file;; + esac + fi +else + { echo "$as_me:$LINENO: creating cache $cache_file" >&5 +echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in `(set) 2>&1 | + sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val="\$ac_cv_env_${ac_var}_value" + eval ac_new_val="\$ac_env_${ac_var}_value" + case $ac_old_set,$ac_new_set in + set,) + { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 +echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 +echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 +echo "$as_me: former value: $ac_old_val" >&2;} + { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 +echo "$as_me: current value: $ac_new_val" >&2;} + ac_cache_corrupted=: + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) + ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 +echo "$as_me: error: changes in the environment can compromise the build" >&2;} + { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} + { (exit 1); exit 1; }; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + + + + + + + + + + + + + + + + + +am__api_version="1.9" +ac_aux_dir= +for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do + 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 + { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 +echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} + { (exit 1); exit 1; }; } +fi +ac_config_guess="$SHELL $ac_aux_dir/config.guess" +ac_config_sub="$SHELL $ac_aux_dir/config.sub" +ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 +if test -z "$INSTALL"; then +if test "${ac_cv_path_install+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in + ./ | .// | /cC/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + done + done + ;; +esac +done + + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. We don't cache a + # path for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the path is relative. + INSTALL=$ac_install_sh + fi +fi +echo "$as_me:$LINENO: result: $INSTALL" >&5 +echo "${ECHO_T}$INSTALL" >&6 + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +echo "$as_me:$LINENO: checking whether build environment is sane" >&5 +echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6 +# Just in case +sleep 1 +echo timestamp > conftest.file +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t $srcdir/configure conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # 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". + { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken +alias in your environment" >&5 +echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken +alias in your environment" >&2;} + { (exit 1); exit 1; }; } + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! +Check your system clock" >&5 +echo "$as_me: error: newly created file is older than distributed files! +Check your system clock" >&2;} + { (exit 1); exit 1; }; } +fi +echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 +test "$program_prefix" != NONE && + program_transform_name="s,^,$program_prefix,;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s,\$,$program_suffix,;$program_transform_name" +# Double any \ or $. echo might interpret backslashes. +# By default was `s,x,x', remove it if useless. +cat <<\_ACEOF >conftest.sed +s/[\\$]/&&/g;s/;s,x,x,$// +_ACEOF +program_transform_name=`echo $program_transform_name | sed -f conftest.sed` +rm conftest.sed + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 +echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} +fi + +if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then + # We used to keeping the `.' as first argument, in order to + # allow $(mkdir_p) to be used without argument. As in + # $(mkdir_p) $(somedir) + # where $(somedir) is conditionally defined. However this is wrong + # for two reasons: + # 1. if the package is installed by a user who cannot write `.' + # make install will fail, + # 2. the above comment should most certainly read + # $(mkdir_p) $(DESTDIR)$(somedir) + # so it does not work when $(somedir) is undefined and + # $(DESTDIR) is not. + # To support the latter case, we have to write + # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), + # so the `.' trick is pointless. + mkdir_p='mkdir -p --' +else + # On NextStep and OpenStep, the `mkdir' command does not + # recognize any option. It will interpret all options as + # directories to create, and then abort because `.' already + # exists. + for d in ./-p ./--version; + do + test -d $d && rmdir $d + done + # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. + if test -f "$ac_aux_dir/mkinstalldirs"; then + mkdir_p='$(mkinstalldirs)' + else + mkdir_p='$(install_sh) -d' + fi +fi + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_AWK+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + echo "$as_me:$LINENO: result: $AWK" >&5 +echo "${ECHO_T}$AWK" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$AWK" && break +done + +echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 +set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` +if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.make <<\_ACEOF +all: + @echo 'ac_maketemp="$(MAKE)"' +_ACEOF +# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` +if test -n "$ac_maketemp"; then + eval ac_cv_prog_make_${ac_make}_set=yes +else + eval ac_cv_prog_make_${ac_make}_set=no +fi +rm -f conftest.make +fi +if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + SET_MAKE= +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +# test to see if srcdir already configured +if test "`cd $srcdir && pwd`" != "`pwd`" && + test -f $srcdir/config.status; then + { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 +echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} + { (exit 1); exit 1; }; } +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE=gvpndialer + VERSION=1.0 + + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +@%:@define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +install_sh=${install_sh-"$am_aux_dir/install-sh"} + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_STRIP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + echo "$as_me:$LINENO: result: $STRIP" >&5 +echo "${ECHO_T}$STRIP" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + + test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +echo "${ECHO_T}$ac_ct_STRIP" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + STRIP=$ac_ct_STRIP +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. + +AMTAR=${AMTAR-"${am_missing_run}tar"} + +am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' + + + + + +echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 +echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6 + # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. +if test "${enable_maintainer_mode+set}" = set; then + enableval="$enable_maintainer_mode" + USE_MAINTAINER_MODE=$enableval +else + USE_MAINTAINER_MODE=no +fi; + echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 +echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6 + + +if test $USE_MAINTAINER_MODE = yes; then + MAINTAINER_MODE_TRUE= + MAINTAINER_MODE_FALSE='#' +else + MAINTAINER_MODE_TRUE='#' + MAINTAINER_MODE_FALSE= +fi + + MAINT=$MAINTAINER_MODE_TRUE + + + ac_config_headers="$ac_config_headers config.h" + + +DEPDIR="${am__leading_dot}deps" + + ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo done +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 +echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6 +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# We grep out `Entering directory' and `Leaving directory' +# messages which can occur if `w' ends up in MAKEFLAGS. +# In particular we don't look at `^make:' because GNU make might +# be invoked under some other name (usually "gmake"), in which +# case it prints its new name instead of `make'. +if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then + am__include=include + am__quote= + _am_result=GNU +fi +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then + am__include=.include + am__quote="\"" + _am_result=BSD + fi +fi + + +echo "$as_me:$LINENO: result: $_am_result" >&5 +echo "${ECHO_T}$_am_result" >&6 +rm -f confinc confmf + +# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then + enableval="$enable_dependency_tracking" + +fi; +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi + + +if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + CC=$ac_ct_CC +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + CC=$ac_ct_CC +else + CC="$ac_cv_prog_CC" +fi + +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $@%:@ != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$ac_ct_CC" && break +done + + CC=$ac_ct_CC +fi + +fi + + +test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&5 +echo "$as_me: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + +# Provide some information about the compiler. +echo "$as_me:$LINENO:" \ + "checking for C compiler version" >&5 +ac_compiler=`set X $ac_compile; echo $2` +{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 + (eval $ac_compiler --version </dev/null >&5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 + (eval $ac_compiler -v </dev/null >&5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 + (eval $ac_compiler -V </dev/null >&5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 +echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6 +ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` +if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 + (eval $ac_link_default) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # Find the output, starting from the most likely. This scheme is +# not robust to junk in `.', hence go to wildcards (a.*) only as a last +# resort. + +# Be careful to initialize this variable, since it used to be cached. +# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. +ac_cv_exeext= +# b.out is created by i960 compilers. +for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) + ;; + conftest.$ac_ext ) + # This is the source file. + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + # FIXME: I believe we export ac_cv_exeext for Libtool, + # but it would be cool to find out if it's true. Does anybody + # maintain Libtool? --akim. + export ac_cv_exeext + break;; + * ) + break;; + esac +done +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { echo "$as_me:$LINENO: error: C compiler cannot create executables +See \`config.log' for more details." >&5 +echo "$as_me: error: C compiler cannot create executables +See \`config.log' for more details." >&2;} + { (exit 77); exit 77; }; } +fi + +ac_exeext=$ac_cv_exeext +echo "$as_me:$LINENO: result: $ac_file" >&5 +echo "${ECHO_T}$ac_file" >&6 + +# Check the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +echo "$as_me:$LINENO: checking whether the C compiler works" >&5 +echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 +# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 +# If not cross compiling, check that we can run a simple program. +if test "$cross_compiling" != yes; then + if { ac_try='./$ac_file' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { echo "$as_me:$LINENO: error: cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." >&5 +echo "$as_me: error: cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + fi + fi +fi +echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + +rm -f a.out a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +# Check the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 +echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 +echo "$as_me:$LINENO: result: $cross_compiling" >&5 +echo "${ECHO_T}$cross_compiling" >&6 + +echo "$as_me:$LINENO: checking for suffix of executables" >&5 +echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + export ac_cv_exeext + break;; + * ) break;; + esac +done +else + { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." >&5 +echo "$as_me: error: cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +fi + +rm -f conftest$ac_cv_exeext +echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 +echo "${ECHO_T}$ac_cv_exeext" >&6 + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +echo "$as_me:$LINENO: checking for suffix of object files" >&5 +echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 +if test "${ac_cv_objext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile +See \`config.log' for more details." >&5 +echo "$as_me: error: cannot compute suffix of object files: cannot compile +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +fi + +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 +echo "${ECHO_T}$ac_cv_objext" >&6 +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 +if test "${ac_cv_c_compiler_gnu+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_compiler_gnu=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_compiler_gnu=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 +GCC=`test $ac_compiler_gnu = yes && echo yes` +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +CFLAGS="-g" +echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 +if test "${ac_cv_prog_cc_g+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_prog_cc_g=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 +echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 +if test "${ac_cv_prog_cc_stdc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_prog_cc_stdc=no +ac_save_CC=$CC +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <stdarg.h> +#include <stdio.h> +#include <sys/types.h> +#include <sys/stat.h> +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std1 is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std1. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +# Don't try gcc -ansi; that turns off useful extensions and +# breaks some systems' header files. +# AIX -qlanglvl=ansi +# Ultrix and OSF/1 -std1 +# HP-UX 10.20 and later -Ae +# HP-UX older versions -Aa -D_HPUX_SOURCE +# SVR4 -Xc -D__EXTENSIONS__ +for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_prog_cc_stdc=$ac_arg +break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext +done +rm -f conftest.$ac_ext conftest.$ac_objext +CC=$ac_save_CC + +fi + +case "x$ac_cv_prog_cc_stdc" in + x|xno) + echo "$as_me:$LINENO: result: none needed" >&5 +echo "${ECHO_T}none needed" >&6 ;; + *) + echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 + CC="$CC $ac_cv_prog_cc_stdc" ;; +esac + +# Some people use a C++ compiler to compile C. Since we use `exit', +# in C++ we need to declare it. In case someone uses the same compiler +# for both compiling C and C++ we need to have the C++ compiler decide +# the declaration of exit, since it's the most demanding environment. +cat >conftest.$ac_ext <<_ACEOF +@%:@ifndef __cplusplus + choke me +@%:@endif +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + for ac_declaration in \ + '' \ + 'extern "C" void std::exit (int) throw (); using std::exit;' \ + 'extern "C" void std::exit (int); using std::exit;' \ + 'extern "C" void exit (int) throw ();' \ + 'extern "C" void exit (int);' \ + 'void exit (int);' +do + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_declaration +@%:@include <stdlib.h> +int +main () +{ +exit (42); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +continue +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_declaration +int +main () +{ +exit (42); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +done +rm -f conftest* +if test -n "$ac_declaration"; then + echo '#ifdef __cplusplus' >>confdefs.h + echo $ac_declaration >>confdefs.h + echo '#endif' >>confdefs.h +fi + +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + + +if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + + +echo "$as_me:$LINENO: checking for library containing strerror" >&5 +echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6 +if test "${ac_cv_search_strerror+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_func_search_save_LIBS=$LIBS +ac_cv_search_strerror=no +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char strerror (); +int +main () +{ +strerror (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_search_strerror="none required" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +if test "$ac_cv_search_strerror" = no; then + for ac_lib in cposix; do + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char strerror (); +int +main () +{ +strerror (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_search_strerror="-l$ac_lib" +break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + done +fi +LIBS=$ac_func_search_save_LIBS +fi +echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 +echo "${ECHO_T}$ac_cv_search_strerror" >&6 +if test "$ac_cv_search_strerror" != no; then + test "$ac_cv_search_strerror" = "none required" || LIBS="$ac_cv_search_strerror $LIBS" + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + CC=$ac_ct_CC +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + CC=$ac_ct_CC +else + CC="$ac_cv_prog_CC" +fi + +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $@%:@ != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$ac_ct_CC" && break +done + + CC=$ac_ct_CC +fi + +fi + + +test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&5 +echo "$as_me: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + +# Provide some information about the compiler. +echo "$as_me:$LINENO:" \ + "checking for C compiler version" >&5 +ac_compiler=`set X $ac_compile; echo $2` +{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 + (eval $ac_compiler --version </dev/null >&5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 + (eval $ac_compiler -v </dev/null >&5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 + (eval $ac_compiler -V </dev/null >&5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 +if test "${ac_cv_c_compiler_gnu+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_compiler_gnu=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_compiler_gnu=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 +GCC=`test $ac_compiler_gnu = yes && echo yes` +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +CFLAGS="-g" +echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 +if test "${ac_cv_prog_cc_g+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_prog_cc_g=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 +echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 +if test "${ac_cv_prog_cc_stdc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_prog_cc_stdc=no +ac_save_CC=$CC +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <stdarg.h> +#include <stdio.h> +#include <sys/types.h> +#include <sys/stat.h> +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std1 is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std1. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +# Don't try gcc -ansi; that turns off useful extensions and +# breaks some systems' header files. +# AIX -qlanglvl=ansi +# Ultrix and OSF/1 -std1 +# HP-UX 10.20 and later -Ae +# HP-UX older versions -Aa -D_HPUX_SOURCE +# SVR4 -Xc -D__EXTENSIONS__ +for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_prog_cc_stdc=$ac_arg +break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext +done +rm -f conftest.$ac_ext conftest.$ac_objext +CC=$ac_save_CC + +fi + +case "x$ac_cv_prog_cc_stdc" in + x|xno) + echo "$as_me:$LINENO: result: none needed" >&5 +echo "${ECHO_T}none needed" >&6 ;; + *) + echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 + CC="$CC $ac_cv_prog_cc_stdc" ;; +esac + +# Some people use a C++ compiler to compile C. Since we use `exit', +# in C++ we need to declare it. In case someone uses the same compiler +# for both compiling C and C++ we need to have the C++ compiler decide +# the declaration of exit, since it's the most demanding environment. +cat >conftest.$ac_ext <<_ACEOF +@%:@ifndef __cplusplus + choke me +@%:@endif +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + for ac_declaration in \ + '' \ + 'extern "C" void std::exit (int) throw (); using std::exit;' \ + 'extern "C" void std::exit (int); using std::exit;' \ + 'extern "C" void exit (int) throw ();' \ + 'extern "C" void exit (int);' \ + 'void exit (int);' +do + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_declaration +@%:@include <stdlib.h> +int +main () +{ +exit (42); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +continue +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_declaration +int +main () +{ +exit (42); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +done +rm -f conftest* +if test -n "$ac_declaration"; then + echo '#ifdef __cplusplus' >>confdefs.h + echo $ac_declaration >>confdefs.h + echo '#endif' >>confdefs.h +fi + +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + + +if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + CC=$ac_ct_CC +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + CC=$ac_ct_CC +else + CC="$ac_cv_prog_CC" +fi + +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $@%:@ != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$ac_ct_CC" && break +done + + CC=$ac_ct_CC +fi + +fi + + +test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&5 +echo "$as_me: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + +# Provide some information about the compiler. +echo "$as_me:$LINENO:" \ + "checking for C compiler version" >&5 +ac_compiler=`set X $ac_compile; echo $2` +{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 + (eval $ac_compiler --version </dev/null >&5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 + (eval $ac_compiler -v </dev/null >&5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 + (eval $ac_compiler -V </dev/null >&5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 +if test "${ac_cv_c_compiler_gnu+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_compiler_gnu=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_compiler_gnu=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 +GCC=`test $ac_compiler_gnu = yes && echo yes` +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +CFLAGS="-g" +echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 +if test "${ac_cv_prog_cc_g+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_prog_cc_g=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 +echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 +if test "${ac_cv_prog_cc_stdc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_prog_cc_stdc=no +ac_save_CC=$CC +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <stdarg.h> +#include <stdio.h> +#include <sys/types.h> +#include <sys/stat.h> +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std1 is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std1. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +# Don't try gcc -ansi; that turns off useful extensions and +# breaks some systems' header files. +# AIX -qlanglvl=ansi +# Ultrix and OSF/1 -std1 +# HP-UX 10.20 and later -Ae +# HP-UX older versions -Aa -D_HPUX_SOURCE +# SVR4 -Xc -D__EXTENSIONS__ +for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_prog_cc_stdc=$ac_arg +break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext +done +rm -f conftest.$ac_ext conftest.$ac_objext +CC=$ac_save_CC + +fi + +case "x$ac_cv_prog_cc_stdc" in + x|xno) + echo "$as_me:$LINENO: result: none needed" >&5 +echo "${ECHO_T}none needed" >&6 ;; + *) + echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 + CC="$CC $ac_cv_prog_cc_stdc" ;; +esac + +# Some people use a C++ compiler to compile C. Since we use `exit', +# in C++ we need to declare it. In case someone uses the same compiler +# for both compiling C and C++ we need to have the C++ compiler decide +# the declaration of exit, since it's the most demanding environment. +cat >conftest.$ac_ext <<_ACEOF +@%:@ifndef __cplusplus + choke me +@%:@endif +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + for ac_declaration in \ + '' \ + 'extern "C" void std::exit (int) throw (); using std::exit;' \ + 'extern "C" void std::exit (int); using std::exit;' \ + 'extern "C" void exit (int) throw ();' \ + 'extern "C" void exit (int);' \ + 'void exit (int);' +do + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_declaration +@%:@include <stdlib.h> +int +main () +{ +exit (42); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +continue +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_declaration +int +main () +{ +exit (42); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +done +rm -f conftest* +if test -n "$ac_declaration"; then + echo '#ifdef __cplusplus' >>confdefs.h + echo $ac_declaration >>confdefs.h + echo '#endif' >>confdefs.h +fi + +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + + +if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + + +am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 +echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if test "${ac_cv_prog_CPP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since + # <limits.h> exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +@%:@ifdef __STDC__ +@%:@ include <limits.h> +@%:@else +@%:@ include <assert.h> +@%:@endif + Syntax error +_ACEOF +if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether non-existent headers + # can be detected and how. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +@%:@include <ac_nonexistent.h> +_ACEOF +if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + # Broken: success on invalid input. +continue +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +echo "$as_me:$LINENO: result: $CPP" >&5 +echo "${ECHO_T}$CPP" >&6 +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since + # <limits.h> exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +@%:@ifdef __STDC__ +@%:@ include <limits.h> +@%:@else +@%:@ include <assert.h> +@%:@endif + Syntax error +_ACEOF +if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether non-existent headers + # can be detected and how. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +@%:@include <ac_nonexistent.h> +_ACEOF +if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + # Broken: success on invalid input. +continue +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then + : +else + { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." >&5 +echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +echo "$as_me:$LINENO: checking for egrep" >&5 +echo $ECHO_N "checking for egrep... $ECHO_C" >&6 +if test "${ac_cv_prog_egrep+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if echo a | (grep -E '(a|b)') >/dev/null 2>&1 + then ac_cv_prog_egrep='grep -E' + else ac_cv_prog_egrep='egrep' + fi +fi +echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 +echo "${ECHO_T}$ac_cv_prog_egrep" >&6 + EGREP=$ac_cv_prog_egrep + + +echo "$as_me:$LINENO: checking for ANSI C header files" >&5 +echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 +if test "${ac_cv_header_stdc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <stdlib.h> +#include <stdarg.h> +#include <string.h> +#include <float.h> + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_header_stdc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_header_stdc=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <string.h> + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then + : +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <stdlib.h> + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then + : +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then + : +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <ctype.h> +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + exit(2); + exit (0); +} +_ACEOF +rm -f conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_header_stdc=no +fi +rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi +fi +fi +echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +echo "${ECHO_T}$ac_cv_header_stdc" >&6 +if test $ac_cv_header_stdc = yes; then + +cat >>confdefs.h <<\_ACEOF +@%:@define STDC_HEADERS 1 +_ACEOF + +fi + + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. + + + + + + + + + +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default + +@%:@include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + eval "$as_ac_Header=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +eval "$as_ac_Header=no" +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + + +for ac_header in pcre/pcre.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 +else + # Is the header compilable? +echo "$as_me:$LINENO: checking $ac_header usability" >&5 +echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +@%:@include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_header_compiler=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6 + +# Is the header present? +echo "$as_me:$LINENO: checking $ac_header presence" >&5 +echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +@%:@include <$ac_header> +_ACEOF +if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi +rm -f conftest.err conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6 + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( + cat <<\_ASBOX +@%:@@%:@ ------------------------------------------ @%:@@%:@ +@%:@@%:@ Report this to the AC_PACKAGE_NAME lists. @%:@@%:@ +@%:@@%:@ ------------------------------------------ @%:@@%:@ +_ASBOX + ) | + sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac +echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + eval "$as_ac_Header=\$ac_header_preproc" +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 + +fi +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +else + { { echo "$as_me:$LINENO: error: Cannot find pcre.h. Please install libpcre" >&5 +echo "$as_me: error: Cannot find pcre.h. Please install libpcre" >&2;} + { (exit 1); exit 1; }; } +fi + +done + + +for ac_header in pty.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 +else + # Is the header compilable? +echo "$as_me:$LINENO: checking $ac_header usability" >&5 +echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +@%:@include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_header_compiler=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6 + +# Is the header present? +echo "$as_me:$LINENO: checking $ac_header presence" >&5 +echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +@%:@include <$ac_header> +_ACEOF +if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi +rm -f conftest.err conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6 + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( + cat <<\_ASBOX +@%:@@%:@ ------------------------------------------ @%:@@%:@ +@%:@@%:@ Report this to the AC_PACKAGE_NAME lists. @%:@@%:@ +@%:@@%:@ ------------------------------------------ @%:@@%:@ +_ASBOX + ) | + sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac +echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + eval "$as_ac_Header=\$ac_header_preproc" +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 + +fi +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +else + { { echo "$as_me:$LINENO: error: Cannot find pty.h" >&5 +echo "$as_me: error: Cannot find pty.h" >&2;} + { (exit 1); exit 1; }; } +fi + +done + +echo "$as_me:$LINENO: checking for \"/proc/net/route\"" >&5 +echo $ECHO_N "checking for \"/proc/net/route\"... $ECHO_C" >&6 +if test "${ac_cv_file___proc_net_route_+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + test "$cross_compiling" = yes && + { { echo "$as_me:$LINENO: error: cannot check for file existence when cross compiling" >&5 +echo "$as_me: error: cannot check for file existence when cross compiling" >&2;} + { (exit 1); exit 1; }; } +if test -r ""/proc/net/route""; then + ac_cv_file___proc_net_route_=yes +else + ac_cv_file___proc_net_route_=no +fi +fi +echo "$as_me:$LINENO: result: $ac_cv_file___proc_net_route_" >&5 +echo "${ECHO_T}$ac_cv_file___proc_net_route_" >&6 +if test $ac_cv_file___proc_net_route_ = yes; then + : +else + { { echo "$as_me:$LINENO: error: Cannot find /proc/net/route. Is this a Linux system ?" >&5 +echo "$as_me: error: Cannot find /proc/net/route. Is this a Linux system ?" >&2;} + { (exit 1); exit 1; }; } +fi + + +pkg_modules="libgnomeui-2.0" + + succeeded=no + + if test -z "$PKG_CONFIG"; then + # Extract the first word of "pkg-config", so it can be a program name with args. +set dummy pkg-config; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + + test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" + ;; +esac +fi +PKG_CONFIG=$ac_cv_path_PKG_CONFIG + +if test -n "$PKG_CONFIG"; then + echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 +echo "${ECHO_T}$PKG_CONFIG" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + fi + + if test "$PKG_CONFIG" = "no" ; then + echo "*** The pkg-config script could not be found. Make sure it is" + echo "*** in your path, or set the PKG_CONFIG environment variable" + echo "*** to the full path to pkg-config." + echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." + else + PKG_CONFIG_MIN_VERSION=0.9.0 + if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then + echo "$as_me:$LINENO: checking for $pkg_modules" >&5 +echo $ECHO_N "checking for $pkg_modules... $ECHO_C" >&6 + + if $PKG_CONFIG --exists "$pkg_modules" ; then + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + succeeded=yes + + echo "$as_me:$LINENO: checking PACKAGE_CFLAGS" >&5 +echo $ECHO_N "checking PACKAGE_CFLAGS... $ECHO_C" >&6 + PACKAGE_CFLAGS=`$PKG_CONFIG --cflags "$pkg_modules"` + echo "$as_me:$LINENO: result: $PACKAGE_CFLAGS" >&5 +echo "${ECHO_T}$PACKAGE_CFLAGS" >&6 + + echo "$as_me:$LINENO: checking PACKAGE_LIBS" >&5 +echo $ECHO_N "checking PACKAGE_LIBS... $ECHO_C" >&6 + PACKAGE_LIBS=`$PKG_CONFIG --libs "$pkg_modules"` + echo "$as_me:$LINENO: result: $PACKAGE_LIBS" >&5 +echo "${ECHO_T}$PACKAGE_LIBS" >&6 + else + PACKAGE_CFLAGS="" + PACKAGE_LIBS="" + ## If we have a custom action on failure, don't print errors, but + ## do set a variable so people can do so. + PACKAGE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$pkg_modules"` + echo $PACKAGE_PKG_ERRORS + fi + + + + else + echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." + echo "*** See http://www.freedesktop.org/software/pkgconfig" + fi + fi + + if test $succeeded = yes; then + : + else + { { echo "$as_me:$LINENO: error: Library requirements ($pkg_modules) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 +echo "$as_me: error: Library requirements ($pkg_modules) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} + { (exit 1); exit 1; }; } + fi + +PACKAGE_LIBS="$PACKAGE_LIBS" + + + +GETTEXT_PACKAGE=gvpndialer + +cat >>confdefs.h <<_ACEOF +@%:@define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" +_ACEOF + + +ALL_LINGUAS="" + + +for ac_header in locale.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 +else + # Is the header compilable? +echo "$as_me:$LINENO: checking $ac_header usability" >&5 +echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +@%:@include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_header_compiler=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6 + +# Is the header present? +echo "$as_me:$LINENO: checking $ac_header presence" >&5 +echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +@%:@include <$ac_header> +_ACEOF +if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi +rm -f conftest.err conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6 + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( + cat <<\_ASBOX +@%:@@%:@ ------------------------------------------ @%:@@%:@ +@%:@@%:@ Report this to the AC_PACKAGE_NAME lists. @%:@@%:@ +@%:@@%:@ ------------------------------------------ @%:@@%:@ +_ASBOX + ) | + sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac +echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + eval "$as_ac_Header=\$ac_header_preproc" +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 + +fi +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + if test $ac_cv_header_locale_h = yes; then + echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 +echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6 +if test "${am_cv_val_LC_MESSAGES+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <locale.h> +int +main () +{ +return LC_MESSAGES + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + am_cv_val_LC_MESSAGES=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +am_cv_val_LC_MESSAGES=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 +echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6 + if test $am_cv_val_LC_MESSAGES = yes; then + +cat >>confdefs.h <<\_ACEOF +@%:@define HAVE_LC_MESSAGES 1 +_ACEOF + + fi + fi + USE_NLS=yes + + + gt_cv_have_gettext=no + + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= + + if test "${ac_cv_header_libintl_h+set}" = set; then + echo "$as_me:$LINENO: checking for libintl.h" >&5 +echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6 +if test "${ac_cv_header_libintl_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +echo "${ECHO_T}$ac_cv_header_libintl_h" >&6 +else + # Is the header compilable? +echo "$as_me:$LINENO: checking libintl.h usability" >&5 +echo $ECHO_N "checking libintl.h usability... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +@%:@include <libintl.h> +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_header_compiler=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6 + +# Is the header present? +echo "$as_me:$LINENO: checking libintl.h presence" >&5 +echo $ECHO_N "checking libintl.h presence... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +@%:@include <libintl.h> +_ACEOF +if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi +rm -f conftest.err conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6 + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5 +echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;} + ( + cat <<\_ASBOX +@%:@@%:@ ------------------------------------------ @%:@@%:@ +@%:@@%:@ Report this to the AC_PACKAGE_NAME lists. @%:@@%:@ +@%:@@%:@ ------------------------------------------ @%:@@%:@ +_ASBOX + ) | + sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac +echo "$as_me:$LINENO: checking for libintl.h" >&5 +echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6 +if test "${ac_cv_header_libintl_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_header_libintl_h=$ac_header_preproc +fi +echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +echo "${ECHO_T}$ac_cv_header_libintl_h" >&6 + +fi +if test $ac_cv_header_libintl_h = yes; then + gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" + + # + # First check in libc + # + echo "$as_me:$LINENO: checking for ngettext in libc" >&5 +echo $ECHO_N "checking for ngettext in libc... $ECHO_C" >&6 +if test "${gt_cv_func_ngettext_libc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +#include <libintl.h> + +int +main () +{ +return !ngettext ("","", 1) + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + gt_cv_func_ngettext_libc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +gt_cv_func_ngettext_libc=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +fi +echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5 +echo "${ECHO_T}$gt_cv_func_ngettext_libc" >&6 + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + echo "$as_me:$LINENO: checking for dgettext in libc" >&5 +echo $ECHO_N "checking for dgettext in libc... $ECHO_C" >&6 +if test "${gt_cv_func_dgettext_libc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +#include <libintl.h> + +int +main () +{ +return !dgettext ("","") + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + gt_cv_func_dgettext_libc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +gt_cv_func_dgettext_libc=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +fi +echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5 +echo "${ECHO_T}$gt_cv_func_dgettext_libc" >&6 + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + +for ac_func in bind_textdomain_codeset +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +echo "$as_me:$LINENO: checking for $ac_func" >&5 +echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 +if eval "test \"\${$as_ac_var+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. + For example, HP-UX 11i <limits.h> declares gettimeofday. */ +#define $ac_func innocuous_$ac_func + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. + Prefer <limits.h> to <assert.h> if __STDC__ is defined, since + <limits.h> exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include <limits.h> +#else +# include <assert.h> +#endif + +#undef $ac_func + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +{ +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char $ac_func (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) +choke me +#else +char (*f) () = $ac_func; +#endif +#ifdef __cplusplus +} +#endif + +int +main () +{ +return f != $ac_func; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +eval "$as_ac_var=no" +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 +if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +@%:@define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + fi + + # + # If we don't have everything we want, check in libintl + # + if test "$gt_cv_func_dgettext_libc" != "yes" \ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + + echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5 +echo $ECHO_N "checking for bindtextdomain in -lintl... $ECHO_C" >&6 +if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char bindtextdomain (); +int +main () +{ +bindtextdomain (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_intl_bindtextdomain=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_lib_intl_bindtextdomain=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_bindtextdomain" >&6 +if test $ac_cv_lib_intl_bindtextdomain = yes; then + echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 +echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6 +if test "${ac_cv_lib_intl_ngettext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char ngettext (); +int +main () +{ +ngettext (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_intl_ngettext=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_lib_intl_ngettext=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6 +if test $ac_cv_lib_intl_ngettext = yes; then + echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5 +echo $ECHO_N "checking for dgettext in -lintl... $ECHO_C" >&6 +if test "${ac_cv_lib_intl_dgettext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char dgettext (); +int +main () +{ +dgettext (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_intl_dgettext=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_lib_intl_dgettext=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_dgettext" >&6 +if test $ac_cv_lib_intl_dgettext = yes; then + gt_cv_func_dgettext_libintl=yes +fi + +fi + +fi + + + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then + echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5 +echo $ECHO_N "checking if -liconv is needed to use gettext... $ECHO_C" >&6 + echo "$as_me:$LINENO: result: " >&5 +echo "${ECHO_T}" >&6 + echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 +echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6 +if test "${ac_cv_lib_intl_ngettext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl -liconv $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char ngettext (); +int +main () +{ +ngettext (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_intl_ngettext=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_lib_intl_ngettext=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6 +if test $ac_cv_lib_intl_ngettext = yes; then + echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5 +echo $ECHO_N "checking for dcgettext in -lintl... $ECHO_C" >&6 +if test "${ac_cv_lib_intl_dcgettext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl -liconv $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char dcgettext (); +int +main () +{ +dcgettext (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_intl_dcgettext=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_lib_intl_dcgettext=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5 +echo "${ECHO_T}$ac_cv_lib_intl_dcgettext" >&6 +if test $ac_cv_lib_intl_dcgettext = yes; then + gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv +else + : +fi + +else + : +fi + + fi + + # + # If we found libintl, then check in it for bind_textdomain_codeset(); + # we'll prefer libc if neither have bind_textdomain_codeset(), + # and both have dgettext and ngettext + # + if test "$gt_cv_func_dgettext_libintl" = "yes" ; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS -lintl $libintl_extra_libs" + unset ac_cv_func_bind_textdomain_codeset + +for ac_func in bind_textdomain_codeset +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +echo "$as_me:$LINENO: checking for $ac_func" >&5 +echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 +if eval "test \"\${$as_ac_var+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. + For example, HP-UX 11i <limits.h> declares gettimeofday. */ +#define $ac_func innocuous_$ac_func + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. + Prefer <limits.h> to <assert.h> if __STDC__ is defined, since + <limits.h> exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include <limits.h> +#else +# include <assert.h> +#endif + +#undef $ac_func + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +{ +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char $ac_func (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) +choke me +#else +char (*f) () = $ac_func; +#endif +#ifdef __cplusplus +} +#endif + +int +main () +{ +return f != $ac_func; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +eval "$as_ac_var=no" +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 +if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +@%:@define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + LIBS="$glib_save_LIBS" + + if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then + gt_cv_func_dgettext_libc=no + else + if test "$gt_cv_func_dgettext_libc" = "yes" \ + && test "$gt_cv_func_ngettext_libc" = "yes"; then + gt_cv_func_dgettext_libintl=no + fi + fi + fi + fi + + if test "$gt_cv_func_dgettext_libc" = "yes" \ + || test "$gt_cv_func_dgettext_libintl" = "yes"; then + gt_cv_have_gettext=yes + fi + + if test "$gt_cv_func_dgettext_libintl" = "yes"; then + INTLLIBS="-lintl $libintl_extra_libs" + fi + + if test "$gt_cv_have_gettext" = "yes"; then + +cat >>confdefs.h <<\_ACEOF +@%:@define HAVE_GETTEXT 1 +_ACEOF + + # Extract the first word of "msgfmt", so it can be a program name with args. +set dummy msgfmt; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_path_MSGFMT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case "$MSGFMT" in + /*) + ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then + ac_cv_path_MSGFMT="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" + ;; +esac +fi +MSGFMT="$ac_cv_path_MSGFMT" +if test "$MSGFMT" != "no"; then + echo "$as_me:$LINENO: result: $MSGFMT" >&5 +echo "${ECHO_T}$MSGFMT" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" + +for ac_func in dcgettext +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +echo "$as_me:$LINENO: checking for $ac_func" >&5 +echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 +if eval "test \"\${$as_ac_var+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. + For example, HP-UX 11i <limits.h> declares gettimeofday. */ +#define $ac_func innocuous_$ac_func + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. + Prefer <limits.h> to <assert.h> if __STDC__ is defined, since + <limits.h> exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include <limits.h> +#else +# include <assert.h> +#endif + +#undef $ac_func + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +{ +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char $ac_func (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) +choke me +#else +char (*f) () = $ac_func; +#endif +#ifdef __cplusplus +} +#endif + +int +main () +{ +return f != $ac_func; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +eval "$as_ac_var=no" +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 +if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +@%:@define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + # Extract the first word of "gmsgfmt", so it can be a program name with args. +set dummy gmsgfmt; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_path_GMSGFMT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $GMSGFMT in + [\\/]* | ?:[\\/]*) + ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + + test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" + ;; +esac +fi +GMSGFMT=$ac_cv_path_GMSGFMT + +if test -n "$GMSGFMT"; then + echo "$as_me:$LINENO: result: $GMSGFMT" >&5 +echo "${ECHO_T}$GMSGFMT" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + # Extract the first word of "xgettext", so it can be a program name with args. +set dummy xgettext; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_path_XGETTEXT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case "$XGETTEXT" in + /*) + ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then + ac_cv_path_XGETTEXT="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" + ;; +esac +fi +XGETTEXT="$ac_cv_path_XGETTEXT" +if test "$XGETTEXT" != ":"; then + echo "$as_me:$LINENO: result: $XGETTEXT" >&5 +echo "${ECHO_T}$XGETTEXT" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + CATOBJEXT=.gmo + DATADIRNAME=share +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +case $host in + *-*-solaris*) + echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 +echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6 +if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +/* Define bind_textdomain_codeset to an innocuous variant, in case <limits.h> declares bind_textdomain_codeset. + For example, HP-UX 11i <limits.h> declares gettimeofday. */ +#define bind_textdomain_codeset innocuous_bind_textdomain_codeset + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char bind_textdomain_codeset (); below. + Prefer <limits.h> to <assert.h> if __STDC__ is defined, since + <limits.h> exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include <limits.h> +#else +# include <assert.h> +#endif + +#undef bind_textdomain_codeset + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +{ +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char bind_textdomain_codeset (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_bind_textdomain_codeset) || defined (__stub___bind_textdomain_codeset) +choke me +#else +char (*f) () = bind_textdomain_codeset; +#endif +#ifdef __cplusplus +} +#endif + +int +main () +{ +return f != bind_textdomain_codeset; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_bind_textdomain_codeset=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_func_bind_textdomain_codeset=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6 +if test $ac_cv_func_bind_textdomain_codeset = yes; then + CATOBJEXT=.gmo + DATADIRNAME=share +else + CATOBJEXT=.mo + DATADIRNAME=lib +fi + + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi + +fi + + + + if test "$gt_cv_have_gettext" = "yes" ; then + +cat >>confdefs.h <<\_ACEOF +@%:@define ENABLE_NLS 1 +_ACEOF + + fi + + if test "$XGETTEXT" != ":"; then + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else + echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 +echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 + XGETTEXT=":" + fi + fi + + # We need to process the po/ directory. + POSUB=po + + ac_config_commands="$ac_config_commands default-1" + + + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done + + + + + + + + + + + + + + if test "$gt_cv_have_gettext" = "yes"; then + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else + echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 +echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi + done + LINGUAS=$NEW_LINGUAS + echo "$as_me:$LINENO: result: $LINGUAS" >&5 +echo "${ECHO_T}$LINGUAS" >&6 + fi + + if test -n "$LINGUAS"; then + for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done + fi + fi + + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi + + + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES + + + ac_config_files="$ac_config_files Makefile src/Makefile po/Makefile.in" +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, don't put newlines in cache variables' values. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +{ + (set) 2>&1 | + case `(ac_space=' '; set | grep ac_space) 2>&1` in + *ac_space=\ *) + # `set' does not quote correctly, so add quotes (double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \). + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n \ + "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" + ;; + esac; +} | + sed ' + t clear + : clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + : end' >>confcache +if diff $cache_file confcache >/dev/null 2>&1; then :; else + if test -w $cache_file; then + test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" + cat confcache >$cache_file + else + echo "not updating unwritable cache $cache_file" + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +# VPATH may cause trouble with some makes, so we remove $(srcdir), +# ${srcdir} and @srcdir@ 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/; +s/:*$//; +s/^[^=]*=[ ]*$//; +}' +fi + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_i=`echo "$ac_i" | + sed 's/\$U\././;s/\.o$//;s/\.obj$//'` + # 2. Add them. + ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" + ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' +done +LIB@&t@OBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + +if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi + +: ${CONFIG_STATUS=./config.status} +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 +echo "$as_me: creating $CONFIG_STATUS" >&6;} +cat >$CONFIG_STATUS <<_ACEOF +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false +SHELL=\${CONFIG_SHELL-$SHELL} +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +## --------------------- ## +## M4sh Initialization. ## +## --------------------- ## + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' +elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then + set -o posix +fi +DUALCASE=1; export DUALCASE # for MKS sh + +# Support unset when possible. +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + as_unset=unset +else + as_unset=false +fi + + +# Work around bugs in pre-3.0 UWIN ksh. +$as_unset ENV MAIL MAILPATH +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +for as_var in \ + LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ + LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ + LC_TELEPHONE LC_TIME +do + if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then + eval $as_var=C; export $as_var + else + $as_unset $as_var + fi +done + +# Required to use basename. +if expr a : '\(a\)' >/dev/null 2>&1; then + as_expr=expr +else + as_expr=false +fi + +if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + + +# Name of the executable. +as_me=`$as_basename "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)$' \| \ + . : '\(.\)' 2>/dev/null || +echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } + /^X\/\(\/\/\)$/{ s//\1/; q; } + /^X\/\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + + +# PATH needs CR, and LINENO needs CR and PATH. +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + + + as_lineno_1=$LINENO + as_lineno_2=$LINENO + as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x$as_lineno_3" = "x$as_lineno_2" || { + # Find who we are. Look in the path if we contain no path at all + # relative or not. + case $0 in + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +done + + ;; + esac + # We did not find ourselves, most probably we were run as `sh COMMAND' + # in which case we are not to be found in the path. + if test "x$as_myself" = x; then + as_myself=$0 + fi + if test ! -f "$as_myself"; then + { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 +echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} + { (exit 1); exit 1; }; } + fi + case $CONFIG_SHELL in + '') + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for as_base in sh bash ksh sh5; do + case $as_dir in + /*) + if ("$as_dir/$as_base" -c ' + as_lineno_1=$LINENO + as_lineno_2=$LINENO + as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then + $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } + $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } + CONFIG_SHELL=$as_dir/$as_base + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$0" ${1+"$@"} + fi;; + esac + done +done +;; + esac + + # Create $as_me.lineno as a copy of $as_myself, but with $LINENO + # uniformly replaced by the line number. The first 'sed' inserts a + # line-number line before each line; the second 'sed' does the real + # work. The second script uses 'N' to pair each line-number line + # with the numbered line, and appends trailing '-' during + # substitution so that $LINENO is not a special case at line end. + # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the + # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) + sed '=' <$as_myself | + sed ' + N + s,$,-, + : loop + s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, + t loop + s,-$,, + s,^['$as_cr_digits']*\n,, + ' >$as_me.lineno && + chmod +x $as_me.lineno || + { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 +echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensible to this). + . ./$as_me.lineno + # Exit status is that of the last command. + exit +} + + +case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in + *c*,-n*) ECHO_N= ECHO_C=' +' ECHO_T=' ' ;; + *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; + *) ECHO_N= ECHO_C='\c' ECHO_T= ;; +esac + +if expr a : '\(a\)' >/dev/null 2>&1; then + as_expr=expr +else + as_expr=false +fi + +rm -f conf$$ conf$$.exe conf$$.file +echo >conf$$.file +if ln -s conf$$.file conf$$ 2>/dev/null; then + # We could just check for DJGPP; but this test a) works b) is more generic + # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). + if test -f conf$$.exe; then + # Don't use ln at all; we don't have any links + as_ln_s='cp -p' + else + as_ln_s='ln -s' + fi +elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.file + +if mkdir -p . 2>/dev/null; then + as_mkdir_p=: +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +as_executable_p="test -f" + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +# IFS +# We need space, tab and new line, in precisely that order. +as_nl=' +' +IFS=" $as_nl" + +# CDPATH. +$as_unset CDPATH + +exec 6>&1 + +# Open the log real soon, to keep \$[0] and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. Logging --version etc. is OK. +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX +@%:@@%:@ Running $as_me. @%:@@%:@ +_ASBOX +} >&5 +cat >&5 <<_CSEOF + +This file was extended by $as_me, which was +generated by GNU Autoconf 2.59. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +_CSEOF +echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 +echo >&5 +_ACEOF + +# Files that config.status was made for. +if test -n "$ac_config_files"; then + echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS +fi + +if test -n "$ac_config_headers"; then + echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS +fi + +if test -n "$ac_config_links"; then + echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS +fi + +if test -n "$ac_config_commands"; then + echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS +fi + +cat >>$CONFIG_STATUS <<\_ACEOF + +ac_cs_usage="\ +\`$as_me' instantiates files from templates according to the +current configuration. + +Usage: $0 [OPTIONS] [FILE]... + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to <bug-autoconf@gnu.org>." +_ACEOF + +cat >>$CONFIG_STATUS <<_ACEOF +ac_cs_version="\\ +config.status +configured by $0, generated by GNU Autoconf 2.59, + with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" + +Copyright (C) 2003 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." +srcdir=$srcdir +INSTALL="$INSTALL" +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +# If no file are specified by the user, then we need to provide default +# value. By we need to know if files were specified by the user. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=*) + ac_option=`expr "x$1" : 'x\([^=]*\)='` + ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` + ac_shift=: + ;; + -*) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + *) # This is not an option, so the user has probably given explicit + # arguments. + ac_option=$1 + ac_need_defaults=false;; + esac + + case $ac_option in + # Handling of the options. +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --vers* | -V ) + echo "$ac_cs_version"; exit 0 ;; + --he | --h) + # Conflict between --help and --header + { { echo "$as_me:$LINENO: error: ambiguous option: $1 +Try \`$0 --help' for more information." >&5 +echo "$as_me: error: ambiguous option: $1 +Try \`$0 --help' for more information." >&2;} + { (exit 1); exit 1; }; };; + --help | --hel | -h ) + echo "$ac_cs_usage"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + CONFIG_FILES="$CONFIG_FILES $ac_optarg" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" + ac_need_defaults=false;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 +Try \`$0 --help' for more information." >&5 +echo "$as_me: error: unrecognized option: $1 +Try \`$0 --help' for more information." >&2;} + { (exit 1); exit 1; }; } ;; + + *) ac_config_targets="$ac_config_targets $1" ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF +if \$ac_cs_recheck; then + echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 + exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion +fi + +_ACEOF + +cat >>$CONFIG_STATUS <<_ACEOF +# +# INIT-COMMANDS section. +# + +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + +_ACEOF + + + +cat >>$CONFIG_STATUS <<\_ACEOF +for ac_config_target in $ac_config_targets +do + case "$ac_config_target" in + # Handling of arguments. + "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; + "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; + "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +echo "$as_me: error: invalid argument: $ac_config_target" >&2;} + { (exit 1); exit 1; }; };; + esac +done + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason to put it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Create a temporary directory, and hook for its removal unless debugging. +$debug || +{ + trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 + trap '{ (exit 1); exit 1; }' 1 2 13 15 +} + +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && + test -n "$tmp" && test -d "$tmp" +} || +{ + tmp=./confstat$$-$RANDOM + (umask 077 && mkdir $tmp) +} || +{ + echo "$me: cannot create a temporary directory in ." >&2 + { (exit 1); exit 1; } +} + +_ACEOF + +cat >>$CONFIG_STATUS <<_ACEOF + +# +# CONFIG_FILES section. +# + +# No need to generate the scripts if there are no CONFIG_FILES. +# This happens for instance when ./config.status config.h +if test -n "\$CONFIG_FILES"; then + # Protect against being on the right side of a sed subst in config.status. + sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; + s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF +s,@SHELL@,$SHELL,;t t +s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t +s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t +s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t +s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t +s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t +s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t +s,@exec_prefix@,$exec_prefix,;t t +s,@prefix@,$prefix,;t t +s,@program_transform_name@,$program_transform_name,;t t +s,@bindir@,$bindir,;t t +s,@sbindir@,$sbindir,;t t +s,@libexecdir@,$libexecdir,;t t +s,@datadir@,$datadir,;t t +s,@sysconfdir@,$sysconfdir,;t t +s,@sharedstatedir@,$sharedstatedir,;t t +s,@localstatedir@,$localstatedir,;t t +s,@libdir@,$libdir,;t t +s,@includedir@,$includedir,;t t +s,@oldincludedir@,$oldincludedir,;t t +s,@infodir@,$infodir,;t t +s,@mandir@,$mandir,;t t +s,@build_alias@,$build_alias,;t t +s,@host_alias@,$host_alias,;t t +s,@target_alias@,$target_alias,;t t +s,@DEFS@,$DEFS,;t t +s,@ECHO_C@,$ECHO_C,;t t +s,@ECHO_N@,$ECHO_N,;t t +s,@ECHO_T@,$ECHO_T,;t t +s,@LIBS@,$LIBS,;t t +s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t +s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t +s,@INSTALL_DATA@,$INSTALL_DATA,;t t +s,@CYGPATH_W@,$CYGPATH_W,;t t +s,@PACKAGE@,$PACKAGE,;t t +s,@VERSION@,$VERSION,;t t +s,@ACLOCAL@,$ACLOCAL,;t t +s,@AUTOCONF@,$AUTOCONF,;t t +s,@AUTOMAKE@,$AUTOMAKE,;t t +s,@AUTOHEADER@,$AUTOHEADER,;t t +s,@MAKEINFO@,$MAKEINFO,;t t +s,@install_sh@,$install_sh,;t t +s,@STRIP@,$STRIP,;t t +s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t +s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t +s,@mkdir_p@,$mkdir_p,;t t +s,@AWK@,$AWK,;t t +s,@SET_MAKE@,$SET_MAKE,;t t +s,@am__leading_dot@,$am__leading_dot,;t t +s,@AMTAR@,$AMTAR,;t t +s,@am__tar@,$am__tar,;t t +s,@am__untar@,$am__untar,;t t +s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t +s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t +s,@MAINT@,$MAINT,;t t +s,@CC@,$CC,;t t +s,@CFLAGS@,$CFLAGS,;t t +s,@LDFLAGS@,$LDFLAGS,;t t +s,@CPPFLAGS@,$CPPFLAGS,;t t +s,@ac_ct_CC@,$ac_ct_CC,;t t +s,@EXEEXT@,$EXEEXT,;t t +s,@OBJEXT@,$OBJEXT,;t t +s,@DEPDIR@,$DEPDIR,;t t +s,@am__include@,$am__include,;t t +s,@am__quote@,$am__quote,;t t +s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t +s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t +s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t +s,@CCDEPMODE@,$CCDEPMODE,;t t +s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t +s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t +s,@CPP@,$CPP,;t t +s,@EGREP@,$EGREP,;t t +s,@PKG_CONFIG@,$PKG_CONFIG,;t t +s,@PACKAGE_CFLAGS@,$PACKAGE_CFLAGS,;t t +s,@PACKAGE_LIBS@,$PACKAGE_LIBS,;t t +s,@GETTEXT_PACKAGE@,$GETTEXT_PACKAGE,;t t +s,@USE_NLS@,$USE_NLS,;t t +s,@MSGFMT@,$MSGFMT,;t t +s,@GMSGFMT@,$GMSGFMT,;t t +s,@XGETTEXT@,$XGETTEXT,;t t +s,@CATALOGS@,$CATALOGS,;t t +s,@CATOBJEXT@,$CATOBJEXT,;t t +s,@DATADIRNAME@,$DATADIRNAME,;t t +s,@GMOFILES@,$GMOFILES,;t t +s,@INSTOBJEXT@,$INSTOBJEXT,;t t +s,@INTLLIBS@,$INTLLIBS,;t t +s,@PO_IN_DATADIR_TRUE@,$PO_IN_DATADIR_TRUE,;t t +s,@PO_IN_DATADIR_FALSE@,$PO_IN_DATADIR_FALSE,;t t +s,@POFILES@,$POFILES,;t t +s,@POSUB@,$POSUB,;t t +s,@MKINSTALLDIRS@,$MKINSTALLDIRS,;t t +s,@LIB@&t@OBJS@,$LIB@&t@OBJS,;t t +s,@LTLIBOBJS@,$LTLIBOBJS,;t t +CEOF + +_ACEOF + + cat >>$CONFIG_STATUS <<\_ACEOF + # Split the substitutions into bite-sized pieces for seds with + # small command number limits, like on Digital OSF/1 and HP-UX. + ac_max_sed_lines=48 + ac_sed_frag=1 # Number of current file. + ac_beg=1 # First line for current file. + ac_end=$ac_max_sed_lines # Line after last line for current file. + ac_more_lines=: + ac_sed_cmds= + while $ac_more_lines; do + if test $ac_beg -gt 1; then + sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag + else + sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag + fi + if test ! -s $tmp/subs.frag; then + ac_more_lines=false + else + # The purpose of the label and of the branching condition is to + # speed up the sed processing (if there are no `@' at all, there + # is no need to browse any of the substitutions). + # These are the two extra sed commands mentioned above. + (echo ':t + /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed + if test -z "$ac_sed_cmds"; then + ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" + else + ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" + fi + ac_sed_frag=`expr $ac_sed_frag + 1` + ac_beg=$ac_end + ac_end=`expr $ac_end + $ac_max_sed_lines` + fi + done + if test -z "$ac_sed_cmds"; then + ac_sed_cmds=cat + fi +fi # test -n "$CONFIG_FILES" + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF +for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue + # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". + case $ac_file in + - | *:- | *:-:* ) # input from stdin + cat >$tmp/stdin + ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` + ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; + *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` + ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; + * ) ac_file_in=$ac_file.in ;; + esac + + # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. + ac_dir=`(dirname "$ac_file") 2>/dev/null || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + { if $as_mkdir_p; then + mkdir -p "$ac_dir" + else + as_dir="$ac_dir" + as_dirs= + while test ! -d "$as_dir"; do + as_dirs="$as_dir $as_dirs" + as_dir=`(dirname "$as_dir") 2>/dev/null || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + done + test ! -n "$as_dirs" || mkdir $as_dirs + fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 +echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} + { (exit 1); exit 1; }; }; } + + ac_builddir=. + +if test "$ac_dir" != .; then + ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A "../" for each directory in $ac_dir_suffix. + ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` +else + ac_dir_suffix= ac_top_builddir= +fi + +case $srcdir in + .) # No --srcdir option. We are building in place. + ac_srcdir=. + if test -z "$ac_top_builddir"; then + ac_top_srcdir=. + else + ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` + fi ;; + [\\/]* | ?:[\\/]* ) # Absolute path. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir ;; + *) # Relative path. + ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_builddir$srcdir ;; +esac + +# Do not use `cd foo && pwd` to compute absolute paths, because +# the directories may not exist. +case `pwd` in +.) ac_abs_builddir="$ac_dir";; +*) + case "$ac_dir" in + .) ac_abs_builddir=`pwd`;; + [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; + *) ac_abs_builddir=`pwd`/"$ac_dir";; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_top_builddir=${ac_top_builddir}.;; +*) + case ${ac_top_builddir}. in + .) ac_abs_top_builddir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; + *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_srcdir=$ac_srcdir;; +*) + case $ac_srcdir in + .) ac_abs_srcdir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; + *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_top_srcdir=$ac_top_srcdir;; +*) + case $ac_top_srcdir in + .) ac_abs_top_srcdir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; + *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; + esac;; +esac + + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_builddir$INSTALL ;; + esac + + if test x"$ac_file" != x-; then + { echo "$as_me:$LINENO: creating $ac_file" >&5 +echo "$as_me: creating $ac_file" >&6;} + rm -f "$ac_file" + fi + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + if test x"$ac_file" = x-; then + configure_input= + else + configure_input="$ac_file. " + fi + configure_input=$configure_input"Generated from `echo $ac_file_in | + sed 's,.*/,,'` by configure." + + # First look for the input files in the build tree, otherwise in the + # src tree. + ac_file_inputs=`IFS=: + for f in $ac_file_in; do + case $f in + -) echo $tmp/stdin ;; + [\\/$]*) + # Absolute (can't be DOS-style, as IFS=:) + test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 +echo "$as_me: error: cannot find input file: $f" >&2;} + { (exit 1); exit 1; }; } + echo "$f";; + *) # Relative + if test -f "$f"; then + # Build tree + echo "$f" + elif test -f "$srcdir/$f"; then + # Source tree + echo "$srcdir/$f" + else + # /dev/null tree + { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 +echo "$as_me: error: cannot find input file: $f" >&2;} + { (exit 1); exit 1; }; } + fi;; + esac + done` || { (exit 1); exit 1; } +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF + sed "$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s,@configure_input@,$configure_input,;t t +s,@srcdir@,$ac_srcdir,;t t +s,@abs_srcdir@,$ac_abs_srcdir,;t t +s,@top_srcdir@,$ac_top_srcdir,;t t +s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t +s,@builddir@,$ac_builddir,;t t +s,@abs_builddir@,$ac_abs_builddir,;t t +s,@top_builddir@,$ac_top_builddir,;t t +s,@abs_top_builddir@,$ac_abs_top_builddir,;t t +s,@INSTALL@,$ac_INSTALL,;t t +" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out + rm -f $tmp/stdin + if test x"$ac_file" != x-; then + mv $tmp/out $ac_file + else + cat $tmp/out + rm -f $tmp/out + fi + +done +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF + +# +# CONFIG_HEADER section. +# + +# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where +# NAME is the cpp macro being defined and VALUE is the value it is being given. +# +# ac_d sets the value in "#define NAME VALUE" lines. +ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' +ac_dB='[ ].*$,\1#\2' +ac_dC=' ' +ac_dD=',;t' +# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". +ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' +ac_uB='$,\1#\2define\3' +ac_uC=' ' +ac_uD=',;t' + +for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue + # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". + case $ac_file in + - | *:- | *:-:* ) # input from stdin + cat >$tmp/stdin + ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` + ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; + *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` + ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; + * ) ac_file_in=$ac_file.in ;; + esac + + test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 +echo "$as_me: creating $ac_file" >&6;} + + # First look for the input files in the build tree, otherwise in the + # src tree. + ac_file_inputs=`IFS=: + for f in $ac_file_in; do + case $f in + -) echo $tmp/stdin ;; + [\\/$]*) + # Absolute (can't be DOS-style, as IFS=:) + test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 +echo "$as_me: error: cannot find input file: $f" >&2;} + { (exit 1); exit 1; }; } + # Do quote $f, to prevent DOS paths from being IFS'd. + echo "$f";; + *) # Relative + if test -f "$f"; then + # Build tree + echo "$f" + elif test -f "$srcdir/$f"; then + # Source tree + echo "$srcdir/$f" + else + # /dev/null tree + { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 +echo "$as_me: error: cannot find input file: $f" >&2;} + { (exit 1); exit 1; }; } + fi;; + esac + done` || { (exit 1); exit 1; } + # Remove the trailing spaces. + sed 's/[ ]*$//' $ac_file_inputs >$tmp/in + +_ACEOF + +# Transform confdefs.h into two sed scripts, `conftest.defines' and +# `conftest.undefs', that substitutes the proper values into +# config.h.in to produce config.h. The first handles `#define' +# templates, and the second `#undef' templates. +# And first: Protect against being on the right side of a sed subst in +# config.status. Protect against being in an unquoted here document +# in config.status. +rm -f conftest.defines conftest.undefs +# Using a here document instead of a string reduces the quoting nightmare. +# Putting comments in sed scripts is not portable. +# +# `end' is used to avoid that the second main sed command (meant for +# 0-ary CPP macros) applies to n-ary macro definitions. +# See the Autoconf documentation for `clear'. +cat >confdef2sed.sed <<\_ACEOF +s/[\\&,]/\\&/g +s,[\\$`],\\&,g +t clear +: clear +s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp +t end +s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp +: end +_ACEOF +# If some macros were called several times there might be several times +# the same #defines, which is useless. Nevertheless, we may not want to +# sort them, since we want the *last* AC-DEFINE to be honored. +uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines +sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs +rm -f confdef2sed.sed + +# This sed command replaces #undef with comments. This is necessary, for +# example, in the case of _POSIX_SOURCE, which is predefined and required +# on some systems where configure will not decide to define it. +cat >>conftest.undefs <<\_ACEOF +s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, +_ACEOF + +# Break up conftest.defines because some shells have a limit on the size +# of here documents, and old seds have small limits too (100 cmds). +echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS +echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS +echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS +echo ' :' >>$CONFIG_STATUS +rm -f conftest.tail +while grep . conftest.defines >/dev/null +do + # Write a limited-size here document to $tmp/defines.sed. + echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS + # Speed up: don't consider the non `#define' lines. + echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS + # Work around the forget-to-reset-the-flag bug. + echo 't clr' >>$CONFIG_STATUS + echo ': clr' >>$CONFIG_STATUS + sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS + echo 'CEOF + sed -f $tmp/defines.sed $tmp/in >$tmp/out + rm -f $tmp/in + mv $tmp/out $tmp/in +' >>$CONFIG_STATUS + sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail + rm -f conftest.defines + mv conftest.tail conftest.defines +done +rm -f conftest.defines +echo ' fi # grep' >>$CONFIG_STATUS +echo >>$CONFIG_STATUS + +# Break up conftest.undefs because some shells have a limit on the size +# of here documents, and old seds have small limits too (100 cmds). +echo ' # Handle all the #undef templates' >>$CONFIG_STATUS +rm -f conftest.tail +while grep . conftest.undefs >/dev/null +do + # Write a limited-size here document to $tmp/undefs.sed. + echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS + # Speed up: don't consider the non `#undef' + echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS + # Work around the forget-to-reset-the-flag bug. + echo 't clr' >>$CONFIG_STATUS + echo ': clr' >>$CONFIG_STATUS + sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS + echo 'CEOF + sed -f $tmp/undefs.sed $tmp/in >$tmp/out + rm -f $tmp/in + mv $tmp/out $tmp/in +' >>$CONFIG_STATUS + sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail + rm -f conftest.undefs + mv conftest.tail conftest.undefs +done +rm -f conftest.undefs + +cat >>$CONFIG_STATUS <<\_ACEOF + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + if test x"$ac_file" = x-; then + echo "/* Generated by configure. */" >$tmp/config.h + else + echo "/* $ac_file. Generated by configure. */" >$tmp/config.h + fi + cat $tmp/in >>$tmp/config.h + rm -f $tmp/in + if test x"$ac_file" != x-; then + if diff $ac_file $tmp/config.h >/dev/null 2>&1; then + { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 +echo "$as_me: $ac_file is unchanged" >&6;} + else + ac_dir=`(dirname "$ac_file") 2>/dev/null || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + { if $as_mkdir_p; then + mkdir -p "$ac_dir" + else + as_dir="$ac_dir" + as_dirs= + while test ! -d "$as_dir"; do + as_dirs="$as_dir $as_dirs" + as_dir=`(dirname "$as_dir") 2>/dev/null || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + done + test ! -n "$as_dirs" || mkdir $as_dirs + fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 +echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} + { (exit 1); exit 1; }; }; } + + rm -f $ac_file + mv $tmp/config.h $ac_file + fi + else + cat $tmp/config.h + rm -f $tmp/config.h + fi +# Compute $ac_file's index in $config_headers. +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $ac_file | $ac_file:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null || +$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X$ac_file : 'X\(//\)[^/]' \| \ + X$ac_file : 'X\(//\)$' \| \ + X$ac_file : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X$ac_file | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'`/stamp-h$_am_stamp_count +done +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF + +# +# CONFIG_COMMANDS section. +# +for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue + ac_dest=`echo "$ac_file" | sed 's,:.*,,'` + ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'` + ac_dir=`(dirname "$ac_dest") 2>/dev/null || +$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_dest" : 'X\(//\)[^/]' \| \ + X"$ac_dest" : 'X\(//\)$' \| \ + X"$ac_dest" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$ac_dest" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + { if $as_mkdir_p; then + mkdir -p "$ac_dir" + else + as_dir="$ac_dir" + as_dirs= + while test ! -d "$as_dir"; do + as_dirs="$as_dir $as_dirs" + as_dir=`(dirname "$as_dir") 2>/dev/null || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + done + test ! -n "$as_dirs" || mkdir $as_dirs + fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 +echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} + { (exit 1); exit 1; }; }; } + + ac_builddir=. + +if test "$ac_dir" != .; then + ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A "../" for each directory in $ac_dir_suffix. + ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` +else + ac_dir_suffix= ac_top_builddir= +fi + +case $srcdir in + .) # No --srcdir option. We are building in place. + ac_srcdir=. + if test -z "$ac_top_builddir"; then + ac_top_srcdir=. + else + ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` + fi ;; + [\\/]* | ?:[\\/]* ) # Absolute path. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir ;; + *) # Relative path. + ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_builddir$srcdir ;; +esac + +# Do not use `cd foo && pwd` to compute absolute paths, because +# the directories may not exist. +case `pwd` in +.) ac_abs_builddir="$ac_dir";; +*) + case "$ac_dir" in + .) ac_abs_builddir=`pwd`;; + [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; + *) ac_abs_builddir=`pwd`/"$ac_dir";; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_top_builddir=${ac_top_builddir}.;; +*) + case ${ac_top_builddir}. in + .) ac_abs_top_builddir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; + *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_srcdir=$ac_srcdir;; +*) + case $ac_srcdir in + .) ac_abs_srcdir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; + *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; + esac;; +esac +case $ac_abs_builddir in +.) ac_abs_top_srcdir=$ac_top_srcdir;; +*) + case $ac_top_srcdir in + .) ac_abs_top_srcdir=$ac_abs_builddir;; + [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; + *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; + esac;; +esac + + + { echo "$as_me:$LINENO: executing $ac_dest commands" >&5 +echo "$as_me: executing $ac_dest commands" >&6;} + case $ac_dest in + depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # So let's grep whole file. + if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then + dirpart=`(dirname "$mf") 2>/dev/null || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`(dirname "$file") 2>/dev/null || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + { if $as_mkdir_p; then + mkdir -p $dirpart/$fdir + else + as_dir=$dirpart/$fdir + as_dirs= + while test ! -d "$as_dir"; do + as_dirs="$as_dir $as_dirs" + as_dir=`(dirname "$as_dir") 2>/dev/null || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| \ + . : '\(.\)' 2>/dev/null || +echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } + /^X\(\/\/\)[^/].*/{ s//\1/; q; } + /^X\(\/\/\)$/{ s//\1/; q; } + /^X\(\/\).*/{ s//\1/; q; } + s/.*/./; q'` + done + test ! -n "$as_dirs" || mkdir $as_dirs + fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5 +echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;} + { (exit 1); exit 1; }; }; } + + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done +done + ;; + default-1 ) case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac ;; + esac +done +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF + +{ (exit 0); exit 0; } +_ACEOF +chmod +x $CONFIG_STATUS +ac_clean_files=$ac_clean_files_save + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + 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 || { (exit 1); exit 1; } +fi + + diff --git a/projects/gvpndialer/trunk/autom4te.cache/requests b/projects/gvpndialer/trunk/autom4te.cache/requests new file mode 100644 index 0000000..8aa8c59 --- /dev/null +++ b/projects/gvpndialer/trunk/autom4te.cache/requests @@ -0,0 +1,281 @@ +# This file was generated. +# It contains the lists of macros which have been traced. +# It can be safely removed. + +@request = ( + bless( [ + '0', + 1, + [ + '/usr/share/autoconf' + ], + [ + '/usr/share/autoconf/autoconf/autoconf.m4f', + 'aclocal.m4', + 'configure.in' + ], + { + '_LT_AC_TAGCONFIG' => 1, + 'm4_pattern_forbid' => 1, + 'AC_CANONICAL_TARGET' => 1, + 'AC_CONFIG_LIBOBJ_DIR' => 1, + 'AC_C_VOLATILE' => 1, + 'AC_TYPE_OFF_T' => 1, + 'AC_FUNC_CLOSEDIR_VOID' => 1, + 'AC_REPLACE_FNMATCH' => 1, + 'AC_PROG_LIBTOOL' => 1, + 'AC_FUNC_STAT' => 1, + 'AC_FUNC_WAIT3' => 1, + 'AC_HEADER_TIME' => 1, + 'AC_FUNC_LSTAT' => 1, + 'AC_STRUCT_TM' => 1, + 'AM_AUTOMAKE_VERSION' => 1, + 'AC_FUNC_GETMNTENT' => 1, + 'AC_TYPE_MODE_T' => 1, + 'AC_FUNC_STRTOD' => 1, + 'AC_CHECK_HEADERS' => 1, + 'AC_FUNC_STRNLEN' => 1, + 'm4_sinclude' => 1, + 'AC_PROG_CXX' => 1, + 'AC_PATH_X' => 1, + 'AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK' => 1, + 'AC_PROG_AWK' => 1, + '_m4_warn' => 1, + 'AC_HEADER_STDC' => 1, + 'AC_HEADER_MAJOR' => 1, + 'AC_FUNC_ERROR_AT_LINE' => 1, + 'AC_PROG_GCC_TRADITIONAL' => 1, + 'AC_LIBSOURCE' => 1, + 'AC_FUNC_MBRTOWC' => 1, + 'AC_STRUCT_ST_BLOCKS' => 1, + 'AC_TYPE_SIGNAL' => 1, + 'AC_CANONICAL_BUILD' => 1, + 'AC_TYPE_UID_T' => 1, + 'AC_PROG_MAKE_SET' => 1, + 'AC_CONFIG_AUX_DIR' => 1, + 'm4_pattern_allow' => 1, + 'sinclude' => 1, + 'AC_DEFINE_TRACE_LITERAL' => 1, + 'AC_FUNC_STRERROR_R' => 1, + 'AC_PROG_CC' => 1, + 'AC_FUNC_FORK' => 1, + 'AC_DECL_SYS_SIGLIST' => 1, + 'AC_FUNC_STRCOLL' => 1, + 'AC_FUNC_VPRINTF' => 1, + 'AC_PROG_YACC' => 1, + 'AC_INIT' => 1, + 'AC_STRUCT_TIMEZONE' => 1, + 'AC_FUNC_CHOWN' => 1, + 'AC_SUBST' => 1, + 'AC_FUNC_ALLOCA' => 1, + 'AC_CANONICAL_HOST' => 1, + 'AC_FUNC_GETPGRP' => 1, + 'AC_PROG_RANLIB' => 1, + 'AM_INIT_AUTOMAKE' => 1, + 'AC_FUNC_SETPGRP' => 1, + 'AC_CONFIG_SUBDIRS' => 1, + 'AC_FUNC_MMAP' => 1, + 'AC_FUNC_REALLOC' => 1, + 'AC_TYPE_SIZE_T' => 1, + 'AC_CONFIG_LINKS' => 1, + 'AC_CHECK_TYPES' => 1, + 'LT_SUPPORTED_TAG' => 1, + 'AC_CHECK_MEMBERS' => 1, + 'AM_MAINTAINER_MODE' => 1, + 'AC_FUNC_UTIME_NULL' => 1, + 'AC_FUNC_SELECT_ARGTYPES' => 1, + 'AC_HEADER_STAT' => 1, + 'AC_FUNC_STRFTIME' => 1, + 'AC_PROG_CPP' => 1, + 'AC_C_INLINE' => 1, + 'AM_ENABLE_MULTILIB' => 1, + 'AC_PROG_LEX' => 1, + 'AC_C_CONST' => 1, + 'AC_TYPE_PID_T' => 1, + 'AC_CONFIG_FILES' => 1, + 'include' => 1, + 'AC_FUNC_SETVBUF_REVERSED' => 1, + 'AC_PROG_INSTALL' => 1, + 'AM_GNU_GETTEXT' => 1, + 'AC_FUNC_OBSTACK' => 1, + 'AC_CHECK_LIB' => 1, + 'AC_FUNC_MALLOC' => 1, + 'AC_FUNC_GETGROUPS' => 1, + 'AC_FUNC_GETLOADAVG' => 1, + 'AH_OUTPUT' => 1, + 'AC_FUNC_FSEEKO' => 1, + 'AM_PROG_CC_C_O' => 1, + 'AC_FUNC_MKTIME' => 1, + 'AC_CANONICAL_SYSTEM' => 1, + 'AM_CONDITIONAL' => 1, + 'AC_CONFIG_HEADERS' => 1, + 'AC_HEADER_SYS_WAIT' => 1, + 'AC_PROG_LN_S' => 1, + 'AC_FUNC_MEMCMP' => 1, + 'm4_include' => 1, + 'AC_HEADER_DIRENT' => 1, + 'AC_CHECK_FUNCS' => 1 + } + ], 'Autom4te::Request' ), + bless( [ + '1', + 1, + [ + '/usr/share/autoconf' + ], + [ + '/usr/share/autoconf/autoconf/autoconf.m4f', + '/usr/share/aclocal/glib-gettext.m4', + '/usr/share/aclocal/pkg.m4', + '/usr/share/aclocal-1.9/amversion.m4', + '/usr/share/aclocal-1.9/auxdir.m4', + '/usr/share/aclocal-1.9/ccstdc.m4', + '/usr/share/aclocal-1.9/cond.m4', + '/usr/share/aclocal-1.9/depend.m4', + '/usr/share/aclocal-1.9/depout.m4', + '/usr/share/aclocal-1.9/header.m4', + '/usr/share/aclocal-1.9/init.m4', + '/usr/share/aclocal-1.9/install-sh.m4', + '/usr/share/aclocal-1.9/lead-dot.m4', + '/usr/share/aclocal-1.9/maintainer.m4', + '/usr/share/aclocal-1.9/make.m4', + '/usr/share/aclocal-1.9/missing.m4', + '/usr/share/aclocal-1.9/mkdirp.m4', + '/usr/share/aclocal-1.9/options.m4', + '/usr/share/aclocal-1.9/runlog.m4', + '/usr/share/aclocal-1.9/sanity.m4', + '/usr/share/aclocal-1.9/strip.m4', + '/usr/share/aclocal-1.9/tar.m4', + 'configure.in' + ], + { + 'm4_pattern_forbid' => 1, + 'AC_CONFIG_LIBOBJ_DIR' => 1, + 'AC_TYPE_OFF_T' => 1, + 'AC_C_VOLATILE' => 1, + 'AC_FUNC_CLOSEDIR_VOID' => 1, + 'AC_REPLACE_FNMATCH' => 1, + 'AC_DEFUN' => 1, + 'AC_PROG_LIBTOOL' => 1, + 'AC_FUNC_STAT' => 1, + 'AM_GLIB_GNU_GETTEXT' => 1, + 'AM_PROG_MKDIR_P' => 1, + 'AC_HEADER_TIME' => 1, + 'AC_FUNC_WAIT3' => 1, + 'AC_STRUCT_TM' => 1, + 'AC_FUNC_LSTAT' => 1, + 'AM_AUTOMAKE_VERSION' => 1, + 'AC_TYPE_MODE_T' => 1, + 'AC_FUNC_GETMNTENT' => 1, + 'AM_MISSING_HAS_RUN' => 1, + 'AC_FUNC_STRTOD' => 1, + 'AC_CHECK_HEADERS' => 1, + 'AM_MISSING_PROG' => 1, + 'AC_FUNC_STRNLEN' => 1, + 'm4_sinclude' => 1, + 'AC_PROG_CXX' => 1, + 'AC_PATH_X' => 1, + 'AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK' => 1, + 'AM_PROG_INSTALL_STRIP' => 1, + 'AC_PROG_AWK' => 1, + '_m4_warn' => 1, + 'AC_HEADER_STDC' => 1, + 'AC_HEADER_MAJOR' => 1, + 'AM_SANITY_CHECK' => 1, + '_AM_PROG_TAR' => 1, + 'AC_FUNC_ERROR_AT_LINE' => 1, + 'AC_PROG_GCC_TRADITIONAL' => 1, + 'AC_LIBSOURCE' => 1, + 'AM_DEP_TRACK' => 1, + 'AC_FUNC_MBRTOWC' => 1, + 'AM_CONFIG_HEADER' => 1, + 'AC_STRUCT_ST_BLOCKS' => 1, + 'AC_TYPE_SIGNAL' => 1, + 'AM_PROG_CC_STDC' => 1, + 'AC_TYPE_UID_T' => 1, + '_AM_IF_OPTION' => 1, + 'AC_CONFIG_AUX_DIR' => 1, + 'AC_PROG_MAKE_SET' => 1, + 'sinclude' => 1, + 'm4_pattern_allow' => 1, + 'AM_SET_LEADING_DOT' => 1, + 'AC_DEFINE_TRACE_LITERAL' => 1, + '_AM_DEPENDENCIES' => 1, + 'AC_FUNC_STRERROR_R' => 1, + 'AC_PROG_CC' => 1, + 'AC_FUNC_FORK' => 1, + 'AC_DECL_SYS_SIGLIST' => 1, + 'PKG_CHECK_MODULES' => 1, + 'AC_FUNC_VPRINTF' => 1, + 'AC_FUNC_STRCOLL' => 1, + 'AU_DEFUN' => 1, + 'AC_PROG_YACC' => 1, + 'AC_INIT' => 1, + 'AC_STRUCT_TIMEZONE' => 1, + 'jm_MAINTAINER_MODE' => 1, + 'AC_FUNC_CHOWN' => 1, + 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1, + 'AC_SUBST' => 1, + 'AC_FUNC_ALLOCA' => 1, + '_AM_SET_OPTION' => 1, + 'AC_CANONICAL_HOST' => 1, + 'AC_FUNC_GETPGRP' => 1, + 'AC_PROG_RANLIB' => 1, + 'AM_GLIB_DEFINE_LOCALEDIR' => 1, + 'AC_FUNC_SETPGRP' => 1, + 'AM_INIT_AUTOMAKE' => 1, + 'AC_CONFIG_SUBDIRS' => 1, + 'AC_FUNC_MMAP' => 1, + 'AC_FUNC_REALLOC' => 1, + 'AC_TYPE_SIZE_T' => 1, + 'AC_CONFIG_LINKS' => 1, + 'AC_CHECK_TYPES' => 1, + 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, + 'AC_CHECK_MEMBERS' => 1, + 'AM_MAINTAINER_MODE' => 1, + 'AC_FUNC_UTIME_NULL' => 1, + 'AC_FUNC_SELECT_ARGTYPES' => 1, + 'AC_HEADER_STAT' => 1, + 'AC_FUNC_STRFTIME' => 1, + 'fp_PROG_CC_STDC' => 1, + 'AC_PROG_CPP' => 1, + 'AC_C_INLINE' => 1, + 'AC_TYPE_PID_T' => 1, + 'AC_PROG_LEX' => 1, + 'AC_C_CONST' => 1, + 'AC_CONFIG_FILES' => 1, + 'include' => 1, + 'AC_FUNC_SETVBUF_REVERSED' => 1, + 'AC_PROG_INSTALL' => 1, + 'AM_AUX_DIR_EXPAND' => 1, + 'AM_GNU_GETTEXT' => 1, + 'AC_FUNC_OBSTACK' => 1, + 'AC_CHECK_LIB' => 1, + '_AM_SET_OPTIONS' => 1, + 'AC_FUNC_MALLOC' => 1, + '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, + 'AM_RUN_LOG' => 1, + 'AC_FUNC_GETGROUPS' => 1, + 'AC_FUNC_GETLOADAVG' => 1, + 'AH_OUTPUT' => 1, + 'AC_FUNC_FSEEKO' => 1, + 'AM_PROG_CC_C_O' => 1, + '_AM_MANGLE_OPTION' => 1, + 'AC_CANONICAL_SYSTEM' => 1, + 'AM_CONDITIONAL' => 1, + 'AC_FUNC_MKTIME' => 1, + 'AC_CONFIG_HEADERS' => 1, + 'AM_SET_DEPDIR' => 1, + 'AC_HEADER_SYS_WAIT' => 1, + 'AC_PROG_LN_S' => 1, + 'AC_FUNC_MEMCMP' => 1, + 'm4_include' => 1, + 'AM_PROG_INSTALL_SH' => 1, + 'AC_HEADER_DIRENT' => 1, + '_AC_AM_CONFIG_HEADER_HOOK' => 1, + 'AC_CHECK_FUNCS' => 1, + 'AM_MAKE_INCLUDE' => 1 + } + ], 'Autom4te::Request' ) + ); + diff --git a/projects/gvpndialer/trunk/autom4te.cache/traces.0 b/projects/gvpndialer/trunk/autom4te.cache/traces.0 new file mode 100644 index 0000000..d6ca72a --- /dev/null +++ b/projects/gvpndialer/trunk/autom4te.cache/traces.0 @@ -0,0 +1,325 @@ +m4trace:configure.in:3: -1- AC_INIT([configure.in]) +m4trace:configure.in:3: -1- m4_pattern_forbid([^_?A[CHUM]_]) +m4trace:configure.in:3: -1- m4_pattern_forbid([_AC_]) +m4trace:configure.in:3: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) +m4trace:configure.in:3: -1- m4_pattern_allow([^AS_FLAGS$]) +m4trace:configure.in:3: -1- m4_pattern_forbid([^_?m4_]) +m4trace:configure.in:3: -1- m4_pattern_forbid([^dnl$]) +m4trace:configure.in:3: -1- m4_pattern_forbid([^_?AS_]) +m4trace:configure.in:3: -1- AC_SUBST([SHELL], [${CONFIG_SHELL-/bin/sh}]) +m4trace:configure.in:3: -1- AC_SUBST([PATH_SEPARATOR]) +m4trace:configure.in:3: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])]) +m4trace:configure.in:3: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])]) +m4trace:configure.in:3: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])]) +m4trace:configure.in:3: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])]) +m4trace:configure.in:3: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])]) +m4trace:configure.in:3: -1- AC_SUBST([exec_prefix], [NONE]) +m4trace:configure.in:3: -1- AC_SUBST([prefix], [NONE]) +m4trace:configure.in:3: -1- AC_SUBST([program_transform_name], [s,x,x,]) +m4trace:configure.in:3: -1- AC_SUBST([bindir], ['${exec_prefix}/bin']) +m4trace:configure.in:3: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin']) +m4trace:configure.in:3: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec']) +m4trace:configure.in:3: -1- AC_SUBST([datadir], ['${prefix}/share']) +m4trace:configure.in:3: -1- AC_SUBST([sysconfdir], ['${prefix}/etc']) +m4trace:configure.in:3: -1- AC_SUBST([sharedstatedir], ['${prefix}/com']) +m4trace:configure.in:3: -1- AC_SUBST([localstatedir], ['${prefix}/var']) +m4trace:configure.in:3: -1- AC_SUBST([libdir], ['${exec_prefix}/lib']) +m4trace:configure.in:3: -1- AC_SUBST([includedir], ['${prefix}/include']) +m4trace:configure.in:3: -1- AC_SUBST([oldincludedir], ['/usr/include']) +m4trace:configure.in:3: -1- AC_SUBST([infodir], ['${prefix}/info']) +m4trace:configure.in:3: -1- AC_SUBST([mandir], ['${prefix}/man']) +m4trace:configure.in:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME]) +m4trace:configure.in:3: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */ +#undef PACKAGE_NAME]) +m4trace:configure.in:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME]) +m4trace:configure.in:3: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME]) +m4trace:configure.in:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION]) +m4trace:configure.in:3: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */ +#undef PACKAGE_VERSION]) +m4trace:configure.in:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING]) +m4trace:configure.in:3: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING]) +m4trace:configure.in:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT]) +m4trace:configure.in:3: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT]) +m4trace:configure.in:3: -1- AC_SUBST([build_alias]) +m4trace:configure.in:3: -1- AC_SUBST([host_alias]) +m4trace:configure.in:3: -1- AC_SUBST([target_alias]) +m4trace:configure.in:3: -1- AC_SUBST([DEFS]) +m4trace:configure.in:3: -1- AC_SUBST([ECHO_C]) +m4trace:configure.in:3: -1- AC_SUBST([ECHO_N]) +m4trace:configure.in:3: -1- AC_SUBST([ECHO_T]) +m4trace:configure.in:3: -1- AC_SUBST([LIBS]) +m4trace:configure.in:4: -1- AM_INIT_AUTOMAKE([gvpndialer], [1.0]) +m4trace:configure.in:4: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) +m4trace:configure.in:4: -1- AM_AUTOMAKE_VERSION([1.9.2]) +m4trace:configure.in:4: -1- AC_PROG_INSTALL +m4trace:configure.in:4: -1- AC_SUBST([INSTALL_PROGRAM]) +m4trace:configure.in:4: -1- AC_SUBST([INSTALL_SCRIPT]) +m4trace:configure.in:4: -1- AC_SUBST([INSTALL_DATA]) +m4trace:configure.in:4: -1- AC_SUBST([CYGPATH_W]) +m4trace:configure.in:4: -1- AC_SUBST([PACKAGE], [gvpndialer]) +m4trace:configure.in:4: -1- AC_SUBST([VERSION], [1.0]) +m4trace:configure.in:4: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE]) +m4trace:configure.in:4: -1- AH_OUTPUT([PACKAGE], [/* Name of package */ +#undef PACKAGE]) +m4trace:configure.in:4: -1- AC_DEFINE_TRACE_LITERAL([VERSION]) +m4trace:configure.in:4: -1- AH_OUTPUT([VERSION], [/* Version number of package */ +#undef VERSION]) +m4trace:configure.in:4: -1- AC_SUBST([ACLOCAL]) +m4trace:configure.in:4: -1- AC_SUBST([AUTOCONF]) +m4trace:configure.in:4: -1- AC_SUBST([AUTOMAKE]) +m4trace:configure.in:4: -1- AC_SUBST([AUTOHEADER]) +m4trace:configure.in:4: -1- AC_SUBST([MAKEINFO]) +m4trace:configure.in:4: -1- AC_SUBST([install_sh]) +m4trace:configure.in:4: -1- AC_SUBST([STRIP]) +m4trace:configure.in:4: -1- AC_SUBST([ac_ct_STRIP]) +m4trace:configure.in:4: -1- AC_SUBST([INSTALL_STRIP_PROGRAM]) +m4trace:configure.in:4: -1- AC_SUBST([mkdir_p]) +m4trace:configure.in:4: -1- AC_PROG_AWK +m4trace:configure.in:4: -1- AC_SUBST([AWK]) +m4trace:configure.in:4: -1- AC_PROG_MAKE_SET +m4trace:configure.in:4: -1- AC_SUBST([SET_MAKE]) +m4trace:configure.in:4: -1- AC_SUBST([am__leading_dot]) +m4trace:configure.in:4: -1- AC_SUBST([AMTAR]) +m4trace:configure.in:4: -1- AC_SUBST([am__tar]) +m4trace:configure.in:4: -1- AC_SUBST([am__untar]) +m4trace:configure.in:5: -1- AM_MAINTAINER_MODE +m4trace:configure.in:5: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) +m4trace:configure.in:5: -1- AC_SUBST([MAINTAINER_MODE_TRUE]) +m4trace:configure.in:5: -1- AC_SUBST([MAINTAINER_MODE_FALSE]) +m4trace:configure.in:5: -1- AC_SUBST([MAINT]) +m4trace:configure.in:6: -1- _m4_warn([obsolete], [The macro `AM_CONFIG_HEADER' is obsolete. +You should run autoupdate.], [aclocal.m4:912: AM_CONFIG_HEADER is expanded from... +configure.in:6: the top level]) +m4trace:configure.in:6: -1- AC_CONFIG_HEADERS([config.h]) +m4trace:configure.in:8: -1- AC_PROG_CC +m4trace:configure.in:8: -1- AC_SUBST([CC]) +m4trace:configure.in:8: -1- AC_SUBST([CFLAGS]) +m4trace:configure.in:8: -1- AC_SUBST([LDFLAGS]) +m4trace:configure.in:8: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.in:8: -1- AC_SUBST([CC]) +m4trace:configure.in:8: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:8: -1- AC_SUBST([CC]) +m4trace:configure.in:8: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:8: -1- AC_SUBST([CC]) +m4trace:configure.in:8: -1- AC_SUBST([CC]) +m4trace:configure.in:8: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:8: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext]) +m4trace:configure.in:8: -1- AC_SUBST([OBJEXT], [$ac_cv_objext]) +m4trace:configure.in:8: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"]) +m4trace:configure.in:8: -1- AC_SUBST([am__include]) +m4trace:configure.in:8: -1- AC_SUBST([am__quote]) +m4trace:configure.in:8: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +m4trace:configure.in:8: -1- AC_SUBST([AMDEP_TRUE]) +m4trace:configure.in:8: -1- AC_SUBST([AMDEP_FALSE]) +m4trace:configure.in:8: -1- AC_SUBST([AMDEPBACKSLASH]) +m4trace:configure.in:8: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) +m4trace:configure.in:8: -1- AM_CONDITIONAL([am__fastdepCC], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) +m4trace:configure.in:8: -1- AC_SUBST([am__fastdepCC_TRUE]) +m4trace:configure.in:8: -1- AC_SUBST([am__fastdepCC_FALSE]) +m4trace:configure.in:9: -1- AC_PROG_CC +m4trace:configure.in:9: -1- AC_SUBST([CC]) +m4trace:configure.in:9: -1- AC_SUBST([CFLAGS]) +m4trace:configure.in:9: -1- AC_SUBST([LDFLAGS]) +m4trace:configure.in:9: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.in:9: -1- AC_SUBST([CC]) +m4trace:configure.in:9: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:9: -1- AC_SUBST([CC]) +m4trace:configure.in:9: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:9: -1- AC_SUBST([CC]) +m4trace:configure.in:9: -1- AC_SUBST([CC]) +m4trace:configure.in:9: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:9: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) +m4trace:configure.in:9: -1- AM_CONDITIONAL([am__fastdepCC], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) +m4trace:configure.in:9: -1- AC_SUBST([am__fastdepCC_TRUE]) +m4trace:configure.in:9: -1- AC_SUBST([am__fastdepCC_FALSE]) +m4trace:configure.in:10: -1- _m4_warn([obsolete], [The macro `AM_PROG_CC_STDC' is obsolete. +You should run autoupdate.], [aclocal.m4:597: AM_PROG_CC_STDC is expanded from... +configure.in:10: the top level]) +m4trace:configure.in:10: -1- AC_PROG_CC +m4trace:configure.in:10: -1- AC_SUBST([CC]) +m4trace:configure.in:10: -1- AC_SUBST([CFLAGS]) +m4trace:configure.in:10: -1- AC_SUBST([LDFLAGS]) +m4trace:configure.in:10: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.in:10: -1- AC_SUBST([CC]) +m4trace:configure.in:10: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:10: -1- AC_SUBST([CC]) +m4trace:configure.in:10: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:10: -1- AC_SUBST([CC]) +m4trace:configure.in:10: -1- AC_SUBST([CC]) +m4trace:configure.in:10: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:10: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) +m4trace:configure.in:10: -1- AM_CONDITIONAL([am__fastdepCC], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) +m4trace:configure.in:10: -1- AC_SUBST([am__fastdepCC_TRUE]) +m4trace:configure.in:10: -1- AC_SUBST([am__fastdepCC_FALSE]) +m4trace:configure.in:10: -1- _m4_warn([obsolete], [AM_PROG_CC_STDC: + your code should no longer depend upon `am_cv_prog_cc_stdc', but upon + `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when + you adjust the code. You can also remove the above call to + AC_PROG_CC if you already called it elsewhere.], [aclocal.m4:597: AM_PROG_CC_STDC is expanded from... +configure.in:10: the top level]) +m4trace:configure.in:11: -1- AC_HEADER_STDC +m4trace:configure.in:11: -1- AC_PROG_CPP +m4trace:configure.in:11: -1- AC_SUBST([CPP]) +m4trace:configure.in:11: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.in:11: -1- AC_SUBST([CPP]) +m4trace:configure.in:11: -1- AC_SUBST([EGREP]) +m4trace:configure.in:11: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) +m4trace:configure.in:11: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS]) +m4trace:configure.in:13: -1- _m4_warn([obsolete], [The macro `AC_HAVE_HEADERS' is obsolete. +You should run autoupdate.], [autoconf/oldnames.m4:56: AC_HAVE_HEADERS is expanded from... +configure.in:13: the top level]) +m4trace:configure.in:13: -1- AC_CHECK_HEADERS([pcre/pcre.h], [], [{ { echo "$as_me:$LINENO: error: Cannot find pcre.h. Please install libpcre" >&5 +echo "$as_me: error: Cannot find pcre.h. Please install libpcre" >&2;} + { (exit 1); exit 1; }; }]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_PCRE_PCRE_H], [/* Define to 1 if you have the <pcre/pcre.h> header file. */ +#undef HAVE_PCRE_PCRE_H]) +m4trace:configure.in:13: -1- AC_CHECK_HEADERS([sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h], [], [], [$ac_includes_default]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */ +#undef HAVE_SYS_TYPES_H]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */ +#undef HAVE_SYS_STAT_H]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */ +#undef HAVE_STDLIB_H]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */ +#undef HAVE_STRING_H]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */ +#undef HAVE_MEMORY_H]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */ +#undef HAVE_STRINGS_H]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */ +#undef HAVE_INTTYPES_H]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */ +#undef HAVE_STDINT_H]) +m4trace:configure.in:13: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */ +#undef HAVE_UNISTD_H]) +m4trace:configure.in:14: -1- _m4_warn([obsolete], [The macro `AC_HAVE_HEADERS' is obsolete. +You should run autoupdate.], [autoconf/oldnames.m4:56: AC_HAVE_HEADERS is expanded from... +configure.in:14: the top level]) +m4trace:configure.in:14: -1- AC_CHECK_HEADERS([pty.h], [], [{ { echo "$as_me:$LINENO: error: Cannot find pty.h" >&5 +echo "$as_me: error: Cannot find pty.h" >&2;} + { (exit 1); exit 1; }; }]) +m4trace:configure.in:14: -1- AH_OUTPUT([HAVE_PTY_H], [/* Define to 1 if you have the <pty.h> header file. */ +#undef HAVE_PTY_H]) +m4trace:configure.in:15: -1- _m4_warn([cross], [cannot check for file existence when cross compiling], [autoconf/general.m4:2315: AC_CHECK_FILE is expanded from... +configure.in:15: the top level]) +m4trace:configure.in:18: -1- AC_SUBST([PKG_CONFIG], [$ac_cv_path_PKG_CONFIG]) +m4trace:configure.in:18: -1- AC_SUBST([PACKAGE_CFLAGS]) +m4trace:configure.in:18: -1- AC_SUBST([PACKAGE_LIBS]) +m4trace:configure.in:20: -1- AC_SUBST([PACKAGE_CFLAGS]) +m4trace:configure.in:21: -1- AC_SUBST([PACKAGE_LIBS]) +m4trace:configure.in:24: -1- AC_SUBST([GETTEXT_PACKAGE]) +m4trace:configure.in:25: -1- AC_DEFINE_TRACE_LITERAL([GETTEXT_PACKAGE]) +m4trace:configure.in:29: -1- AC_CHECK_HEADERS([locale.h]) +m4trace:configure.in:29: -1- AH_OUTPUT([HAVE_LOCALE_H], [/* Define to 1 if you have the <locale.h> header file. */ +#undef HAVE_LOCALE_H]) +m4trace:configure.in:29: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. +You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from... +autoconf/general.m4:1799: AC_CACHE_VAL is expanded from... +autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from... +aclocal.m4:71: GLIB_LC_MESSAGES is expanded from... +aclocal.m4:382: GLIB_GNU_GETTEXT is expanded from... +aclocal.m4:411: AM_GLIB_GNU_GETTEXT is expanded from... +configure.in:29: the top level]) +m4trace:configure.in:29: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LC_MESSAGES]) +m4trace:configure.in:29: -1- AH_OUTPUT([HAVE_LC_MESSAGES], [/* Define if your <locale.h> file defines LC_MESSAGES. */ +#undef HAVE_LC_MESSAGES]) +m4trace:configure.in:29: -1- AC_SUBST([USE_NLS]) +m4trace:configure.in:29: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. +You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from... +autoconf/general.m4:1799: AC_CACHE_VAL is expanded from... +autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from... +autoconf/headers.m4:91: AC_CHECK_HEADER is expanded from... +aclocal.m4:299: GLIB_WITH_NLS is expanded from... +aclocal.m4:382: GLIB_GNU_GETTEXT is expanded from... +aclocal.m4:411: AM_GLIB_GNU_GETTEXT is expanded from... +configure.in:29: the top level]) +m4trace:configure.in:29: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. +You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from... +autoconf/general.m4:1799: AC_CACHE_VAL is expanded from... +autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from... +autoconf/headers.m4:91: AC_CHECK_HEADER is expanded from... +aclocal.m4:299: GLIB_WITH_NLS is expanded from... +aclocal.m4:382: GLIB_GNU_GETTEXT is expanded from... +aclocal.m4:411: AM_GLIB_GNU_GETTEXT is expanded from... +configure.in:29: the top level]) +m4trace:configure.in:29: -1- AC_CHECK_FUNCS([bind_textdomain_codeset]) +m4trace:configure.in:29: -1- AH_OUTPUT([HAVE_BIND_TEXTDOMAIN_CODESET], [/* Define to 1 if you have the `bind_textdomain_codeset\' function. */ +#undef HAVE_BIND_TEXTDOMAIN_CODESET]) +m4trace:configure.in:29: -1- AC_CHECK_LIB([intl], [bindtextdomain], [AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dgettext, + gt_cv_func_dgettext_libintl=yes)])]) +m4trace:configure.in:29: -1- AC_CHECK_LIB([intl], [ngettext], [AC_CHECK_LIB(intl, dgettext, + gt_cv_func_dgettext_libintl=yes)]) +m4trace:configure.in:29: -1- AC_CHECK_LIB([intl], [dgettext], [gt_cv_func_dgettext_libintl=yes]) +m4trace:configure.in:29: -1- AC_CHECK_LIB([intl], [ngettext], [AC_CHECK_LIB(intl, dcgettext, + [gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv], + :,-liconv)], [:], [-liconv]) +m4trace:configure.in:29: -1- AC_CHECK_LIB([intl], [dcgettext], [gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv], [:], [-liconv]) +m4trace:configure.in:29: -1- AC_CHECK_FUNCS([bind_textdomain_codeset]) +m4trace:configure.in:29: -1- AH_OUTPUT([HAVE_BIND_TEXTDOMAIN_CODESET], [/* Define to 1 if you have the `bind_textdomain_codeset\' function. */ +#undef HAVE_BIND_TEXTDOMAIN_CODESET]) +m4trace:configure.in:29: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETTEXT]) +m4trace:configure.in:29: -1- AH_OUTPUT([HAVE_GETTEXT], [/* Define if the GNU gettext() function is already present or preinstalled. */ +#undef HAVE_GETTEXT]) +m4trace:configure.in:29: -1- AC_SUBST([MSGFMT]) +m4trace:configure.in:29: -1- AC_CHECK_FUNCS([dcgettext]) +m4trace:configure.in:29: -1- AH_OUTPUT([HAVE_DCGETTEXT], [/* Define to 1 if you have the `dcgettext\' function. */ +#undef HAVE_DCGETTEXT]) +m4trace:configure.in:29: -1- AC_SUBST([GMSGFMT], [$ac_cv_path_GMSGFMT]) +m4trace:configure.in:29: -1- AC_SUBST([XGETTEXT]) +m4trace:configure.in:29: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. +You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from... +autoconf/headers.m4:91: AC_CHECK_HEADER is expanded from... +aclocal.m4:299: GLIB_WITH_NLS is expanded from... +aclocal.m4:382: GLIB_GNU_GETTEXT is expanded from... +aclocal.m4:411: AM_GLIB_GNU_GETTEXT is expanded from... +configure.in:29: the top level]) +m4trace:configure.in:29: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_NLS]) +m4trace:configure.in:29: -1- AH_OUTPUT([ENABLE_NLS], [/* always defined to indicate that i18n is enabled */ +#undef ENABLE_NLS]) +m4trace:configure.in:29: -1- _m4_warn([obsolete], [The macro `AC_OUTPUT_COMMANDS' is obsolete. +You should run autoupdate.], [autoconf/status.m4:318: AC_OUTPUT_COMMANDS is expanded from... +aclocal.m4:299: GLIB_WITH_NLS is expanded from... +aclocal.m4:382: GLIB_GNU_GETTEXT is expanded from... +aclocal.m4:411: AM_GLIB_GNU_GETTEXT is expanded from... +configure.in:29: the top level]) +m4trace:configure.in:29: -3- _m4_warn([obsolete], [The macro `_AC_OUTPUT_COMMANDS_CNT' is obsolete. +You should run autoupdate.], [autoconf/status.m4:321: _AC_OUTPUT_COMMANDS_CNT is expanded from... +autoconf/status.m4:318: AC_OUTPUT_COMMANDS is expanded from... +aclocal.m4:299: GLIB_WITH_NLS is expanded from... +aclocal.m4:382: GLIB_GNU_GETTEXT is expanded from... +aclocal.m4:411: AM_GLIB_GNU_GETTEXT is expanded from... +configure.in:29: the top level]) +m4trace:configure.in:29: -1- AC_SUBST([CATALOGS]) +m4trace:configure.in:29: -1- AC_SUBST([CATOBJEXT]) +m4trace:configure.in:29: -1- AC_SUBST([DATADIRNAME]) +m4trace:configure.in:29: -1- AC_SUBST([GMOFILES]) +m4trace:configure.in:29: -1- AC_SUBST([INSTOBJEXT]) +m4trace:configure.in:29: -1- AC_SUBST([INTLLIBS]) +m4trace:configure.in:29: -1- AC_SUBST([PO_IN_DATADIR_TRUE]) +m4trace:configure.in:29: -1- AC_SUBST([PO_IN_DATADIR_FALSE]) +m4trace:configure.in:29: -1- AC_SUBST([POFILES]) +m4trace:configure.in:29: -1- AC_SUBST([POSUB]) +m4trace:configure.in:29: -1- AC_SUBST([MKINSTALLDIRS]) +m4trace:configure.in:35: -1- AC_CONFIG_FILES([ +Makefile +src/Makefile +po/Makefile.in +]) +m4trace:configure.in:35: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments. +You should run autoupdate.], []) +m4trace:configure.in:35: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) +m4trace:configure.in:35: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) diff --git a/projects/gvpndialer/trunk/config.h b/projects/gvpndialer/trunk/config.h new file mode 100644 index 0000000..b24eb56 --- /dev/null +++ b/projects/gvpndialer/trunk/config.h @@ -0,0 +1,84 @@ +/* config.h. Generated by configure. */ +/* config.h.in. Generated from configure.in by autoheader. */ +#define ENABLE_NLS 1 +/* #undef HAVE_CATGETS */ +#define HAVE_GETTEXT 1 +#define GETTEXT_PACKAGE "gvpndialer" +#define HAVE_LC_MESSAGES 1 +/* #undef HAVE_STPCPY */ +/* #undef HAVE_LIBSM */ + +/* always defined to indicate that i18n is enabled */ +#define ENABLE_NLS 1 + +/* Define to 1 if you have the `bind_textdomain_codeset' function. */ +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 + +/* Define to 1 if you have the `dcgettext' function. */ +#define HAVE_DCGETTEXT 1 + +/* Define if the GNU gettext() function is already present or preinstalled. */ +#define HAVE_GETTEXT 1 + +/* Define to 1 if you have the <inttypes.h> header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define if your <locale.h> file defines LC_MESSAGES. */ +#define HAVE_LC_MESSAGES 1 + +/* Define to 1 if you have the <locale.h> header file. */ +#define HAVE_LOCALE_H 1 + +/* Define to 1 if you have the <memory.h> header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the <pcre/pcre.h> header file. */ +#define HAVE_PCRE_PCRE_H 1 + +/* Define to 1 if you have the <pty.h> header file. */ +#define HAVE_PTY_H 1 + +/* Define to 1 if you have the <stdint.h> header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the <stdlib.h> header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the <strings.h> header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the <string.h> header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the <sys/types.h> header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the <unistd.h> header file. */ +#define HAVE_UNISTD_H 1 + +/* Name of package */ +#define PACKAGE "gvpndialer" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "" + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Version number of package */ +#define VERSION "1.1" diff --git a/projects/gvpndialer/trunk/config.h.in b/projects/gvpndialer/trunk/config.h.in new file mode 100644 index 0000000..6abc33f --- /dev/null +++ b/projects/gvpndialer/trunk/config.h.in @@ -0,0 +1,83 @@ +/* config.h.in. Generated from configure.in by autoheader. */ +#undef ENABLE_NLS +#undef HAVE_CATGETS +#undef HAVE_GETTEXT +#undef GETTEXT_PACKAGE +#undef HAVE_LC_MESSAGES +#undef HAVE_STPCPY +#undef HAVE_LIBSM + +/* always defined to indicate that i18n is enabled */ +#undef ENABLE_NLS + +/* Define to 1 if you have the `bind_textdomain_codeset' function. */ +#undef HAVE_BIND_TEXTDOMAIN_CODESET + +/* Define to 1 if you have the `dcgettext' function. */ +#undef HAVE_DCGETTEXT + +/* Define if the GNU gettext() function is already present or preinstalled. */ +#undef HAVE_GETTEXT + +/* Define to 1 if you have the <inttypes.h> header file. */ +#undef HAVE_INTTYPES_H + +/* Define if your <locale.h> file defines LC_MESSAGES. */ +#undef HAVE_LC_MESSAGES + +/* Define to 1 if you have the <locale.h> header file. */ +#undef HAVE_LOCALE_H + +/* Define to 1 if you have the <memory.h> header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the <pcre/pcre.h> header file. */ +#undef HAVE_PCRE_PCRE_H + +/* Define to 1 if you have the <pty.h> header file. */ +#undef HAVE_PTY_H + +/* Define to 1 if you have the <stdint.h> header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the <stdlib.h> header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the <strings.h> header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the <string.h> header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the <sys/types.h> header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the <unistd.h> header file. */ +#undef HAVE_UNISTD_H + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Version number of package */ +#undef VERSION diff --git a/projects/gvpndialer/trunk/configure.in b/projects/gvpndialer/trunk/configure.in new file mode 100644 index 0000000..c35d5df --- /dev/null +++ b/projects/gvpndialer/trunk/configure.in @@ -0,0 +1,36 @@ +dnl Process this file with autoconf to produce a configure script. + +AC_INIT(configure.in) +AM_INIT_AUTOMAKE(gvpndialer, 1.1) +AM_MAINTAINER_MODE +AM_CONFIG_HEADER(config.h) + +AC_ISC_POSIX +AC_PROG_CC +AM_PROG_CC_STDC +AC_HEADER_STDC + +AC_HAVE_HEADERS(pcre/pcre.h,,AC_MSG_ERROR(Cannot find pcre.h. Please install libpcre)) +AC_HAVE_HEADERS(pty.h,,AC_MSG_ERROR(Cannot find pty.h)) +AC_CHECK_FILE("/proc/net/route",,AC_MSG_ERROR(Cannot find /proc/net/route. Is this a Linux system ?)) + +pkg_modules="libgnomeui-2.0" +PKG_CHECK_MODULES(PACKAGE, [$pkg_modules]) +PACKAGE_LIBS="$PACKAGE_LIBS" +AC_SUBST(PACKAGE_CFLAGS) +AC_SUBST(PACKAGE_LIBS) + +GETTEXT_PACKAGE=gvpndialer +AC_SUBST(GETTEXT_PACKAGE) +AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE") + +dnl Add the languages which your application supports here. +ALL_LINGUAS="" +AM_GLIB_GNU_GETTEXT + +AC_OUTPUT([ +Makefile +src/Makefile +po/Makefile.in +]) + diff --git a/projects/gvpndialer/trunk/gvpn_dialer.glade b/projects/gvpndialer/trunk/gvpn_dialer.glade new file mode 100644 index 0000000..0b7ed9d --- /dev/null +++ b/projects/gvpndialer/trunk/gvpn_dialer.glade @@ -0,0 +1,1513 @@ +<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*--> +<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd"> + +<glade-interface> +<requires lib="gnome"/> +<requires lib="bonobo"/> + +<widget class="GnomeApp" id="vpnclient_main_window"> + <property name="width_request">504</property> + <property name="height_request">237</property> + <property name="visible">True</property> + <property name="title" translatable="yes">GVPN Dialer</property> + <property name="type">GTK_WINDOW_TOPLEVEL</property> + <property name="window_position">GTK_WIN_POS_NONE</property> + <property name="modal">False</property> + <property name="default_width">504</property> + <property name="default_height">237</property> + <property name="resizable">False</property> + <property name="destroy_with_parent">False</property> + <property name="decorated">True</property> + <property name="skip_taskbar_hint">False</property> + <property name="skip_pager_hint">False</property> + <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property> + <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> + <property name="focus_on_map">True</property> + <property name="enable_layout_config">True</property> + <signal name="show" handler="on_vpnclient_main_window_show" last_modification_time="Fri, 03 Oct 2003 02:45:37 GMT"/> + <signal name="delete_event" handler="on_vpnclient_main_window_delete_event" last_modification_time="Sat, 18 Oct 2003 00:06:59 GMT"/> + + <child internal-child="dock"> + <widget class="BonoboDock" id="bonobodock1"> + <property name="visible">True</property> + <property name="allow_floating">True</property> + + <child> + <widget class="BonoboDockItem" id="bonobodockitem1"> + <property name="visible">True</property> + <property name="shadow_type">GTK_SHADOW_NONE</property> + + <child> + <widget class="GtkMenuBar" id="menubar1"> + <property name="visible">True</property> + + <child> + <widget class="GtkMenuItem" id="file1"> + <property name="visible">True</property> + <property name="stock_item">GNOMEUIINFO_MENU_FILE_TREE</property> + + <child> + <widget class="GtkMenu" id="file1_menu"> + + <child> + <widget class="GtkImageMenuItem" id="quit1"> + <property name="visible">True</property> + <property name="stock_item">GNOMEUIINFO_MENU_EXIT_ITEM</property> + <signal name="activate" handler="on_quit1_activate" last_modification_time="Sat, 16 Aug 2003 16:18:55 GMT"/> + </widget> + </child> + </widget> + </child> + </widget> + </child> + + <child> + <widget class="GtkMenuItem" id="edit1"> + <property name="visible">True</property> + <property name="stock_item">GNOMEUIINFO_MENU_EDIT_TREE</property> + + <child> + <widget class="GtkMenu" id="edit1_menu"> + + <child> + <widget class="GtkImageMenuItem" id="preferences1"> + <property name="visible">True</property> + <property name="stock_item">GNOMEUIINFO_MENU_PREFERENCES_ITEM</property> + <signal name="activate" handler="on_preferences1_activate" last_modification_time="Sat, 16 Aug 2003 16:18:55 GMT"/> + </widget> + </child> + </widget> + </child> + </widget> + </child> + + <child> + <widget class="GtkMenuItem" id="view1"> + <property name="visible">True</property> + <property name="stock_item">GNOMEUIINFO_MENU_VIEW_TREE</property> + + <child> + <widget class="GtkMenu" id="view1_menu"> + + <child> + <widget class="GtkImageMenuItem" id="status2"> + <property name="visible">True</property> + <property name="label" translatable="yes">_Status</property> + <property name="use_underline">True</property> + <signal name="activate" handler="on_status2_activate" object="vpnclient_main_window" last_modification_time="Sun, 26 Sep 2004 21:02:12 GMT"/> + + <child internal-child="image"> + <widget class="GtkImage" id="image3"> + <property name="visible">True</property> + <property name="pixbuf">Status-Dock.png</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + </widget> + </child> + </widget> + </child> + </widget> + </child> + </widget> + </child> + + <child> + <widget class="GtkMenuItem" id="help1"> + <property name="visible">True</property> + <property name="stock_item">GNOMEUIINFO_MENU_HELP_TREE</property> + + <child> + <widget class="GtkMenu" id="help1_menu"> + + <child> + <widget class="GtkImageMenuItem" id="about1"> + <property name="visible">True</property> + <property name="stock_item">GNOMEUIINFO_MENU_ABOUT_ITEM</property> + <signal name="activate" handler="on_about1_activate" last_modification_time="Sat, 16 Aug 2003 16:18:55 GMT"/> + </widget> + </child> + </widget> + </child> + </widget> + </child> + </widget> + </child> + </widget> + <packing> + <property name="placement">BONOBO_DOCK_TOP</property> + <property name="band">0</property> + <property name="position">0</property> + <property name="offset">0</property> + <property name="behavior">BONOBO_DOCK_ITEM_BEH_EXCLUSIVE|BONOBO_DOCK_ITEM_BEH_NEVER_VERTICAL|BONOBO_DOCK_ITEM_BEH_LOCKED</property> + </packing> + </child> + + <child> + <widget class="BonoboDockItem" id="bonobodockitem2"> + <property name="visible">True</property> + <property name="shadow_type">GTK_SHADOW_OUT</property> + + <child> + <widget class="GtkToolbar" id="toolbar1"> + <property name="border_width">2</property> + <property name="visible">True</property> + <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property> + <property name="toolbar_style">GTK_TOOLBAR_BOTH</property> + <property name="tooltips">True</property> + <property name="show_arrow">True</property> + + <child> + <widget class="GtkToolButton" id="execute_vpn_button"> + <property name="border_width">7</property> + <property name="width_request">82</property> + <property name="height_request">65</property> + <property name="visible">True</property> + <property name="tooltip" translatable="yes">Start VPN Connection</property> + <property name="label" translatable="yes">Connect</property> + <property name="use_underline">True</property> + <property name="icon">stock_exec_24.png</property> + <property name="visible_horizontal">True</property> + <property name="visible_vertical">True</property> + <property name="is_important">False</property> + <signal name="clicked" handler="on_execute_vpn_button_clicked" last_modification_time="Sat, 11 Oct 2003 15:28:20 GMT"/> + </widget> + <packing> + <property name="expand">False</property> + <property name="homogeneous">True</property> + </packing> + </child> + + <child> + <widget class="GtkToolButton" id="disconnect_button"> + <property name="border_width">8</property> + <property name="width_request">99</property> + <property name="height_request">61</property> + <property name="visible">True</property> + <property name="tooltip" translatable="yes">Start VPN Connection</property> + <property name="label" translatable="yes">Disconnect</property> + <property name="use_underline">True</property> + <property name="icon">stock_stop_24.png</property> + <property name="visible_horizontal">True</property> + <property name="visible_vertical">True</property> + <property name="is_important">False</property> + <signal name="clicked" handler="on_disconnect_button_clicked" last_modification_time="Sat, 11 Oct 2003 16:22:32 GMT"/> + </widget> + <packing> + <property name="expand">False</property> + <property name="homogeneous">True</property> + </packing> + </child> + + <child> + <widget class="GtkSeparatorToolItem" id="separatortoolitem1"> + <property name="visible">True</property> + <property name="draw">True</property> + <property name="visible_horizontal">True</property> + <property name="visible_vertical">True</property> + </widget> + <packing> + <property name="expand">False</property> + <property name="homogeneous">False</property> + </packing> + </child> + + <child> + <widget class="GtkToolButton" id="status_button"> + <property name="border_width">7</property> + <property name="visible">True</property> + <property name="tooltip" translatable="yes">Get VPN Stats</property> + <property name="label" translatable="yes">_Status</property> + <property name="use_underline">True</property> + <property name="icon">Status-Dock.png</property> + <property name="visible_horizontal">True</property> + <property name="visible_vertical">True</property> + <property name="is_important">False</property> + <signal name="clicked" handler="on_status_button_clicked" last_modification_time="Sat, 11 Oct 2003 15:30:25 GMT"/> + </widget> + <packing> + <property name="expand">False</property> + <property name="homogeneous">True</property> + </packing> + </child> + + <child> + <widget class="GtkSeparatorToolItem" id="separatortoolitem2"> + <property name="visible">True</property> + <property name="draw">True</property> + <property name="visible_horizontal">True</property> + <property name="visible_vertical">True</property> + </widget> + <packing> + <property name="expand">False</property> + <property name="homogeneous">False</property> + </packing> + </child> + + <child> + <widget class="GtkToolButton" id="quit_button"> + <property name="border_width">7</property> + <property name="visible">True</property> + <property name="tooltip" translatable="yes">Quit GVPN Dialer</property> + <property name="stock_id">gtk-quit</property> + <property name="visible_horizontal">True</property> + <property name="visible_vertical">True</property> + <property name="is_important">False</property> + <signal name="clicked" handler="on_quit_button_clicked" last_modification_time="Sat, 11 Oct 2003 15:29:51 GMT"/> + </widget> + <packing> + <property name="expand">False</property> + <property name="homogeneous">True</property> + </packing> + </child> + </widget> + </child> + </widget> + <packing> + <property name="placement">BONOBO_DOCK_TOP</property> + <property name="band">1</property> + <property name="position">0</property> + <property name="offset">0</property> + <property name="behavior">BONOBO_DOCK_ITEM_BEH_EXCLUSIVE|BONOBO_DOCK_ITEM_BEH_LOCKED</property> + </packing> + </child> + + <child> + <widget class="GtkVBox" id="vbox2"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkTable" id="table3"> + <property name="border_width">20</property> + <property name="width_request">482</property> + <property name="height_request">89</property> + <property name="visible">True</property> + <property name="n_rows">2</property> + <property name="n_columns">2</property> + <property name="homogeneous">False</property> + <property name="row_spacing">8</property> + <property name="column_spacing">19</property> + + <child> + <widget class="GtkLabel" id="label10"> + <property name="visible">True</property> + <property name="label" translatable="yes">VPN Connection Profile</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_CENTER</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkEntry" id="hostname_entry"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">False</property> + <property name="visibility">True</property> + <property name="max_length">30</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">False</property> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkCombo" id="profile_entry"> + <property name="visible">True</property> + <property name="value_in_list">False</property> + <property name="allow_empty">True</property> + <property name="case_sensitive">False</property> + <property name="enable_arrow_keys">True</property> + <property name="enable_arrows_always">False</property> + + <child internal-child="entry"> + <widget class="GtkEntry" id="vpn_profile_entry_box"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">False</property> + <property name="visibility">True</property> + <property name="max_length">20</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">False</property> + <signal name="changed" handler="on_vpn_profile_entry_box_changed" last_modification_time="Sat, 11 Oct 2003 14:43:42 GMT"/> + </widget> + </child> + + <child internal-child="list"> + <widget class="GtkList" id="vpn_profile_combolist"> + <property name="visible">True</property> + <property name="selection_mode">GTK_SELECTION_BROWSE</property> + </widget> + </child> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkLabel" id="label11"> + <property name="visible">True</property> + <property name="label" translatable="yes">Hostname</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_CENTER</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_padding">89</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkHSeparator" id="hseparator2"> + <property name="visible">True</property> + </widget> + <packing> + <property name="padding">8</property> + <property name="expand">False</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkHBox" id="hbox1"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkImage" id="statusimage"> + <property name="width_request">31</property> + <property name="height_request">21</property> + <property name="visible">True</property> + <property name="stock">gtk-dialog-info</property> + <property name="icon_size">4</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GnomeAppBar" id="statusbar"> + <property name="border_width">2</property> + <property name="visible">True</property> + <property name="has_progress">False</property> + <property name="has_status">True</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> +</widget> + +<widget class="GtkWindow" id="login_window"> + <property name="visible">True</property> + <property name="title" translatable="yes">Login Window</property> + <property name="type">GTK_WINDOW_TOPLEVEL</property> + <property name="window_position">GTK_WIN_POS_NONE</property> + <property name="modal">False</property> + <property name="default_width">350</property> + <property name="default_height">190</property> + <property name="resizable">False</property> + <property name="destroy_with_parent">False</property> + <property name="decorated">True</property> + <property name="skip_taskbar_hint">False</property> + <property name="skip_pager_hint">False</property> + <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property> + <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> + <property name="focus_on_map">True</property> + <signal name="delete_event" handler="on_login_window_delete_event" last_modification_time="Sat, 18 Oct 2003 00:07:16 GMT"/> + + <child> + <widget class="GtkVBox" id="vbox5"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkLabel" id="invalid_user_pass"> + <property name="width_request">40</property> + <property name="height_request">24</property> + <property name="visible">True</property> + <property name="label" translatable="yes"> </property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkTable" id="table1"> + <property name="border_width">13</property> + <property name="width_request">339</property> + <property name="height_request">87</property> + <property name="visible">True</property> + <property name="n_rows">2</property> + <property name="n_columns">2</property> + <property name="homogeneous">False</property> + <property name="row_spacing">15</property> + <property name="column_spacing">2</property> + + <child> + <widget class="GtkLabel" id="label4"> + <property name="visible">True</property> + <property name="label" translatable="yes">Enter Username:</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkLabel" id="label5"> + <property name="visible">True</property> + <property name="label" translatable="yes">Enter Password:</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkEntry" id="enter_username"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">True</property> + <property name="visibility">True</property> + <property name="max_length">30</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">False</property> + <signal name="activate" handler="on_enter_username_activate" last_modification_time="Sun, 25 Jul 2004 03:38:57 GMT"/> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkEntry" id="enter_password"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">True</property> + <property name="visibility">False</property> + <property name="max_length">30</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">False</property> + <signal name="activate" handler="on_enter_password_activate" last_modification_time="Sun, 25 Jul 2004 03:38:28 GMT"/> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="y_options"></property> + </packing> + </child> + </widget> + <packing> + <property name="padding">6</property> + <property name="expand">False</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkHButtonBox" id="hbuttonbox1"> + <property name="border_width">14</property> + <property name="visible">True</property> + <property name="layout_style">GTK_BUTTONBOX_DEFAULT_STYLE</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkButton" id="cancel_button"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="label">gtk-cancel</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <signal name="clicked" handler="on_cancel_button_clicked" last_modification_time="Fri, 03 Oct 2003 02:34:44 GMT"/> + </widget> + </child> + + <child> + <widget class="GtkButton" id="submit_button"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="label">gtk-ok</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <signal name="clicked" handler="on_submit_button_clicked" last_modification_time="Fri, 03 Oct 2003 02:28:55 GMT"/> + <signal name="activate" handler="on_submit_button_activate" last_modification_time="Sun, 25 Jul 2004 03:39:39 GMT"/> + </widget> + </child> + </widget> + <packing> + <property name="padding">3</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + </widget> + </child> +</widget> + +<widget class="GtkWindow" id="preference_window"> + <property name="border_width">7</property> + <property name="width_request">400</property> + <property name="height_request">300</property> + <property name="visible">True</property> + <property name="title" translatable="yes">Preferences</property> + <property name="type">GTK_WINDOW_TOPLEVEL</property> + <property name="window_position">GTK_WIN_POS_NONE</property> + <property name="modal">False</property> + <property name="resizable">False</property> + <property name="destroy_with_parent">False</property> + <property name="decorated">True</property> + <property name="skip_taskbar_hint">False</property> + <property name="skip_pager_hint">False</property> + <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property> + <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> + <property name="focus_on_map">True</property> + <signal name="delete_event" handler="on_preference_window_delete_event" last_modification_time="Sat, 18 Oct 2003 00:07:28 GMT"/> + + <child> + <widget class="GtkNotebook" id="notebook1"> + <property name="width_request">302</property> + <property name="height_request">89</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="show_tabs">True</property> + <property name="show_border">True</property> + <property name="tab_pos">GTK_POS_TOP</property> + <property name="scrollable">False</property> + <property name="enable_popup">False</property> + + <child> + <widget class="GtkVBox" id="vbox6"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkFrame" id="frame1"> + <property name="width_request">300</property> + <property name="height_request">48</property> + <property name="visible">True</property> + <property name="label_xalign">0</property> + <property name="label_yalign">0.5</property> + <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property> + + <child> + <widget class="GtkTable" id="table2"> + <property name="border_width">12</property> + <property name="visible">True</property> + <property name="n_rows">4</property> + <property name="n_columns">2</property> + <property name="homogeneous">False</property> + <property name="row_spacing">8</property> + <property name="column_spacing">5</property> + + <child> + <widget class="GtkLabel" id="label8"> + <property name="visible">True</property> + <property name="label" translatable="yes">Path to vpnclient:</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_RIGHT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkEntry" id="vpnclient_path_entry"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">True</property> + <property name="visibility">True</property> + <property name="max_length">0</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">False</property> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkLabel" id="label9"> + <property name="visible">True</property> + <property name="label" translatable="yes">VPN Profile Path:</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_RIGHT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkEntry" id="vpn_profile_path_entry"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">True</property> + <property name="visibility">True</property> + <property name="max_length">0</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">False</property> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkLabel" id="label16"> + <property name="visible">True</property> + <property name="label" translatable="yes">Default User:</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkEntry" id="vpnclient_default_user_entry"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">True</property> + <property name="visibility">True</property> + <property name="max_length">0</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">False</property> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkCheckButton" id="vpnclient_start_hidden_cb"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">Start Hidden</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">2</property> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + </widget> + </child> + + <child> + <widget class="GtkLabel" id="label7"> + <property name="width_request">92</property> + <property name="height_request">17</property> + <property name="visible">True</property> + <property name="label" translatable="yes">Basic Options:</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="type">label_item</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkHButtonBox" id="hbuttonbox2"> + <property name="border_width">7</property> + <property name="width_request">107</property> + <property name="height_request">62</property> + <property name="visible">True</property> + <property name="layout_style">GTK_BUTTONBOX_DEFAULT_STYLE</property> + <property name="spacing">14</property> + + <child> + <widget class="GtkButton" id="preference_cancel_button"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="label">gtk-cancel</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <signal name="clicked" handler="on_preference_cancel_button_clicked" last_modification_time="Fri, 03 Oct 2003 02:34:14 GMT"/> + </widget> + </child> + + <child> + <widget class="GtkButton" id="preference_apply_button"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="label">gtk-apply</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <signal name="clicked" handler="on_preference_apply_button_clicked" last_modification_time="Fri, 03 Oct 2003 02:30:49 GMT"/> + </widget> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + </widget> + <packing> + <property name="tab_expand">False</property> + <property name="tab_fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkLabel" id="general_label"> + <property name="visible">True</property> + <property name="label" translatable="yes">General</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="type">tab</property> + </packing> + </child> + </widget> + </child> +</widget> + +<widget class="GtkWindow" id="status_window"> + <property name="border_width">7</property> + <property name="width_request">433</property> + <property name="visible">True</property> + <property name="title" translatable="yes">Status Window</property> + <property name="type">GTK_WINDOW_TOPLEVEL</property> + <property name="window_position">GTK_WIN_POS_NONE</property> + <property name="modal">False</property> + <property name="default_width">433</property> + <property name="default_height">431</property> + <property name="resizable">False</property> + <property name="destroy_with_parent">False</property> + <property name="icon">Status-Dock.png</property> + <property name="decorated">True</property> + <property name="skip_taskbar_hint">False</property> + <property name="skip_pager_hint">False</property> + <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property> + <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> + <property name="focus_on_map">True</property> + <signal name="delete_event" handler="on_status_window_delete_event" last_modification_time="Sat, 18 Oct 2003 00:07:38 GMT"/> + <signal name="show" handler="on_status_window_show" last_modification_time="Sun, 01 Aug 2004 22:44:07 GMT"/> + + <child> + <widget class="GtkNotebook" id="notebook2"> + <property name="border_width">6</property> + <property name="width_request">143</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="show_tabs">True</property> + <property name="show_border">True</property> + <property name="tab_pos">GTK_POS_TOP</property> + <property name="scrollable">True</property> + <property name="enable_popup">True</property> + + <child> + <widget class="GtkVBox" id="vbox7"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkFrame" id="frame4"> + <property name="width_request">172</property> + <property name="height_request">126</property> + <property name="visible">True</property> + <property name="label_xalign">0</property> + <property name="label_yalign">0.5</property> + <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property> + + <child> + <widget class="GtkTextView" id="trafficstats_text"> + <property name="border_width">1</property> + <property name="width_request">168</property> + <property name="visible">True</property> + <property name="editable">False</property> + <property name="overwrite">False</property> + <property name="accepts_tab">False</property> + <property name="justification">GTK_JUSTIFY_LEFT</property> + <property name="wrap_mode">GTK_WRAP_NONE</property> + <property name="cursor_visible">False</property> + <property name="pixels_above_lines">0</property> + <property name="pixels_below_lines">0</property> + <property name="pixels_inside_wrap">0</property> + <property name="left_margin">0</property> + <property name="right_margin">0</property> + <property name="indent">0</property> + <property name="text" translatable="yes">Time connected: 0 day(s), 00:00.16 +Bytes in: 0 +Bytes out: 0 +Packets encrypted: 0 +Packets decrypted: 0 +Packets bypassed: 20 +Packets discarded: 1 +</property> + </widget> + </child> + + <child> + <widget class="GtkLabel" id="trafficstats"> + <property name="visible">True</property> + <property name="label" translatable="yes">Traffic Statistics</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="type">label_item</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkFrame" id="frame5"> + <property name="width_request">204</property> + <property name="visible">True</property> + <property name="label_xalign">0</property> + <property name="label_yalign">0.5</property> + <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property> + + <child> + <widget class="GtkTextView" id="tunnelstats_text"> + <property name="border_width">1</property> + <property name="width_request">200</property> + <property name="visible">True</property> + <property name="editable">False</property> + <property name="overwrite">False</property> + <property name="accepts_tab">False</property> + <property name="justification">GTK_JUSTIFY_LEFT</property> + <property name="wrap_mode">GTK_WRAP_NONE</property> + <property name="cursor_visible">False</property> + <property name="pixels_above_lines">0</property> + <property name="pixels_below_lines">0</property> + <property name="pixels_inside_wrap">0</property> + <property name="left_margin">0</property> + <property name="right_margin">0</property> + <property name="indent">0</property> + <property name="text" translatable="yes">Connection Entry: cisco +Client address: 10.82.241.42 +Server address: 64.102.252.4 +Encryption: 168-bit 3-DES +Authentication: HMAC-MD5 +IP Compression: None +NAT passthrough is active on port UDP 10000 +Local LAN Access is disabled +</property> + </widget> + </child> + + <child> + <widget class="GtkLabel" id="tunnelstats"> + <property name="width_request">97</property> + <property name="height_request">15</property> + <property name="visible">True</property> + <property name="label" translatable="yes">Tunnel Statistics</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="type">label_item</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkFrame" id="frame6"> + <property name="width_request">204</property> + <property name="height_request">105</property> + <property name="visible">True</property> + <property name="label_xalign">0</property> + <property name="label_yalign">0.5</property> + <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property> + + <child> + <widget class="GtkTextView" id="routestats_text"> + <property name="border_width">1</property> + <property name="width_request">200</property> + <property name="height_request">89</property> + <property name="visible">True</property> + <property name="editable">False</property> + <property name="overwrite">False</property> + <property name="accepts_tab">False</property> + <property name="justification">GTK_JUSTIFY_LEFT</property> + <property name="wrap_mode">GTK_WRAP_NONE</property> + <property name="cursor_visible">False</property> + <property name="pixels_above_lines">0</property> + <property name="pixels_below_lines">0</property> + <property name="pixels_inside_wrap">0</property> + <property name="left_margin">0</property> + <property name="right_margin">0</property> + <property name="indent">0</property> + <property name="text" translatable="yes">Configured routes. +Secured Network Destination Netmask + 0.0.0.0 0.0.0.0 + +</property> + </widget> + </child> + + <child> + <widget class="GtkLabel" id="routestats"> + <property name="visible">True</property> + <property name="label" translatable="yes">Route Statistics</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="type">label_item</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkHButtonBox" id="hbuttonbox4"> + <property name="width_request">85</property> + <property name="height_request">43</property> + <property name="visible">True</property> + <property name="layout_style">GTK_BUTTONBOX_END</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkButton" id="close_status_window_button"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="label">gtk-close</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <signal name="clicked" handler="on_close_status_window_button_clicked" last_modification_time="Sat, 11 Oct 2003 16:29:18 GMT"/> + </widget> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + <packing> + <property name="tab_expand">False</property> + <property name="tab_fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkLabel" id="label15"> + <property name="visible">True</property> + <property name="label" translatable="yes">VPN Statistics</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="type">tab</property> + </packing> + </child> + </widget> + </child> +</widget> + +<widget class="GnomeAbout" id="gvpn_dialer_about"> + <property name="border_width">5</property> + <property name="visible">True</property> + <property name="destroy_with_parent">False</property> + <property name="decorated">True</property> + <property name="skip_taskbar_hint">False</property> + <property name="skip_pager_hint">False</property> + <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property> + <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> + <property name="focus_on_map">True</property> + <property name="copyright" translatable="yes">2004 GPL Copyright, Stanley Kamithi</property> + <property name="comments" translatable="yes">A GNOME2 GUI +For the Cisco Linux +VPN Client</property> + <property name="authors">Stanley Kamithi, Raleigh, North Carolina</property> + <property name="translator_credits" translatable="yes">translator_credits</property> +</widget> + +<widget class="GtkWindow" id="group_password"> + <property name="visible">True</property> + <property name="title" translatable="yes">Enter Group Password</property> + <property name="type">GTK_WINDOW_TOPLEVEL</property> + <property name="window_position">GTK_WIN_POS_NONE</property> + <property name="modal">False</property> + <property name="default_width">350</property> + <property name="default_height">101</property> + <property name="resizable">False</property> + <property name="destroy_with_parent">False</property> + <property name="decorated">True</property> + <property name="skip_taskbar_hint">False</property> + <property name="skip_pager_hint">False</property> + <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property> + <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> + <property name="focus_on_map">True</property> + <signal name="delete_event" handler="on_login_window_delete_event" last_modification_time="Sat, 18 Oct 2003 00:07:16 GMT"/> + + <child> + <widget class="GtkVBox" id="vbox8"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkTable" id="table4"> + <property name="border_width">15</property> + <property name="width_request">339</property> + <property name="height_request">50</property> + <property name="visible">True</property> + <property name="n_rows">1</property> + <property name="n_columns">2</property> + <property name="homogeneous">False</property> + <property name="row_spacing">15</property> + <property name="column_spacing">2</property> + + <child> + <widget class="GtkLabel" id="label18"> + <property name="visible">True</property> + <property name="label" translatable="yes">Enter Group Password:</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkEntry" id="group_pw_entry"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">True</property> + <property name="visibility">False</property> + <property name="max_length">30</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">False</property> + <signal name="activate" handler="on_enter_group_password_activate" last_modification_time="Sun, 01 May 2005 23:09:17 GMT"/> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="y_options"></property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkHButtonBox" id="hbuttonbox5"> + <property name="border_width">9</property> + <property name="visible">True</property> + <property name="layout_style">GTK_BUTTONBOX_DEFAULT_STYLE</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkButton" id="group_pw_cancel_button"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="label">gtk-cancel</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <signal name="clicked" handler="on_group_pw_cancel_button_clicked" last_modification_time="Sun, 01 May 2005 23:10:41 GMT"/> + </widget> + </child> + + <child> + <widget class="GtkButton" id="group_pw_okay_button"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="label">gtk-ok</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <signal name="clicked" handler="on_group_pw_submit_button_clicked" last_modification_time="Sun, 01 May 2005 23:10:15 GMT"/> + </widget> + </child> + </widget> + <packing> + <property name="padding">6</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkLabel" id="grouppw_warning"> + <property name="visible">True</property> + <property name="label" translatable="yes"></property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + </widget> + </child> +</widget> + +</glade-interface> diff --git a/projects/gvpndialer/trunk/gvpn_dialer.gladep b/projects/gvpndialer/trunk/gvpn_dialer.gladep new file mode 100644 index 0000000..b25f16a --- /dev/null +++ b/projects/gvpndialer/trunk/gvpn_dialer.gladep @@ -0,0 +1,8 @@ +<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*--> +<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd"> + +<glade-project> + <name>Gvpn_dialer</name> + <program_name>gvpndialer</program_name> + <gettext_support>FALSE</gettext_support> +</glade-project> diff --git a/projects/gvpndialer/trunk/pixmaps/.xvpics/Status-Dock.png b/projects/gvpndialer/trunk/pixmaps/.xvpics/Status-Dock.png new file mode 100644 index 0000000..76fb957 --- /dev/null +++ b/projects/gvpndialer/trunk/pixmaps/.xvpics/Status-Dock.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:27x27 RGB (1149 bytes) +#END_OF_COMMENTS +27 27 255 +I$II۶IH%I۶%HI%۶ڶ%HII$II۶IH%I۶%HI%۶ڶ%HII$II۶IH%I۶%HI%۶ڶ%HII$II۶IH%I۶%HI%۶ڶ%HI$nnmnHIڶH$I۶Hڶ$I۶Hڷ۶mڻDֶImڷڶ۶ssqڻ$I)ImڷڶڒrrrڶI$IIm۶۶rrqqn۶H%IImڷڶ۵sqrrrrmۺD)EH۶ڒrrnrrMDֺH۶۶mnvqsr.%ڷHڷrrrrrrnm(HڷڒqsmouoqnE۶ImڶrrrrrJ۶%HIImnrrrMڶI$IImsrrrMڷH%HImۑrnqn$I(Hڷ$۶H%ڷ$mmmmmmmnmmHIڷ۶I$II۶%H%I۶ڶ%HI%۶I$II۶IH%I۶%HI%۶ڶ%HII$II۶IH%I۶%HI%۶ڶ%HII$II۶IH%I۶%HI%۶ڶ%HI
\ No newline at end of file diff --git a/projects/gvpndialer/trunk/pixmaps/Status-Dock.png b/projects/gvpndialer/trunk/pixmaps/Status-Dock.png Binary files differnew file mode 100644 index 0000000..d579d98 --- /dev/null +++ b/projects/gvpndialer/trunk/pixmaps/Status-Dock.png diff --git a/projects/gvpndialer/trunk/pixmaps/status_lock.png b/projects/gvpndialer/trunk/pixmaps/status_lock.png Binary files differnew file mode 100644 index 0000000..c2475e9 --- /dev/null +++ b/projects/gvpndialer/trunk/pixmaps/status_lock.png diff --git a/projects/gvpndialer/trunk/pixmaps/status_unlocked.png b/projects/gvpndialer/trunk/pixmaps/status_unlocked.png Binary files differnew file mode 100644 index 0000000..f5a2346 --- /dev/null +++ b/projects/gvpndialer/trunk/pixmaps/status_unlocked.png diff --git a/projects/gvpndialer/trunk/pixmaps/stock_exec_24.png b/projects/gvpndialer/trunk/pixmaps/stock_exec_24.png Binary files differnew file mode 100644 index 0000000..166c220 --- /dev/null +++ b/projects/gvpndialer/trunk/pixmaps/stock_exec_24.png diff --git a/projects/gvpndialer/trunk/pixmaps/stock_import.png b/projects/gvpndialer/trunk/pixmaps/stock_import.png Binary files differnew file mode 100644 index 0000000..ddf1985 --- /dev/null +++ b/projects/gvpndialer/trunk/pixmaps/stock_import.png diff --git a/projects/gvpndialer/trunk/pixmaps/stock_stop_24.png b/projects/gvpndialer/trunk/pixmaps/stock_stop_24.png Binary files differnew file mode 100644 index 0000000..89c2124 --- /dev/null +++ b/projects/gvpndialer/trunk/pixmaps/stock_stop_24.png diff --git a/projects/gvpndialer/trunk/po/ChangeLog b/projects/gvpndialer/trunk/po/ChangeLog new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/projects/gvpndialer/trunk/po/ChangeLog diff --git a/projects/gvpndialer/trunk/po/Makefile.in b/projects/gvpndialer/trunk/po/Makefile.in new file mode 100644 index 0000000..58d7a88 --- /dev/null +++ b/projects/gvpndialer/trunk/po/Makefile.in @@ -0,0 +1,254 @@ +# Makefile for program source directory in GNU NLS utilities package. +# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu> +# +# This file file be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU Public License +# but which still want to provide support for the GNU gettext functionality. +# Please note that the actual code is *not* freely available. +# +# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE +# instead of PACKAGE and to look for po2tbl in ./ not in intl/ +# +# - Modified by jacob berkman <jacob@ximian.com> to install +# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize + +GETTEXT_PACKAGE = gvpndialer +PACKAGE = gvpndialer +VERSION = 1.0 + +SHELL = /bin/sh + + +srcdir = . +top_srcdir = .. + + +prefix = /usr/local +exec_prefix = ${prefix} +datadir = ${prefix}/share +libdir = ${exec_prefix}/lib +localedir = $(libdir)/locale +gnulocaledir = $(datadir)/locale +gettextsrcdir = $(datadir)/glib-2.0/gettext/po +subdir = po + +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +MKINSTALLDIRS = $(top_srcdir)/./mkinstalldirs + +CC = gcc +GENCAT = @GENCAT@ +GMSGFMT = /usr/bin/msgfmt +MSGFMT = /usr/bin/msgfmt +XGETTEXT = /usr/bin/xgettext +MSGMERGE = msgmerge + +DEFS = -DHAVE_CONFIG_H +CFLAGS = -g -O2 +CPPFLAGS = + +INCLUDES = -I.. -I$(top_srcdir)/intl + +COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) + +SOURCES = +POFILES = +GMOFILES = +DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot \ +$(POFILES) $(GMOFILES) $(SOURCES) + +POTFILES = \ + +CATALOGS = +CATOBJEXT = .gmo +INSTOBJEXT = .mo + +.SUFFIXES: +.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat + +.c.o: + $(COMPILE) $< + +.po.pox: + $(MAKE) $(GETTEXT_PACKAGE).pot + $(MSGMERGE) $< $(srcdir)/$(GETTEXT_PACKAGE).pot -o $*.pox + +.po.mo: + $(MSGFMT) -o $@ $< + +.po.gmo: + file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ + && rm -f $$file && $(GMSGFMT) -o $$file $< + +.po.cat: + sed -f ../intl/po2msg.sed < $< > $*.msg \ + && rm -f $@ && $(GENCAT) $@ $*.msg + + +all: all-yes + +all-yes: $(CATALOGS) +all-no: + +$(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES) + $(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) --directory=$(top_srcdir) \ + --add-comments --keyword=_ --keyword=N_ \ + --files-from=$(srcdir)/POTFILES.in \ + && test ! -f $(GETTEXT_PACKAGE).po \ + || ( rm -f $(srcdir)/$(GETTEXT_PACKAGE).pot \ + && mv $(GETTEXT_PACKAGE).po $(srcdir)/$(GETTEXT_PACKAGE).pot ) + +install: install-exec install-data +install-exec: +install-data: install-data-yes +install-data-no: all +install-data-yes: all + if test -r "$(MKINSTALLDIRS)"; then \ + $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \ + else \ + $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \ + fi + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + case "$$cat" in \ + *.gmo) destdir=$(gnulocaledir);; \ + *) destdir=$(localedir);; \ + esac; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \ + if test -r "$(MKINSTALLDIRS)"; then \ + $(MKINSTALLDIRS) $$dir; \ + else \ + $(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \ + fi; \ + if test -r $$cat; then \ + $(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ + echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \ + else \ + $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ + echo "installing $(srcdir)/$$cat as" \ + "$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \ + fi; \ + if test -r $$cat.m; then \ + $(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ + echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \ + else \ + if test -r $(srcdir)/$$cat.m ; then \ + $(INSTALL_DATA) $(srcdir)/$$cat.m \ + $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ + echo "installing $(srcdir)/$$cat as" \ + "$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \ + else \ + true; \ + fi; \ + fi; \ + done + if test "$(PACKAGE)" = "glib"; then \ + if test -r "$(MKINSTALLDIRS)"; then \ + $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \ + else \ + $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \ + fi; \ + $(INSTALL_DATA) $(srcdir)/Makefile.in.in \ + $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ + else \ + : ; \ + fi + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ + rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ + rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ + rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ + done + if test "$(PACKAGE)" = "glib"; then \ + rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ + fi + +check: all + +dvi info tags TAGS ID: + +mostlyclean: + rm -f core core.* *.pox $(GETTEXT_PACKAGE).po *.old.po cat-id-tbl.tmp + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f $(GMOFILES) + +distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir) +dist distdir: update-po $(DISTFILES) + dists="$(DISTFILES)"; \ + for file in $$dists; do \ + ln $(srcdir)/$$file $(distdir) 2> /dev/null \ + || cp -p $(srcdir)/$$file $(distdir); \ + done + +update-po: Makefile + $(MAKE) $(GETTEXT_PACKAGE).pot + tmpdir=`pwd`; \ + cd $(srcdir); \ + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + echo "$$lang:"; \ + if $(MSGMERGE) $$lang.po $(GETTEXT_PACKAGE).pot -o $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$cat failed!"; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi; \ + done + +# POTFILES is created from POTFILES.in by stripping comments, empty lines +# and Intltool tags (enclosed in square brackets), and appending a full +# relative path to them +POTFILES: POTFILES.in + ( if test 'x$(srcdir)' != 'x.'; then \ + posrcprefix='$(top_srcdir)/'; \ + else \ + posrcprefix="../"; \ + fi; \ + rm -f $@-t $@ \ + && (sed -e '/^#/d' \ + -e "s/^\[.*\] +//" \ + -e '/^[ ]*$$/d' \ + -e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \ + | sed -e '$$s/\\$$//') > $@-t \ + && chmod a-w $@-t \ + && mv $@-t $@ ) + +Makefile: Makefile.in.in ../config.status POTFILES + cd .. \ + && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ + $(SHELL) ./config.status + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/projects/gvpndialer/trunk/po/Makefile.in.in b/projects/gvpndialer/trunk/po/Makefile.in.in new file mode 100644 index 0000000..092b4e0 --- /dev/null +++ b/projects/gvpndialer/trunk/po/Makefile.in.in @@ -0,0 +1,254 @@ +# Makefile for program source directory in GNU NLS utilities package. +# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu> +# +# This file file be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU Public License +# but which still want to provide support for the GNU gettext functionality. +# Please note that the actual code is *not* freely available. +# +# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE +# instead of PACKAGE and to look for po2tbl in ./ not in intl/ +# +# - Modified by jacob berkman <jacob@ximian.com> to install +# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize + +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +PACKAGE = @PACKAGE@ +VERSION = @VERSION@ + +SHELL = /bin/sh +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datadir = @datadir@ +libdir = @libdir@ +localedir = $(libdir)/locale +gnulocaledir = $(datadir)/locale +gettextsrcdir = $(datadir)/glib-2.0/gettext/po +subdir = po + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@ + +CC = @CC@ +GENCAT = @GENCAT@ +GMSGFMT = @GMSGFMT@ +MSGFMT = @MSGFMT@ +XGETTEXT = @XGETTEXT@ +MSGMERGE = msgmerge + +DEFS = @DEFS@ +CFLAGS = @CFLAGS@ +CPPFLAGS = @CPPFLAGS@ + +INCLUDES = -I.. -I$(top_srcdir)/intl + +COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) + +SOURCES = +POFILES = @POFILES@ +GMOFILES = @GMOFILES@ +DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot \ +$(POFILES) $(GMOFILES) $(SOURCES) + +POTFILES = \ + +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +INSTOBJEXT = @INSTOBJEXT@ + +.SUFFIXES: +.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat + +.c.o: + $(COMPILE) $< + +.po.pox: + $(MAKE) $(GETTEXT_PACKAGE).pot + $(MSGMERGE) $< $(srcdir)/$(GETTEXT_PACKAGE).pot -o $*.pox + +.po.mo: + $(MSGFMT) -o $@ $< + +.po.gmo: + file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ + && rm -f $$file && $(GMSGFMT) -o $$file $< + +.po.cat: + sed -f ../intl/po2msg.sed < $< > $*.msg \ + && rm -f $@ && $(GENCAT) $@ $*.msg + + +all: all-@USE_NLS@ + +all-yes: $(CATALOGS) +all-no: + +$(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES) + $(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) --directory=$(top_srcdir) \ + --add-comments --keyword=_ --keyword=N_ \ + --files-from=$(srcdir)/POTFILES.in \ + && test ! -f $(GETTEXT_PACKAGE).po \ + || ( rm -f $(srcdir)/$(GETTEXT_PACKAGE).pot \ + && mv $(GETTEXT_PACKAGE).po $(srcdir)/$(GETTEXT_PACKAGE).pot ) + +install: install-exec install-data +install-exec: +install-data: install-data-@USE_NLS@ +install-data-no: all +install-data-yes: all + if test -r "$(MKINSTALLDIRS)"; then \ + $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \ + else \ + $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \ + fi + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + case "$$cat" in \ + *.gmo) destdir=$(gnulocaledir);; \ + *) destdir=$(localedir);; \ + esac; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \ + if test -r "$(MKINSTALLDIRS)"; then \ + $(MKINSTALLDIRS) $$dir; \ + else \ + $(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \ + fi; \ + if test -r $$cat; then \ + $(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ + echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \ + else \ + $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ + echo "installing $(srcdir)/$$cat as" \ + "$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \ + fi; \ + if test -r $$cat.m; then \ + $(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ + echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \ + else \ + if test -r $(srcdir)/$$cat.m ; then \ + $(INSTALL_DATA) $(srcdir)/$$cat.m \ + $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ + echo "installing $(srcdir)/$$cat as" \ + "$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \ + else \ + true; \ + fi; \ + fi; \ + done + if test "$(PACKAGE)" = "glib"; then \ + if test -r "$(MKINSTALLDIRS)"; then \ + $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \ + else \ + $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \ + fi; \ + $(INSTALL_DATA) $(srcdir)/Makefile.in.in \ + $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ + else \ + : ; \ + fi + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ + rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ + rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ + rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ + done + if test "$(PACKAGE)" = "glib"; then \ + rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ + fi + +check: all + +dvi info tags TAGS ID: + +mostlyclean: + rm -f core core.* *.pox $(GETTEXT_PACKAGE).po *.old.po cat-id-tbl.tmp + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f $(GMOFILES) + +distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir) +dist distdir: update-po $(DISTFILES) + dists="$(DISTFILES)"; \ + for file in $$dists; do \ + ln $(srcdir)/$$file $(distdir) 2> /dev/null \ + || cp -p $(srcdir)/$$file $(distdir); \ + done + +update-po: Makefile + $(MAKE) $(GETTEXT_PACKAGE).pot + tmpdir=`pwd`; \ + cd $(srcdir); \ + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + echo "$$lang:"; \ + if $(MSGMERGE) $$lang.po $(GETTEXT_PACKAGE).pot -o $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$cat failed!"; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi; \ + done + +# POTFILES is created from POTFILES.in by stripping comments, empty lines +# and Intltool tags (enclosed in square brackets), and appending a full +# relative path to them +POTFILES: POTFILES.in + ( if test 'x$(srcdir)' != 'x.'; then \ + posrcprefix='$(top_srcdir)/'; \ + else \ + posrcprefix="../"; \ + fi; \ + rm -f $@-t $@ \ + && (sed -e '/^#/d' \ + -e "s/^\[.*\] +//" \ + -e '/^[ ]*$$/d' \ + -e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \ + | sed -e '$$s/\\$$//') > $@-t \ + && chmod a-w $@-t \ + && mv $@-t $@ ) + +Makefile: Makefile.in.in ../config.status POTFILES + cd .. \ + && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ + $(SHELL) ./config.status + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/projects/gvpndialer/trunk/po/POTFILES b/projects/gvpndialer/trunk/po/POTFILES new file mode 100644 index 0000000..951bbdf --- /dev/null +++ b/projects/gvpndialer/trunk/po/POTFILES @@ -0,0 +1,4 @@ + ../src/main.c \ + ../src/interface.c \ + ../src/callbacks.c \ + ../src/support.c diff --git a/projects/gvpndialer/trunk/po/POTFILES.in b/projects/gvpndialer/trunk/po/POTFILES.in new file mode 100644 index 0000000..ab2d29e --- /dev/null +++ b/projects/gvpndialer/trunk/po/POTFILES.in @@ -0,0 +1,6 @@ +# List of source files containing translatable strings. + +src/main.c +src/interface.c +src/callbacks.c +src/support.c diff --git a/projects/gvpndialer/trunk/src/.deps/callbacks.P b/projects/gvpndialer/trunk/src/.deps/callbacks.P new file mode 100644 index 0000000..1c5a7ed --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/callbacks.P @@ -0,0 +1,850 @@ +callbacks.o: callbacks.c ../config.h callbacks.h \ + /usr/include/libgnomeui-2.0/gnome.h /usr/include/gtk-2.0/gtk/gtk.h \ + /usr/include/gtk-2.0/gdk/gdk.h /usr/include/gtk-2.0/gdk/gdkcolor.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-lib/i586-mandrake-linux-gnu/3.3.2/include/stddef.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/syslimits.h \ + /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h \ + /usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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-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-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h \ + /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h \ + /usr/include/gtk-2.0/gdk/gdkwindow.h \ + /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ + /usr/include/gtk-2.0/gtk/gtkenums.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/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/gtkwindow.h /usr/include/gtk-2.0/gtk/gtkbin.h \ + /usr/include/gtk-2.0/gtk/gtkcontainer.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/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/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/atkvalue.h \ + /usr/include/gtk-2.0/gtk/gtkalignment.h \ + /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-2.0/gtk/gtkframe.h /usr/include/gtk-2.0/gtk/gtkarrow.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h /usr/include/gtk-2.0/gtk/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h \ + /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h \ + /usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ + /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-2.0/gtk/gtkdnd.h \ + /usr/include/gtk-2.0/gtk/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.h \ + /usr/include/gtk-2.0/gtk/gtkimcontext.h \ + /usr/include/gtk-2.0/gtk/gtkeventbox.h \ + /usr/include/gtk-2.0/gtk/gtkfilesel.h \ + /usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h \ + /usr/include/gtk-2.0/gtk/gtklayout.h /usr/include/gtk-2.0/gtk/gtklist.h \ + /usr/include/gtk-2.0/gtk/gtklistitem.h \ + /usr/include/gtk-2.0/gtk/gtkliststore.h \ + /usr/include/gtk-2.0/gtk/gtktreemodel.h \ + /usr/include/gtk-2.0/gtk/gtktreesortable.h \ + /usr/include/gtk-2.0/gtk/gtkmain.h \ + /usr/include/gtk-2.0/gtk/gtkmenubar.h \ + /usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkprogress.h \ + /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h \ + /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-2.0/gtk/gtkstock.h \ + /usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.h \ + /usr/include/gtk-2.0/gtk/gtktextview.h \ + /usr/include/gtk-2.0/gtk/gtktipsquery.h \ + /usr/include/gtk-2.0/gtk/gtktoolbar.h \ + /usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h \ + /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-2.0/gtk/gtktreestore.h \ + /usr/include/gtk-2.0/gtk/gtkvbbox.h \ + /usr/include/gtk-2.0/gtk/gtkversion.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/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/popt.h \ + /usr/include/stdio.h /usr/include/bits/types.h \ + /usr/include/bits/wordsize.h /usr/include/bits/typesizes.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/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h /usr/include/time.h \ + /usr/include/bits/time.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h /usr/include/stdlib.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/bits/sched.h /usr/include/alloca.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + /usr/include/gconf/2/gconf/gconf-client.h \ + /usr/include/gconf/2/gconf/gconf.h \ + /usr/include/gconf/2/gconf/gconf-schema.h \ + /usr/include/gconf/2/gconf/gconf-value.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-engine.h \ + /usr/include/gconf/2/gconf/gconf-enum-types.h \ + /usr/include/gconf/2/gconf/gconf-listeners.h \ + /usr/include/gconf/2/gconf/gconf-changeset.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/expect.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/expect_comm.h \ + /usr/include/sys/wait.h /usr/include/signal.h \ + /usr/include/bits/signum.h /usr/include/bits/siginfo.h \ + /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ + /usr/include/asm/sigcontext.h /usr/include/linux/compiler.h \ + /usr/include/linux/compiler-gcc3.h /usr/include/linux/compiler-gcc.h \ + /usr/include/bits/sigstack.h /usr/include/bits/sigthread.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + interface.h support.h +callbacks.c : +../config.h : +callbacks.h : +/usr/include/libgnomeui-2.0/gnome.h : +/usr/include/gtk-2.0/gtk/gtk.h : +/usr/include/gtk-2.0/gdk/gdk.h : +/usr/include/gtk-2.0/gdk/gdkcolor.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-lib/i586-mandrake-linux-gnu/3.3.2/include/stddef.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/syslimits.h : +/usr/include/limits.h : +/usr/include/features.h : +/usr/include/sys/cdefs.h : +/usr/include/gnu/stubs.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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h : +/usr/include/glib-2.0/glib/gmessages.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h : +/usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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-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-layout.h : +/usr/include/pango-1.0/pango/pango-glyph-item.h : +/usr/include/pango-1.0/pango/pango-tabs.h : +/usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h : +/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h : +/usr/include/gtk-2.0/gdk/gdkwindow.h : +/usr/include/gtk-2.0/gtk/gtkaccelgroup.h : +/usr/include/gtk-2.0/gtk/gtkenums.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/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/gtkwindow.h : +/usr/include/gtk-2.0/gtk/gtkbin.h : +/usr/include/gtk-2.0/gtk/gtkcontainer.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/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/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/atkvalue.h : +/usr/include/gtk-2.0/gtk/gtkalignment.h : +/usr/include/gtk-2.0/gtk/gtkaspectframe.h : +/usr/include/gtk-2.0/gtk/gtkframe.h : +/usr/include/gtk-2.0/gtk/gtkarrow.h : +/usr/include/gtk-2.0/gtk/gtkbindings.h : +/usr/include/gtk-2.0/gtk/gtkbox.h : +/usr/include/gtk-2.0/gtk/gtkbbox.h : +/usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h : +/usr/include/gtk-2.0/gtk/gtkcelleditable.h : +/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h : +/usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h : +/usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h : +/usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h : +/usr/include/gtk-2.0/gtk/gtkcurve.h : +/usr/include/gtk-2.0/gtk/gtkdrawingarea.h : +/usr/include/gtk-2.0/gtk/gtkdnd.h : +/usr/include/gtk-2.0/gtk/gtkeditable.h : +/usr/include/gtk-2.0/gtk/gtkentry.h : +/usr/include/gtk-2.0/gtk/gtkimcontext.h : +/usr/include/gtk-2.0/gtk/gtkeventbox.h : +/usr/include/gtk-2.0/gtk/gtkfilesel.h : +/usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h : +/usr/include/gtk-2.0/gtk/gtklayout.h : +/usr/include/gtk-2.0/gtk/gtklist.h : +/usr/include/gtk-2.0/gtk/gtklistitem.h : +/usr/include/gtk-2.0/gtk/gtkliststore.h : +/usr/include/gtk-2.0/gtk/gtktreemodel.h : +/usr/include/gtk-2.0/gtk/gtktreesortable.h : +/usr/include/gtk-2.0/gtk/gtkmain.h : +/usr/include/gtk-2.0/gtk/gtkmenubar.h : +/usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkprogress.h : +/usr/include/gtk-2.0/gtk/gtkprogressbar.h : +/usr/include/gtk-2.0/gtk/gtkradiobutton.h : +/usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h : +/usr/include/gtk-2.0/gtk/gtkspinbutton.h : +/usr/include/gtk-2.0/gtk/gtkstock.h : +/usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h : +/usr/include/gtk-2.0/gtk/gtktextiter.h : +/usr/include/gtk-2.0/gtk/gtktextchild.h : +/usr/include/gtk-2.0/gtk/gtktextmark.h : +/usr/include/gtk-2.0/gtk/gtktextview.h : +/usr/include/gtk-2.0/gtk/gtktipsquery.h : +/usr/include/gtk-2.0/gtk/gtktoolbar.h : +/usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h : +/usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h : +/usr/include/gtk-2.0/gtk/gtktreestore.h : +/usr/include/gtk-2.0/gtk/gtkvbbox.h : +/usr/include/gtk-2.0/gtk/gtkversion.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/libgnome-2.0/libgnome/libgnome.h : +/usr/include/libgnome-2.0/libgnome/gnome-program.h : +/usr/include/popt.h : +/usr/include/stdio.h : +/usr/include/bits/types.h : +/usr/include/bits/wordsize.h : +/usr/include/bits/typesizes.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/include/errno.h : +/usr/include/bits/errno.h : +/usr/include/linux/errno.h : +/usr/include/asm/errno.h : +/usr/include/asm-generic/errno.h : +/usr/include/asm-generic/errno-base.h : +/usr/include/libgnome-2.0/libgnome/gnome-i18n.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h : +/usr/include/libintl.h : +/usr/include/locale.h : +/usr/include/bits/locale.h : +/usr/include/libgnome-2.0/libgnome/gnome-config.h : +/usr/include/libgnome-2.0/libgnome/gnome-init.h : +/usr/include/libgnome-2.0/libgnome/gnome-gconf.h : +/usr/include/libgnome-2.0/libgnome/gnome-help.h : +/usr/include/libgnome-2.0/libgnome/gnome-macros.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-macros.h : +/usr/include/libgnome-2.0/libgnome/gnome-triggers.h : +/usr/include/libgnome-2.0/libgnome/gnome-sound.h : +/usr/include/libgnome-2.0/libgnome/gnome-score.h : +/usr/include/time.h : +/usr/include/bits/time.h : +/usr/include/libgnome-2.0/libgnome/gnome-exec.h : +/usr/include/libgnome-2.0/libgnome/gnome-util.h : +/usr/include/stdlib.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/bits/sched.h : +/usr/include/alloca.h : +/usr/include/libgnome-2.0/libgnome/gnome-url.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h : +/usr/include/libart-2.0/libart_lgpl/art_misc.h : +/usr/include/libart-2.0/libart_lgpl/art_config.h : +/usr/include/libart-2.0/libart_lgpl/art_rect.h : +/usr/include/libart-2.0/libart_lgpl/art_svp.h : +/usr/include/libart-2.0/libart_lgpl/art_point.h : +/usr/include/libart-2.0/libart_lgpl/art_uta.h : +/usr/include/libart-2.0/libart_lgpl/art_affine.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h : +/usr/include/libart-2.0/libart_lgpl/art_bpath.h : +/usr/include/libart-2.0/libart_lgpl/art_pathcode.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h : +/usr/include/libart-2.0/libart_lgpl/art_vpath.h : +/usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h : +/usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h : +/usr/include/gtk-2.0/gdk/gdkkeysyms.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h : +/usr/include/sys/stat.h : +/usr/include/bits/stat.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h : +/usr/include/unistd.h : +/usr/include/bits/posix_opt.h : +/usr/include/bits/confname.h : +/usr/include/getopt.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h : +/usr/include/string.h : +/usr/include/bits/string.h : +/usr/include/bits/string2.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h : +/usr/include/gconf/2/gconf/gconf-client.h : +/usr/include/gconf/2/gconf/gconf.h : +/usr/include/gconf/2/gconf/gconf-schema.h : +/usr/include/gconf/2/gconf/gconf-value.h : +/usr/include/gconf/2/gconf/gconf-error.h : +/usr/include/gconf/2/gconf/gconf-engine.h : +/usr/include/gconf/2/gconf/gconf-enum-types.h : +/usr/include/gconf/2/gconf/gconf-listeners.h : +/usr/include/gconf/2/gconf/gconf-changeset.h : +/usr/include/fcntl.h : +/usr/include/bits/fcntl.h : +/usr/include/expect.h : +/usr/include/setjmp.h : +/usr/include/bits/setjmp.h : +/usr/include/expect_comm.h : +/usr/include/sys/wait.h : +/usr/include/signal.h : +/usr/include/bits/signum.h : +/usr/include/bits/siginfo.h : +/usr/include/bits/sigaction.h : +/usr/include/bits/sigcontext.h : +/usr/include/asm/sigcontext.h : +/usr/include/linux/compiler.h : +/usr/include/linux/compiler-gcc3.h : +/usr/include/linux/compiler-gcc.h : +/usr/include/bits/sigstack.h : +/usr/include/bits/sigthread.h : +/usr/include/sys/resource.h : +/usr/include/bits/resource.h : +/usr/include/bits/waitflags.h : +/usr/include/bits/waitstatus.h : +interface.h : +support.h : diff --git a/projects/gvpndialer/trunk/src/.deps/callbacks.Po b/projects/gvpndialer/trunk/src/.deps/callbacks.Po new file mode 100644 index 0000000..dd97237 --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/callbacks.Po @@ -0,0 +1,1500 @@ +callbacks.o callbacks.o: callbacks.c ../config.h callbacks.h \ + /usr/include/libgnomeui-2.0/gnome.h /usr/include/gtk-2.0/gtk/gtk.h \ + /usr/include/gtk-2.0/gdk/gdk.h /usr/include/gtk-2.0/gdk/gdkcolor.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/i586-mandrake-linux-gnu/3.4.3/include/stddef.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/limits.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/syslimits.h \ + /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.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/i586-mandrake-linux-gnu/3.4.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/gatomic.h \ + /usr/include/glib-2.0/glib/gbacktrace.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/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/gutils.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/stdarg.h \ + /usr/include/glib-2.0/glib/gkeyfile.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/gscanner.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-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-script.h \ + /usr/include/pango-1.0/pango/pango-enum-types.h \ + /usr/include/pango-1.0/pango/pango-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/include/pango-1.0/pango/pango-renderer.h \ + /usr/lib/gtk-2.0/include/gdkconfig.h \ + /usr/include/gtk-2.0/gdk/gdkcursor.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-io.h /usr/include/stdio.h \ + /usr/include/bits/types.h /usr/include/bits/wordsize.h \ + /usr/include/bits/typesizes.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/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/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/gdkrgb.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/gdkpixbuf.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/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/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/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.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/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/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/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/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/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.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/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/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/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/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/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/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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.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/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/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/popt.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h /usr/include/time.h \ + /usr/include/bits/time.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h /usr/include/stdlib.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/bits/sched.h /usr/include/alloca.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/multiarch-dispatch.h \ + /usr/include/multiarch-i386-linux/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/multiarch-i386-linux/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-help.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-url.h \ + /usr/include/gconf/2/gconf/gconf-client.h \ + /usr/include/gconf/2/gconf/gconf.h \ + /usr/include/gconf/2/gconf/gconf-schema.h \ + /usr/include/gconf/2/gconf/gconf-value.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-engine.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-enum-types.h \ + /usr/include/gconf/2/gconf/gconf-listeners.h \ + /usr/include/gconf/2/gconf/gconf-changeset.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/sys/wait.h /usr/include/signal.h \ + /usr/include/bits/signum.h /usr/include/bits/siginfo.h \ + /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ + /usr/include/asm/sigcontext.h /usr/include/linux/compiler.h \ + /usr/include/bits/sigstack.h /usr/include/bits/sigthread.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/pcre/pcre.h eggtrayicon.h /usr/include/gtk-2.0/gdk/gdkx.h \ + /usr/include/gtk-2.0/gdk/gdkprivate.h /usr/X11R6/include/X11/Xlib.h \ + /usr/X11R6/include/X11/X.h /usr/X11R6/include/X11/Xfuncproto.h \ + /usr/X11R6/include/X11/Xosdefs.h /usr/X11R6/include/X11/Xutil.h \ + interface.h support.h + +../config.h: + +callbacks.h: + +/usr/include/libgnomeui-2.0/gnome.h: + +/usr/include/gtk-2.0/gtk/gtk.h: + +/usr/include/gtk-2.0/gdk/gdk.h: + +/usr/include/gtk-2.0/gdk/gdkcolor.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/i586-mandrake-linux-gnu/3.4.3/include/stddef.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/limits.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/gnu/stubs.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/i586-mandrake-linux-gnu/3.4.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/gatomic.h: + +/usr/include/glib-2.0/glib/gbacktrace.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/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/gutils.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/stdarg.h: + +/usr/include/glib-2.0/glib/gkeyfile.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/gscanner.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-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-script.h: + +/usr/include/pango-1.0/pango/pango-enum-types.h: + +/usr/include/pango-1.0/pango/pango-layout.h: + +/usr/include/pango-1.0/pango/pango-glyph-item.h: + +/usr/include/pango-1.0/pango/pango-tabs.h: + +/usr/include/pango-1.0/pango/pango-renderer.h: + +/usr/lib/gtk-2.0/include/gdkconfig.h: + +/usr/include/gtk-2.0/gdk/gdkcursor.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-io.h: + +/usr/include/stdio.h: + +/usr/include/bits/types.h: + +/usr/include/bits/wordsize.h: + +/usr/include/bits/typesizes.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/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/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/gdkrgb.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/gdkpixbuf.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/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/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/gtkbbox.h: + +/usr/include/gtk-2.0/gtk/gtkbox.h: + +/usr/include/gtk-2.0/gtk/gtkbindings.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/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/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/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/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/gtkeditable.h: + +/usr/include/gtk-2.0/gtk/gtkentry.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/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/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/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/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/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/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/gtktexttag.h: + +/usr/include/gtk-2.0/gtk/gtktextiter.h: + +/usr/include/gtk-2.0/gtk/gtktextchild.h: + +/usr/include/gtk-2.0/gtk/gtktextmark.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/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/libgnome-2.0/libgnome/libgnome.h: + +/usr/include/libgnome-2.0/libgnome/gnome-program.h: + +/usr/include/popt.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/libgnome-2.0/libgnome/gnome-i18n.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h: + +/usr/include/libintl.h: + +/usr/include/locale.h: + +/usr/include/bits/locale.h: + +/usr/include/libgnome-2.0/libgnome/gnome-config.h: + +/usr/include/libgnome-2.0/libgnome/gnome-init.h: + +/usr/include/libgnome-2.0/libgnome/gnome-gconf.h: + +/usr/include/libgnome-2.0/libgnome/gnome-help.h: + +/usr/include/libgnome-2.0/libgnome/gnome-macros.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-macros.h: + +/usr/include/libgnome-2.0/libgnome/gnome-triggers.h: + +/usr/include/libgnome-2.0/libgnome/gnome-sound.h: + +/usr/include/libgnome-2.0/libgnome/gnome-score.h: + +/usr/include/time.h: + +/usr/include/bits/time.h: + +/usr/include/libgnome-2.0/libgnome/gnome-exec.h: + +/usr/include/libgnome-2.0/libgnome/gnome-util.h: + +/usr/include/stdlib.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/bits/sched.h: + +/usr/include/alloca.h: + +/usr/include/libgnome-2.0/libgnome/gnome-url.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h: + +/usr/include/libart-2.0/libart_lgpl/art_misc.h: + +/usr/include/libart-2.0/libart_lgpl/art_config.h: + +/usr/include/multiarch-dispatch.h: + +/usr/include/multiarch-i386-linux/libart-2.0/libart_lgpl/art_config.h: + +/usr/include/libart-2.0/libart_lgpl/art_rect.h: + +/usr/include/libart-2.0/libart_lgpl/art_svp.h: + +/usr/include/libart-2.0/libart_lgpl/art_point.h: + +/usr/include/libart-2.0/libart_lgpl/art_uta.h: + +/usr/include/libart-2.0/libart_lgpl/art_affine.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h: + +/usr/include/libart-2.0/libart_lgpl/art_bpath.h: + +/usr/include/libart-2.0/libart_lgpl/art_pathcode.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h: + +/usr/include/libart-2.0/libart_lgpl/art_vpath.h: + +/usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h: + +/usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h: + +/usr/include/gtk-2.0/gdk/gdkkeysyms.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h: + +/usr/include/multiarch-i386-linux/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h: + +/usr/include/sys/stat.h: + +/usr/include/bits/stat.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h: + +/usr/include/string.h: + +/usr/include/bits/string.h: + +/usr/include/bits/string2.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-help.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-url.h: + +/usr/include/gconf/2/gconf/gconf-client.h: + +/usr/include/gconf/2/gconf/gconf.h: + +/usr/include/gconf/2/gconf/gconf-schema.h: + +/usr/include/gconf/2/gconf/gconf-value.h: + +/usr/include/gconf/2/gconf/gconf-error.h: + +/usr/include/gconf/2/gconf/gconf-engine.h: + +/usr/include/gconf/2/gconf/gconf-error.h: + +/usr/include/gconf/2/gconf/gconf-enum-types.h: + +/usr/include/gconf/2/gconf/gconf-listeners.h: + +/usr/include/gconf/2/gconf/gconf-changeset.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/sys/wait.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/asm/sigcontext.h: + +/usr/include/linux/compiler.h: + +/usr/include/bits/sigstack.h: + +/usr/include/bits/sigthread.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/pcre/pcre.h: + +eggtrayicon.h: + +/usr/include/gtk-2.0/gdk/gdkx.h: + +/usr/include/gtk-2.0/gdk/gdkprivate.h: + +/usr/X11R6/include/X11/Xlib.h: + +/usr/X11R6/include/X11/X.h: + +/usr/X11R6/include/X11/Xfuncproto.h: + +/usr/X11R6/include/X11/Xosdefs.h: + +/usr/X11R6/include/X11/Xutil.h: + +interface.h: + +support.h: diff --git a/projects/gvpndialer/trunk/src/.deps/callbacks.pp b/projects/gvpndialer/trunk/src/.deps/callbacks.pp new file mode 100644 index 0000000..8adb44d --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/callbacks.pp @@ -0,0 +1,389 @@ +callbacks.o: callbacks.c ../config.h /usr/include/libgnomeui-2.0/gnome.h \ + /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ + /usr/include/gtk-2.0/gdk/gdkcolor.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-lib/i586-mandrake-linux-gnu/3.3.2/include/stddef.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/syslimits.h \ + /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h \ + /usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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-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-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h \ + /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h \ + /usr/include/gtk-2.0/gdk/gdkwindow.h \ + /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ + /usr/include/gtk-2.0/gtk/gtkenums.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/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/gtkwindow.h /usr/include/gtk-2.0/gtk/gtkbin.h \ + /usr/include/gtk-2.0/gtk/gtkcontainer.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/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/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/atkvalue.h \ + /usr/include/gtk-2.0/gtk/gtkalignment.h \ + /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-2.0/gtk/gtkframe.h /usr/include/gtk-2.0/gtk/gtkarrow.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h /usr/include/gtk-2.0/gtk/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h \ + /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h \ + /usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ + /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-2.0/gtk/gtkdnd.h \ + /usr/include/gtk-2.0/gtk/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.h \ + /usr/include/gtk-2.0/gtk/gtkimcontext.h \ + /usr/include/gtk-2.0/gtk/gtkeventbox.h \ + /usr/include/gtk-2.0/gtk/gtkfilesel.h \ + /usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h \ + /usr/include/gtk-2.0/gtk/gtklayout.h /usr/include/gtk-2.0/gtk/gtklist.h \ + /usr/include/gtk-2.0/gtk/gtklistitem.h \ + /usr/include/gtk-2.0/gtk/gtkliststore.h \ + /usr/include/gtk-2.0/gtk/gtktreemodel.h \ + /usr/include/gtk-2.0/gtk/gtktreesortable.h \ + /usr/include/gtk-2.0/gtk/gtkmain.h \ + /usr/include/gtk-2.0/gtk/gtkmenubar.h \ + /usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkprogress.h \ + /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h \ + /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-2.0/gtk/gtkstock.h \ + /usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.h \ + /usr/include/gtk-2.0/gtk/gtktextview.h \ + /usr/include/gtk-2.0/gtk/gtktipsquery.h \ + /usr/include/gtk-2.0/gtk/gtktoolbar.h \ + /usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h \ + /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-2.0/gtk/gtktreestore.h \ + /usr/include/gtk-2.0/gtk/gtkvbbox.h \ + /usr/include/gtk-2.0/gtk/gtkversion.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/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/popt.h \ + /usr/include/stdio.h /usr/include/bits/types.h \ + /usr/include/bits/wordsize.h /usr/include/bits/typesizes.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/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h /usr/include/time.h \ + /usr/include/bits/time.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h /usr/include/stdlib.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/bits/sched.h /usr/include/alloca.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + callbacks.h /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/expect.h /usr/include/setjmp.h /usr/include/bits/setjmp.h \ + /usr/include/expect_comm.h /usr/include/sys/wait.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/asm/sigcontext.h \ + /usr/include/linux/compiler.h /usr/include/linux/compiler-gcc3.h \ + /usr/include/linux/compiler-gcc.h /usr/include/bits/sigstack.h \ + /usr/include/bits/sigthread.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/gconf/2/gconf/gconf-client.h \ + /usr/include/gconf/2/gconf/gconf.h \ + /usr/include/gconf/2/gconf/gconf-schema.h \ + /usr/include/gconf/2/gconf/gconf-value.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-engine.h \ + /usr/include/gconf/2/gconf/gconf-enum-types.h \ + /usr/include/gconf/2/gconf/gconf-listeners.h \ + /usr/include/gconf/2/gconf/gconf-changeset.h interface.h support.h diff --git a/projects/gvpndialer/trunk/src/.deps/interface.P b/projects/gvpndialer/trunk/src/.deps/interface.P new file mode 100644 index 0000000..29aba9d --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/interface.P @@ -0,0 +1,1048 @@ +interface.o: interface.c ../config.h /usr/include/sys/types.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.h /usr/include/bits/types.h \ + /usr/include/bits/wordsize.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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/bits/sched.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h /usr/include/stdlib.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/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/bits/stdio.h /usr/include/libbonoboui-2.0/bonobo.h \ + /usr/include/libbonoboui-2.0/libbonoboui.h \ + /usr/include/libbonobo-2.0/libbonobo.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-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/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/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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/libbonobo-2.0/bonobo/bonobo-object.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Unknown.h \ + /usr/include/orbit-2.0/orbit/orbit-types.h \ + /usr/include/orbit-2.0/orbit/util/orbit-util.h \ + /usr/include/orbit-2.0/orbit/orbit-config.h \ + /usr/include/orbit-2.0/orbit/util/basic_types.h \ + /usr/include/orbit-2.0/orbit/util/orbit-genrand.h \ + /usr/include/orbit-2.0/orbit/orb-core/orb-core-types.h \ + /usr/include/orbit-2.0/orbit/orb-core/orb-types.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-typecode-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-any-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-pobj.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-environment-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-orb-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/orbit-object.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-context-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-typecode.h \ + /usr/include/orbit-2.0/orbit/orb-core/allocators.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-defs.h \ + /usr/include/orbit-2.0/orbit/poa/poa-basics.h \ + /usr/include/orbit-2.0/orbit/orb-core/orbit-interface.h \ + /usr/include/orbit-2.0/orbit/orbit.h \ + /usr/include/orbit-2.0/orbit/orb-core/orb-core.h \ + /usr/include/orbit-2.0/orbit/orb-core/iop-defs.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-orb.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-string.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-environment.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-any.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-object-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-object.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-policy-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-context.h \ + /usr/include/orbit-2.0/orbit/orb-core/orbit-small.h \ + /usr/include/orbit-2.0/orbit/poa/poa.h \ + /usr/include/orbit-2.0/orbit/poa/poa-defs.h \ + /usr/include/orbit-2.0/orbit/poa/poa-types.h \ + /usr/include/orbit-2.0/orbit/poa/orbit-adaptor.h \ + /usr/include/orbit-2.0/orbit/poa/portableserver-poa-type.h \ + /usr/include/orbit-2.0/orbit/poa/portableserver-current-type.h \ + /usr/include/orbit-2.0/orbit/dynamic/dynamic.h \ + /usr/include/orbit-2.0/orbit/dynamic/dynamic-defs.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_GenericFactory.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Activation_types.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-version.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-activate.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-server-info.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-init.h \ + /usr/include/popt.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-shlib.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-register.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-async.h \ + /usr/include/libbonobo-2.0/bonobo/Bonobo.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-arg.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-moniker.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-moniker-simple.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-context.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-exception.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-item-container.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-moniker-util.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-property-bag.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-event-source.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-listener.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-property-bag-client.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-generic-factory.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-main.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-stream.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-storage.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-stream-memory.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-stream-client.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-persist.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-persist-file.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-persist-stream.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-storage-memory.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-widget.h \ + /usr/include/gtk-2.0/gtk/gtkbin.h /usr/include/gtk-2.0/gdk/gdk.h \ + /usr/include/gtk-2.0/gdk/gdkcolor.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-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-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h \ + /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h \ + /usr/include/gtk-2.0/gdk/gdkwindow.h \ + /usr/include/gtk-2.0/gtk/gtkcontainer.h \ + /usr/include/gtk-2.0/gtk/gtkenums.h \ + /usr/include/gtk-2.0/gtk/gtkwidget.h \ + /usr/include/gtk-2.0/gtk/gtkaccelgroup.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/libbonoboui-2.0/bonobo/bonobo-control-frame.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-component.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-node.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-socket.h \ + /usr/include/gtk-2.0/gtk/gtksocket.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-control.h \ + /usr/include/gtk-2.0/gtk/gtkwindow.h /usr/include/gtk-2.0/gtk/gtkmenu.h \ + /usr/include/gtk-2.0/gtk/gtkmenushell.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-plug.h \ + /usr/include/gtk-2.0/gtk/gtkplug.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-container.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-engine.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-property-control.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-window.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-main.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-util.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-selector.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-selector-widget.h \ + /usr/include/gtk-2.0/gtk/gtk.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/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/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/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/atkvalue.h \ + /usr/include/gtk-2.0/gtk/gtkalignment.h \ + /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-2.0/gtk/gtkframe.h /usr/include/gtk-2.0/gtk/gtkarrow.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h /usr/include/gtk-2.0/gtk/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h \ + /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h \ + /usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ + /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-2.0/gtk/gtkdnd.h \ + /usr/include/gtk-2.0/gtk/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.h \ + /usr/include/gtk-2.0/gtk/gtkimcontext.h \ + /usr/include/gtk-2.0/gtk/gtkeventbox.h \ + /usr/include/gtk-2.0/gtk/gtkfilesel.h \ + /usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h \ + /usr/include/gtk-2.0/gtk/gtklayout.h /usr/include/gtk-2.0/gtk/gtklist.h \ + /usr/include/gtk-2.0/gtk/gtklistitem.h \ + /usr/include/gtk-2.0/gtk/gtkliststore.h \ + /usr/include/gtk-2.0/gtk/gtktreemodel.h \ + /usr/include/gtk-2.0/gtk/gtktreesortable.h \ + /usr/include/gtk-2.0/gtk/gtkmain.h \ + /usr/include/gtk-2.0/gtk/gtkmenubar.h \ + /usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkpreview.h \ + /usr/include/gtk-2.0/gtk/gtkprogress.h \ + /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h \ + /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-2.0/gtk/gtkstock.h \ + /usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.h \ + /usr/include/gtk-2.0/gtk/gtktextview.h \ + /usr/include/gtk-2.0/gtk/gtktipsquery.h \ + /usr/include/gtk-2.0/gtk/gtktoolbar.h \ + /usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h \ + /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-2.0/gtk/gtktreestore.h \ + /usr/include/gtk-2.0/gtk/gtkvbbox.h \ + /usr/include/gtk-2.0/gtk/gtkversion.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/libbonoboui-2.0/bonobo/bonobo-file-selector-util.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-item.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h /usr/include/alloca.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-component.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable-frame.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-type-builtins.h \ + /usr/include/libgnomeui-2.0/gnome.h \ + /usr/include/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + callbacks.h /usr/include/gconf/2/gconf/gconf-client.h \ + /usr/include/gconf/2/gconf/gconf.h \ + /usr/include/gconf/2/gconf/gconf-schema.h \ + /usr/include/gconf/2/gconf/gconf-value.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-engine.h \ + /usr/include/gconf/2/gconf/gconf-enum-types.h \ + /usr/include/gconf/2/gconf/gconf-listeners.h \ + /usr/include/gconf/2/gconf/gconf-changeset.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/expect.h /usr/include/setjmp.h \ + /usr/include/bits/setjmp.h /usr/include/expect_comm.h \ + /usr/include/sys/wait.h /usr/include/signal.h \ + /usr/include/bits/signum.h /usr/include/bits/siginfo.h \ + /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ + /usr/include/asm/sigcontext.h /usr/include/linux/compiler.h \ + /usr/include/linux/compiler-gcc3.h /usr/include/linux/compiler-gcc.h \ + /usr/include/bits/sigstack.h /usr/include/bits/sigthread.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + interface.h support.h +interface.c : +../config.h : +/usr/include/sys/types.h : +/usr/include/features.h : +/usr/include/sys/cdefs.h : +/usr/include/gnu/stubs.h : +/usr/include/bits/types.h : +/usr/include/bits/wordsize.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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/bits/sched.h : +/usr/include/sys/stat.h : +/usr/include/bits/stat.h : +/usr/include/unistd.h : +/usr/include/bits/posix_opt.h : +/usr/include/bits/confname.h : +/usr/include/getopt.h : +/usr/include/string.h : +/usr/include/bits/string.h : +/usr/include/bits/string2.h : +/usr/include/stdlib.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/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h : +/usr/include/bits/stdio_lim.h : +/usr/include/bits/sys_errlist.h : +/usr/include/bits/stdio.h : +/usr/include/libbonoboui-2.0/bonobo.h : +/usr/include/libbonoboui-2.0/libbonoboui.h : +/usr/include/libbonobo-2.0/libbonobo.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-macros.h : +/usr/include/glib-2.0/glib/gmacros.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-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/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/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h : +/usr/include/glib-2.0/glib/gmessages.h : +/usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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/libbonobo-2.0/bonobo/bonobo-object.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Unknown.h : +/usr/include/orbit-2.0/orbit/orbit-types.h : +/usr/include/orbit-2.0/orbit/util/orbit-util.h : +/usr/include/orbit-2.0/orbit/orbit-config.h : +/usr/include/orbit-2.0/orbit/util/basic_types.h : +/usr/include/orbit-2.0/orbit/util/orbit-genrand.h : +/usr/include/orbit-2.0/orbit/orb-core/orb-core-types.h : +/usr/include/orbit-2.0/orbit/orb-core/orb-types.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-typecode-type.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-any-type.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-pobj.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-environment-type.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-orb-type.h : +/usr/include/orbit-2.0/orbit/orb-core/orbit-object.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-context-type.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-typecode.h : +/usr/include/orbit-2.0/orbit/orb-core/allocators.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-defs.h : +/usr/include/orbit-2.0/orbit/poa/poa-basics.h : +/usr/include/orbit-2.0/orbit/orb-core/orbit-interface.h : +/usr/include/orbit-2.0/orbit/orbit.h : +/usr/include/orbit-2.0/orbit/orb-core/orb-core.h : +/usr/include/orbit-2.0/orbit/orb-core/iop-defs.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-orb.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-string.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-environment.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-any.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-object-type.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-object.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-policy-type.h : +/usr/include/orbit-2.0/orbit/orb-core/corba-context.h : +/usr/include/orbit-2.0/orbit/orb-core/orbit-small.h : +/usr/include/orbit-2.0/orbit/poa/poa.h : +/usr/include/orbit-2.0/orbit/poa/poa-defs.h : +/usr/include/orbit-2.0/orbit/poa/poa-types.h : +/usr/include/orbit-2.0/orbit/poa/orbit-adaptor.h : +/usr/include/orbit-2.0/orbit/poa/portableserver-poa-type.h : +/usr/include/orbit-2.0/orbit/poa/portableserver-current-type.h : +/usr/include/orbit-2.0/orbit/dynamic/dynamic.h : +/usr/include/orbit-2.0/orbit/dynamic/dynamic-defs.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_GenericFactory.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Activation_types.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-version.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-activate.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-server-info.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-init.h : +/usr/include/popt.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-shlib.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-register.h : +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-async.h : +/usr/include/libbonobo-2.0/bonobo/Bonobo.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-arg.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-moniker.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-moniker-simple.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-context.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-exception.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-item-container.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-moniker-util.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-property-bag.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-event-source.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-listener.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-property-bag-client.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-generic-factory.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h : +/usr/include/libintl.h : +/usr/include/locale.h : +/usr/include/bits/locale.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-main.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-stream.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-storage.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-stream-memory.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-stream-client.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-persist.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-persist-file.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-persist-stream.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-storage-memory.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-widget.h : +/usr/include/gtk-2.0/gtk/gtkbin.h : +/usr/include/gtk-2.0/gdk/gdk.h : +/usr/include/gtk-2.0/gdk/gdkcolor.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-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-layout.h : +/usr/include/pango-1.0/pango/pango-glyph-item.h : +/usr/include/pango-1.0/pango/pango-tabs.h : +/usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h : +/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h : +/usr/include/gtk-2.0/gdk/gdkwindow.h : +/usr/include/gtk-2.0/gtk/gtkcontainer.h : +/usr/include/gtk-2.0/gtk/gtkenums.h : +/usr/include/gtk-2.0/gtk/gtkwidget.h : +/usr/include/gtk-2.0/gtk/gtkaccelgroup.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/libbonoboui-2.0/bonobo/bonobo-control-frame.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-component.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-node.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-socket.h : +/usr/include/gtk-2.0/gtk/gtksocket.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-control.h : +/usr/include/gtk-2.0/gtk/gtkwindow.h : +/usr/include/gtk-2.0/gtk/gtkmenu.h : +/usr/include/gtk-2.0/gtk/gtkmenushell.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-plug.h : +/usr/include/gtk-2.0/gtk/gtkplug.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-container.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-engine.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-property-control.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-window.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-main.h : +/usr/include/libgnome-2.0/libgnome/gnome-program.h : +/usr/include/errno.h : +/usr/include/bits/errno.h : +/usr/include/linux/errno.h : +/usr/include/asm/errno.h : +/usr/include/asm-generic/errno.h : +/usr/include/asm-generic/errno-base.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-util.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-selector.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-selector-widget.h : +/usr/include/gtk-2.0/gtk/gtk.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/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/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/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/atkvalue.h : +/usr/include/gtk-2.0/gtk/gtkalignment.h : +/usr/include/gtk-2.0/gtk/gtkaspectframe.h : +/usr/include/gtk-2.0/gtk/gtkframe.h : +/usr/include/gtk-2.0/gtk/gtkarrow.h : +/usr/include/gtk-2.0/gtk/gtkbindings.h : +/usr/include/gtk-2.0/gtk/gtkbox.h : +/usr/include/gtk-2.0/gtk/gtkbbox.h : +/usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h : +/usr/include/gtk-2.0/gtk/gtkcelleditable.h : +/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h : +/usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h : +/usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h : +/usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h : +/usr/include/gtk-2.0/gtk/gtkcurve.h : +/usr/include/gtk-2.0/gtk/gtkdrawingarea.h : +/usr/include/gtk-2.0/gtk/gtkdnd.h : +/usr/include/gtk-2.0/gtk/gtkeditable.h : +/usr/include/gtk-2.0/gtk/gtkentry.h : +/usr/include/gtk-2.0/gtk/gtkimcontext.h : +/usr/include/gtk-2.0/gtk/gtkeventbox.h : +/usr/include/gtk-2.0/gtk/gtkfilesel.h : +/usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h : +/usr/include/gtk-2.0/gtk/gtklayout.h : +/usr/include/gtk-2.0/gtk/gtklist.h : +/usr/include/gtk-2.0/gtk/gtklistitem.h : +/usr/include/gtk-2.0/gtk/gtkliststore.h : +/usr/include/gtk-2.0/gtk/gtktreemodel.h : +/usr/include/gtk-2.0/gtk/gtktreesortable.h : +/usr/include/gtk-2.0/gtk/gtkmain.h : +/usr/include/gtk-2.0/gtk/gtkmenubar.h : +/usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkpreview.h : +/usr/include/gtk-2.0/gtk/gtkprogress.h : +/usr/include/gtk-2.0/gtk/gtkprogressbar.h : +/usr/include/gtk-2.0/gtk/gtkradiobutton.h : +/usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h : +/usr/include/gtk-2.0/gtk/gtkspinbutton.h : +/usr/include/gtk-2.0/gtk/gtkstock.h : +/usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h : +/usr/include/gtk-2.0/gtk/gtktextiter.h : +/usr/include/gtk-2.0/gtk/gtktextchild.h : +/usr/include/gtk-2.0/gtk/gtktextmark.h : +/usr/include/gtk-2.0/gtk/gtktextview.h : +/usr/include/gtk-2.0/gtk/gtktipsquery.h : +/usr/include/gtk-2.0/gtk/gtktoolbar.h : +/usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h : +/usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h : +/usr/include/gtk-2.0/gtk/gtktreestore.h : +/usr/include/gtk-2.0/gtk/gtkvbbox.h : +/usr/include/gtk-2.0/gtk/gtkversion.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/libbonoboui-2.0/bonobo/bonobo-file-selector-util.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-item.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h : +/usr/include/libart-2.0/libart_lgpl/art_misc.h : +/usr/include/alloca.h : +/usr/include/libart-2.0/libart_lgpl/art_config.h : +/usr/include/libart-2.0/libart_lgpl/art_rect.h : +/usr/include/libart-2.0/libart_lgpl/art_svp.h : +/usr/include/libart-2.0/libart_lgpl/art_point.h : +/usr/include/libart-2.0/libart_lgpl/art_uta.h : +/usr/include/libart-2.0/libart_lgpl/art_affine.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-component.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable-frame.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar-item.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-type-builtins.h : +/usr/include/libgnomeui-2.0/gnome.h : +/usr/include/libgnome-2.0/libgnome/libgnome.h : +/usr/include/libgnome-2.0/libgnome/gnome-i18n.h : +/usr/include/libgnome-2.0/libgnome/gnome-config.h : +/usr/include/libgnome-2.0/libgnome/gnome-init.h : +/usr/include/libgnome-2.0/libgnome/gnome-gconf.h : +/usr/include/libgnome-2.0/libgnome/gnome-help.h : +/usr/include/libgnome-2.0/libgnome/gnome-macros.h : +/usr/include/libgnome-2.0/libgnome/gnome-triggers.h : +/usr/include/libgnome-2.0/libgnome/gnome-sound.h : +/usr/include/libgnome-2.0/libgnome/gnome-score.h : +/usr/include/libgnome-2.0/libgnome/gnome-exec.h : +/usr/include/libgnome-2.0/libgnome/gnome-util.h : +/usr/include/libgnome-2.0/libgnome/gnome-url.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h : +/usr/include/libart-2.0/libart_lgpl/art_bpath.h : +/usr/include/libart-2.0/libart_lgpl/art_pathcode.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h : +/usr/include/libart-2.0/libart_lgpl/art_vpath.h : +/usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h : +/usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h : +/usr/include/gtk-2.0/gdk/gdkkeysyms.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h : +callbacks.h : +/usr/include/gconf/2/gconf/gconf-client.h : +/usr/include/gconf/2/gconf/gconf.h : +/usr/include/gconf/2/gconf/gconf-schema.h : +/usr/include/gconf/2/gconf/gconf-value.h : +/usr/include/gconf/2/gconf/gconf-error.h : +/usr/include/gconf/2/gconf/gconf-engine.h : +/usr/include/gconf/2/gconf/gconf-enum-types.h : +/usr/include/gconf/2/gconf/gconf-listeners.h : +/usr/include/gconf/2/gconf/gconf-changeset.h : +/usr/include/fcntl.h : +/usr/include/bits/fcntl.h : +/usr/include/expect.h : +/usr/include/setjmp.h : +/usr/include/bits/setjmp.h : +/usr/include/expect_comm.h : +/usr/include/sys/wait.h : +/usr/include/signal.h : +/usr/include/bits/signum.h : +/usr/include/bits/siginfo.h : +/usr/include/bits/sigaction.h : +/usr/include/bits/sigcontext.h : +/usr/include/asm/sigcontext.h : +/usr/include/linux/compiler.h : +/usr/include/linux/compiler-gcc3.h : +/usr/include/linux/compiler-gcc.h : +/usr/include/bits/sigstack.h : +/usr/include/bits/sigthread.h : +/usr/include/sys/resource.h : +/usr/include/bits/resource.h : +/usr/include/bits/waitflags.h : +/usr/include/bits/waitstatus.h : +interface.h : +support.h : diff --git a/projects/gvpndialer/trunk/src/.deps/interface.Po b/projects/gvpndialer/trunk/src/.deps/interface.Po new file mode 100644 index 0000000..1845bb4 --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/interface.Po @@ -0,0 +1,1812 @@ +interface.o interface.o: interface.c ../config.h /usr/include/sys/types.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.h /usr/include/bits/types.h \ + /usr/include/bits/wordsize.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.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/bits/sched.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h /usr/include/stdlib.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/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/bits/stdio.h /usr/include/libbonoboui-2.0/bonobo.h \ + /usr/include/libbonoboui-2.0/libbonoboui.h \ + /usr/include/libbonobo-2.0/libbonobo.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-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/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/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/limits.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.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/i586-mandrake-linux-gnu/3.4.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/gatomic.h \ + /usr/include/glib-2.0/glib/gbacktrace.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/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/gutils.h \ + /usr/include/glib-2.0/glib/gkeyfile.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/gscanner.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/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/libbonobo-2.0/bonobo/bonobo-object.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Unknown.h \ + /usr/include/orbit-2.0/orbit/orbit-types.h \ + /usr/include/orbit-2.0/orbit/util/orbit-util.h \ + /usr/include/orbit-2.0/orbit/orbit-config.h \ + /usr/include/multiarch-dispatch.h \ + /usr/include/multiarch-i386-linux/orbit-2.0/orbit/orbit-config.h \ + /usr/include/orbit-2.0/orbit/util/basic_types.h \ + /usr/include/orbit-2.0/orbit/util/orbit-genrand.h \ + /usr/include/orbit-2.0/orbit/orb-core/orb-core-types.h \ + /usr/include/orbit-2.0/orbit/orb-core/orb-types.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-typecode-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-any-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-pobj.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-environment-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-orb-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/orbit-object.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-context-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-typecode.h \ + /usr/include/orbit-2.0/orbit/orb-core/allocators.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-defs.h \ + /usr/include/orbit-2.0/orbit/poa/poa-basics.h \ + /usr/include/orbit-2.0/orbit/orb-core/orbit-interface.h \ + /usr/include/orbit-2.0/orbit/orbit.h \ + /usr/include/orbit-2.0/orbit/orb-core/orb-core.h \ + /usr/include/orbit-2.0/orbit/orb-core/iop-defs.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-orb.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-string.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-environment.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-any.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-object-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-object.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-policy-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-context.h \ + /usr/include/orbit-2.0/orbit/orb-core/orbit-small.h \ + /usr/include/orbit-2.0/orbit/poa/poa.h \ + /usr/include/orbit-2.0/orbit/poa/poa-defs.h \ + /usr/include/orbit-2.0/orbit/poa/poa-types.h \ + /usr/include/orbit-2.0/orbit/poa/orbit-adaptor.h \ + /usr/include/orbit-2.0/orbit/poa/portableserver-poa-type.h \ + /usr/include/orbit-2.0/orbit/poa/portableserver-current-type.h \ + /usr/include/orbit-2.0/orbit/dynamic/dynamic.h \ + /usr/include/orbit-2.0/orbit/dynamic/dynamic-defs.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_GenericFactory.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Activation_types.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-version.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-activate.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-server-info.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-init.h \ + /usr/include/popt.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-shlib.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-register.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-async.h \ + /usr/include/libbonobo-2.0/bonobo/Bonobo.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-arg.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-moniker.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-moniker-simple.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-context.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-exception.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-item-container.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-moniker-util.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-property-bag.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-event-source.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-listener.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-property-bag-client.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-generic-factory.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-main.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-stream.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-storage.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-stream-memory.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-stream-client.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-persist.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-persist-file.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-persist-stream.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-storage-memory.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-application.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-app-client.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-widget.h \ + /usr/include/gtk-2.0/gtk/gtkbin.h /usr/include/gtk-2.0/gdk/gdk.h \ + /usr/include/gtk-2.0/gdk/gdkcolor.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-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-script.h \ + /usr/include/pango-1.0/pango/pango-enum-types.h \ + /usr/include/pango-1.0/pango/pango-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/include/pango-1.0/pango/pango-renderer.h \ + /usr/lib/gtk-2.0/include/gdkconfig.h \ + /usr/include/gtk-2.0/gdk/gdkcursor.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-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/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/gdkrgb.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/gdkpixbuf.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/gtkcontainer.h \ + /usr/include/gtk-2.0/gtk/gtkenums.h \ + /usr/include/gtk-2.0/gtk/gtkwidget.h \ + /usr/include/gtk-2.0/gtk/gtkaccelgroup.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/libbonoboui-2.0/bonobo/bonobo-control-frame.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-component.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-node.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-socket.h \ + /usr/include/gtk-2.0/gtk/gtksocket.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-control.h \ + /usr/include/gtk-2.0/gtk/gtkwindow.h /usr/include/gtk-2.0/gtk/gtkmenu.h \ + /usr/include/gtk-2.0/gtk/gtkmenushell.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-plug.h \ + /usr/include/gtk-2.0/gtk/gtkplug.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-container.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-engine.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-property-control.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-window.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-main.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-util.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-selector.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-selector-widget.h \ + /usr/include/gtk-2.0/gtk/gtk.h \ + /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ + /usr/include/gtk-2.0/gtk/gtkdialog.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/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/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/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/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.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/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/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/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/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/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.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/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/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/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/gtkpreview.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/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/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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.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/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/libbonoboui-2.0/bonobo/bonobo-file-selector-util.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-item.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h /usr/include/alloca.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/multiarch-i386-linux/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-component.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable-frame.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-type-builtins.h \ + /usr/include/libgnomeui-2.0/gnome.h \ + /usr/include/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/multiarch-i386-linux/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-help.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-url.h callbacks.h \ + /usr/include/gconf/2/gconf/gconf-client.h \ + /usr/include/gconf/2/gconf/gconf.h \ + /usr/include/gconf/2/gconf/gconf-schema.h \ + /usr/include/gconf/2/gconf/gconf-value.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-engine.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-enum-types.h \ + /usr/include/gconf/2/gconf/gconf-listeners.h \ + /usr/include/gconf/2/gconf/gconf-changeset.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/sys/wait.h /usr/include/signal.h \ + /usr/include/bits/signum.h /usr/include/bits/siginfo.h \ + /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ + /usr/include/asm/sigcontext.h /usr/include/linux/compiler.h \ + /usr/include/bits/sigstack.h /usr/include/bits/sigthread.h \ + /usr/include/sys/resource.h /usr/include/bits/resource.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/pcre/pcre.h eggtrayicon.h /usr/include/gtk-2.0/gdk/gdkx.h \ + /usr/include/gtk-2.0/gdk/gdkprivate.h /usr/X11R6/include/X11/Xlib.h \ + /usr/X11R6/include/X11/X.h /usr/X11R6/include/X11/Xfuncproto.h \ + /usr/X11R6/include/X11/Xosdefs.h /usr/X11R6/include/X11/Xutil.h \ + interface.h support.h + +../config.h: + +/usr/include/sys/types.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/gnu/stubs.h: + +/usr/include/bits/types.h: + +/usr/include/bits/wordsize.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.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/bits/sched.h: + +/usr/include/sys/stat.h: + +/usr/include/bits/stat.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/string.h: + +/usr/include/bits/string.h: + +/usr/include/bits/string2.h: + +/usr/include/stdlib.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/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/bits/stdio.h: + +/usr/include/libbonoboui-2.0/bonobo.h: + +/usr/include/libbonoboui-2.0/libbonoboui.h: + +/usr/include/libbonobo-2.0/libbonobo.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-macros.h: + +/usr/include/glib-2.0/glib/gmacros.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-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/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/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/limits.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.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/i586-mandrake-linux-gnu/3.4.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/gatomic.h: + +/usr/include/glib-2.0/glib/gbacktrace.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/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/gutils.h: + +/usr/include/glib-2.0/glib/gkeyfile.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/gscanner.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/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/libbonobo-2.0/bonobo/bonobo-object.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Unknown.h: + +/usr/include/orbit-2.0/orbit/orbit-types.h: + +/usr/include/orbit-2.0/orbit/util/orbit-util.h: + +/usr/include/orbit-2.0/orbit/orbit-config.h: + +/usr/include/multiarch-dispatch.h: + +/usr/include/multiarch-i386-linux/orbit-2.0/orbit/orbit-config.h: + +/usr/include/orbit-2.0/orbit/util/basic_types.h: + +/usr/include/orbit-2.0/orbit/util/orbit-genrand.h: + +/usr/include/orbit-2.0/orbit/orb-core/orb-core-types.h: + +/usr/include/orbit-2.0/orbit/orb-core/orb-types.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-typecode-type.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-any-type.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-pobj.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-environment-type.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-orb-type.h: + +/usr/include/orbit-2.0/orbit/orb-core/orbit-object.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-context-type.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-typecode.h: + +/usr/include/orbit-2.0/orbit/orb-core/allocators.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-defs.h: + +/usr/include/orbit-2.0/orbit/poa/poa-basics.h: + +/usr/include/orbit-2.0/orbit/orb-core/orbit-interface.h: + +/usr/include/orbit-2.0/orbit/orbit.h: + +/usr/include/orbit-2.0/orbit/orb-core/orb-core.h: + +/usr/include/orbit-2.0/orbit/orb-core/iop-defs.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-orb.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-string.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-environment.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-any.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-object-type.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-object.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-policy-type.h: + +/usr/include/orbit-2.0/orbit/orb-core/corba-context.h: + +/usr/include/orbit-2.0/orbit/orb-core/orbit-small.h: + +/usr/include/orbit-2.0/orbit/poa/poa.h: + +/usr/include/orbit-2.0/orbit/poa/poa-defs.h: + +/usr/include/orbit-2.0/orbit/poa/poa-types.h: + +/usr/include/orbit-2.0/orbit/poa/orbit-adaptor.h: + +/usr/include/orbit-2.0/orbit/poa/portableserver-poa-type.h: + +/usr/include/orbit-2.0/orbit/poa/portableserver-current-type.h: + +/usr/include/orbit-2.0/orbit/dynamic/dynamic.h: + +/usr/include/orbit-2.0/orbit/dynamic/dynamic-defs.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_GenericFactory.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Activation_types.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-version.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-activate.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-server-info.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-init.h: + +/usr/include/popt.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-shlib.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-register.h: + +/usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-async.h: + +/usr/include/libbonobo-2.0/bonobo/Bonobo.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-arg.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-moniker.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-moniker-simple.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-context.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-exception.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-item-container.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-moniker-util.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-property-bag.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-event-source.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-listener.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-property-bag-client.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-generic-factory.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h: + +/usr/include/libintl.h: + +/usr/include/locale.h: + +/usr/include/bits/locale.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-main.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-stream.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-storage.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-stream-memory.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-stream-client.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-persist.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-persist-file.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-persist-stream.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-storage-memory.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-application.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-app-client.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-widget.h: + +/usr/include/gtk-2.0/gtk/gtkbin.h: + +/usr/include/gtk-2.0/gdk/gdk.h: + +/usr/include/gtk-2.0/gdk/gdkcolor.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-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-script.h: + +/usr/include/pango-1.0/pango/pango-enum-types.h: + +/usr/include/pango-1.0/pango/pango-layout.h: + +/usr/include/pango-1.0/pango/pango-glyph-item.h: + +/usr/include/pango-1.0/pango/pango-tabs.h: + +/usr/include/pango-1.0/pango/pango-renderer.h: + +/usr/lib/gtk-2.0/include/gdkconfig.h: + +/usr/include/gtk-2.0/gdk/gdkcursor.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-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/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/gdkrgb.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/gdkpixbuf.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/gtkcontainer.h: + +/usr/include/gtk-2.0/gtk/gtkenums.h: + +/usr/include/gtk-2.0/gtk/gtkwidget.h: + +/usr/include/gtk-2.0/gtk/gtkaccelgroup.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/libbonoboui-2.0/bonobo/bonobo-control-frame.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-component.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-node.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-socket.h: + +/usr/include/gtk-2.0/gtk/gtksocket.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-control.h: + +/usr/include/gtk-2.0/gtk/gtkwindow.h: + +/usr/include/gtk-2.0/gtk/gtkmenu.h: + +/usr/include/gtk-2.0/gtk/gtkmenushell.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-plug.h: + +/usr/include/gtk-2.0/gtk/gtkplug.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-container.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-engine.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-property-control.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-window.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-main.h: + +/usr/include/libgnome-2.0/libgnome/gnome-program.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-util.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-selector.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-selector-widget.h: + +/usr/include/gtk-2.0/gtk/gtk.h: + +/usr/include/gtk-2.0/gtk/gtkaboutdialog.h: + +/usr/include/gtk-2.0/gtk/gtkdialog.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/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/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/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/gtkbbox.h: + +/usr/include/gtk-2.0/gtk/gtkbox.h: + +/usr/include/gtk-2.0/gtk/gtkbindings.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/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/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/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/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/gtkeditable.h: + +/usr/include/gtk-2.0/gtk/gtkentry.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/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/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/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/gtkpreview.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/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/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/gtktexttag.h: + +/usr/include/gtk-2.0/gtk/gtktextiter.h: + +/usr/include/gtk-2.0/gtk/gtktextchild.h: + +/usr/include/gtk-2.0/gtk/gtktextmark.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/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/libbonoboui-2.0/bonobo/bonobo-file-selector-util.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-item.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h: + +/usr/include/libart-2.0/libart_lgpl/art_misc.h: + +/usr/include/alloca.h: + +/usr/include/libart-2.0/libart_lgpl/art_config.h: + +/usr/include/multiarch-i386-linux/libart-2.0/libart_lgpl/art_config.h: + +/usr/include/libart-2.0/libart_lgpl/art_rect.h: + +/usr/include/libart-2.0/libart_lgpl/art_svp.h: + +/usr/include/libart-2.0/libart_lgpl/art_point.h: + +/usr/include/libart-2.0/libart_lgpl/art_uta.h: + +/usr/include/libart-2.0/libart_lgpl/art_affine.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-component.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable-frame.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar-item.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar-item.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-type-builtins.h: + +/usr/include/libgnomeui-2.0/gnome.h: + +/usr/include/libgnome-2.0/libgnome/libgnome.h: + +/usr/include/libgnome-2.0/libgnome/gnome-i18n.h: + +/usr/include/libgnome-2.0/libgnome/gnome-config.h: + +/usr/include/libgnome-2.0/libgnome/gnome-init.h: + +/usr/include/libgnome-2.0/libgnome/gnome-gconf.h: + +/usr/include/libgnome-2.0/libgnome/gnome-help.h: + +/usr/include/libgnome-2.0/libgnome/gnome-macros.h: + +/usr/include/libgnome-2.0/libgnome/gnome-triggers.h: + +/usr/include/libgnome-2.0/libgnome/gnome-sound.h: + +/usr/include/libgnome-2.0/libgnome/gnome-score.h: + +/usr/include/libgnome-2.0/libgnome/gnome-exec.h: + +/usr/include/libgnome-2.0/libgnome/gnome-util.h: + +/usr/include/libgnome-2.0/libgnome/gnome-url.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h: + +/usr/include/libart-2.0/libart_lgpl/art_bpath.h: + +/usr/include/libart-2.0/libart_lgpl/art_pathcode.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h: + +/usr/include/libart-2.0/libart_lgpl/art_vpath.h: + +/usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h: + +/usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h: + +/usr/include/gtk-2.0/gdk/gdkkeysyms.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h: + +/usr/include/multiarch-i386-linux/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-help.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-url.h: + +callbacks.h: + +/usr/include/gconf/2/gconf/gconf-client.h: + +/usr/include/gconf/2/gconf/gconf.h: + +/usr/include/gconf/2/gconf/gconf-schema.h: + +/usr/include/gconf/2/gconf/gconf-value.h: + +/usr/include/gconf/2/gconf/gconf-error.h: + +/usr/include/gconf/2/gconf/gconf-engine.h: + +/usr/include/gconf/2/gconf/gconf-error.h: + +/usr/include/gconf/2/gconf/gconf-enum-types.h: + +/usr/include/gconf/2/gconf/gconf-listeners.h: + +/usr/include/gconf/2/gconf/gconf-changeset.h: + +/usr/include/fcntl.h: + +/usr/include/bits/fcntl.h: + +/usr/include/sys/wait.h: + +/usr/include/signal.h: + +/usr/include/bits/signum.h: + +/usr/include/bits/siginfo.h: + +/usr/include/bits/sigaction.h: + +/usr/include/bits/sigcontext.h: + +/usr/include/asm/sigcontext.h: + +/usr/include/linux/compiler.h: + +/usr/include/bits/sigstack.h: + +/usr/include/bits/sigthread.h: + +/usr/include/sys/resource.h: + +/usr/include/bits/resource.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/pcre/pcre.h: + +eggtrayicon.h: + +/usr/include/gtk-2.0/gdk/gdkx.h: + +/usr/include/gtk-2.0/gdk/gdkprivate.h: + +/usr/X11R6/include/X11/Xlib.h: + +/usr/X11R6/include/X11/X.h: + +/usr/X11R6/include/X11/Xfuncproto.h: + +/usr/X11R6/include/X11/Xosdefs.h: + +/usr/X11R6/include/X11/Xutil.h: + +interface.h: + +support.h: diff --git a/projects/gvpndialer/trunk/src/.deps/interface.pp b/projects/gvpndialer/trunk/src/.deps/interface.pp new file mode 100644 index 0000000..8ecb093 --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/interface.pp @@ -0,0 +1,488 @@ +interface.o: interface.c ../config.h /usr/include/sys/types.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.h /usr/include/bits/types.h \ + /usr/include/bits/wordsize.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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/bits/sched.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h /usr/include/stdlib.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/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/bits/stdio.h /usr/include/libbonoboui-2.0/bonobo.h \ + /usr/include/libbonoboui-2.0/libbonoboui.h \ + /usr/include/libbonobo-2.0/libbonobo.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-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/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/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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/libbonobo-2.0/bonobo/bonobo-object.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Unknown.h \ + /usr/include/orbit-2.0/orbit/orbit-types.h \ + /usr/include/orbit-2.0/orbit/util/orbit-util.h \ + /usr/include/orbit-2.0/orbit/orbit-config.h \ + /usr/include/orbit-2.0/orbit/util/basic_types.h \ + /usr/include/orbit-2.0/orbit/util/orbit-genrand.h \ + /usr/include/orbit-2.0/orbit/orb-core/orb-core-types.h \ + /usr/include/orbit-2.0/orbit/orb-core/orb-types.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-typecode-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-any-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-pobj.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-environment-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-orb-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/orbit-object.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-context-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-typecode.h \ + /usr/include/orbit-2.0/orbit/orb-core/allocators.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-defs.h \ + /usr/include/orbit-2.0/orbit/poa/poa-basics.h \ + /usr/include/orbit-2.0/orbit/orb-core/orbit-interface.h \ + /usr/include/orbit-2.0/orbit/orbit.h \ + /usr/include/orbit-2.0/orbit/orb-core/orb-core.h \ + /usr/include/orbit-2.0/orbit/orb-core/iop-defs.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-orb.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-string.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-environment.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-any.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-object-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-object.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-policy-type.h \ + /usr/include/orbit-2.0/orbit/orb-core/corba-context.h \ + /usr/include/orbit-2.0/orbit/orb-core/orbit-small.h \ + /usr/include/orbit-2.0/orbit/poa/poa.h \ + /usr/include/orbit-2.0/orbit/poa/poa-defs.h \ + /usr/include/orbit-2.0/orbit/poa/poa-types.h \ + /usr/include/orbit-2.0/orbit/poa/orbit-adaptor.h \ + /usr/include/orbit-2.0/orbit/poa/portableserver-poa-type.h \ + /usr/include/orbit-2.0/orbit/poa/portableserver-current-type.h \ + /usr/include/orbit-2.0/orbit/dynamic/dynamic.h \ + /usr/include/orbit-2.0/orbit/dynamic/dynamic-defs.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_GenericFactory.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Activation_types.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-version.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-activate.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-server-info.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-init.h \ + /usr/include/popt.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-shlib.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-register.h \ + /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-async.h \ + /usr/include/libbonobo-2.0/bonobo/Bonobo.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-arg.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-moniker.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-moniker-simple.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-context.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-exception.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-item-container.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-moniker-util.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-property-bag.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-event-source.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-listener.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-property-bag-client.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-generic-factory.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-main.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-stream.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-storage.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-stream-memory.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-stream-client.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-persist.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-persist-file.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-persist-stream.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-storage-memory.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-widget.h \ + /usr/include/gtk-2.0/gtk/gtkbin.h /usr/include/gtk-2.0/gdk/gdk.h \ + /usr/include/gtk-2.0/gdk/gdkcolor.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-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-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h \ + /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h \ + /usr/include/gtk-2.0/gdk/gdkwindow.h \ + /usr/include/gtk-2.0/gtk/gtkcontainer.h \ + /usr/include/gtk-2.0/gtk/gtkenums.h \ + /usr/include/gtk-2.0/gtk/gtkwidget.h \ + /usr/include/gtk-2.0/gtk/gtkaccelgroup.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/libbonoboui-2.0/bonobo/bonobo-control-frame.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-component.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-node.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-socket.h \ + /usr/include/gtk-2.0/gtk/gtksocket.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-control.h \ + /usr/include/gtk-2.0/gtk/gtkwindow.h /usr/include/gtk-2.0/gtk/gtkmenu.h \ + /usr/include/gtk-2.0/gtk/gtkmenushell.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-plug.h \ + /usr/include/gtk-2.0/gtk/gtkplug.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-container.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-engine.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-property-control.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-window.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-main.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-util.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-selector.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-selector-widget.h \ + /usr/include/gtk-2.0/gtk/gtk.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/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/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/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/atkvalue.h \ + /usr/include/gtk-2.0/gtk/gtkalignment.h \ + /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-2.0/gtk/gtkframe.h /usr/include/gtk-2.0/gtk/gtkarrow.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h /usr/include/gtk-2.0/gtk/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h \ + /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h \ + /usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ + /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-2.0/gtk/gtkdnd.h \ + /usr/include/gtk-2.0/gtk/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.h \ + /usr/include/gtk-2.0/gtk/gtkimcontext.h \ + /usr/include/gtk-2.0/gtk/gtkeventbox.h \ + /usr/include/gtk-2.0/gtk/gtkfilesel.h \ + /usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h \ + /usr/include/gtk-2.0/gtk/gtklayout.h /usr/include/gtk-2.0/gtk/gtklist.h \ + /usr/include/gtk-2.0/gtk/gtklistitem.h \ + /usr/include/gtk-2.0/gtk/gtkliststore.h \ + /usr/include/gtk-2.0/gtk/gtktreemodel.h \ + /usr/include/gtk-2.0/gtk/gtktreesortable.h \ + /usr/include/gtk-2.0/gtk/gtkmain.h \ + /usr/include/gtk-2.0/gtk/gtkmenubar.h \ + /usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkpreview.h \ + /usr/include/gtk-2.0/gtk/gtkprogress.h \ + /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h \ + /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-2.0/gtk/gtkstock.h \ + /usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.h \ + /usr/include/gtk-2.0/gtk/gtktextview.h \ + /usr/include/gtk-2.0/gtk/gtktipsquery.h \ + /usr/include/gtk-2.0/gtk/gtktoolbar.h \ + /usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h \ + /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-2.0/gtk/gtktreestore.h \ + /usr/include/gtk-2.0/gtk/gtkvbbox.h \ + /usr/include/gtk-2.0/gtk/gtkversion.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/libbonoboui-2.0/bonobo/bonobo-file-selector-util.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-item.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h /usr/include/alloca.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-component.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-zoomable-frame.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-toolbar.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-ui-type-builtins.h \ + /usr/include/libgnomeui-2.0/gnome.h \ + /usr/include/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + callbacks.h /usr/include/fcntl.h /usr/include/bits/fcntl.h \ + /usr/include/expect.h /usr/include/setjmp.h /usr/include/bits/setjmp.h \ + /usr/include/expect_comm.h /usr/include/sys/wait.h \ + /usr/include/signal.h /usr/include/bits/signum.h \ + /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/asm/sigcontext.h \ + /usr/include/linux/compiler.h /usr/include/linux/compiler-gcc3.h \ + /usr/include/linux/compiler-gcc.h /usr/include/bits/sigstack.h \ + /usr/include/bits/sigthread.h /usr/include/sys/resource.h \ + /usr/include/bits/resource.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/gconf/2/gconf/gconf-client.h \ + /usr/include/gconf/2/gconf/gconf.h \ + /usr/include/gconf/2/gconf/gconf-schema.h \ + /usr/include/gconf/2/gconf/gconf-value.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-engine.h \ + /usr/include/gconf/2/gconf/gconf-enum-types.h \ + /usr/include/gconf/2/gconf/gconf-listeners.h \ + /usr/include/gconf/2/gconf/gconf-changeset.h interface.h support.h diff --git a/projects/gvpndialer/trunk/src/.deps/main.P b/projects/gvpndialer/trunk/src/.deps/main.P new file mode 100644 index 0000000..eff1765 --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/main.P @@ -0,0 +1,815 @@ +main.o: main.c ../config.h /usr/include/libgnomeui-2.0/gnome.h \ + /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ + /usr/include/gtk-2.0/gdk/gdkcolor.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-lib/i586-mandrake-linux-gnu/3.3.2/include/stddef.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/syslimits.h \ + /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h \ + /usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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-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-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h \ + /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h \ + /usr/include/gtk-2.0/gdk/gdkwindow.h \ + /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ + /usr/include/gtk-2.0/gtk/gtkenums.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/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/gtkwindow.h /usr/include/gtk-2.0/gtk/gtkbin.h \ + /usr/include/gtk-2.0/gtk/gtkcontainer.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/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/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/atkvalue.h \ + /usr/include/gtk-2.0/gtk/gtkalignment.h \ + /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-2.0/gtk/gtkframe.h /usr/include/gtk-2.0/gtk/gtkarrow.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h /usr/include/gtk-2.0/gtk/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h \ + /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h \ + /usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ + /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-2.0/gtk/gtkdnd.h \ + /usr/include/gtk-2.0/gtk/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.h \ + /usr/include/gtk-2.0/gtk/gtkimcontext.h \ + /usr/include/gtk-2.0/gtk/gtkeventbox.h \ + /usr/include/gtk-2.0/gtk/gtkfilesel.h \ + /usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h \ + /usr/include/gtk-2.0/gtk/gtklayout.h /usr/include/gtk-2.0/gtk/gtklist.h \ + /usr/include/gtk-2.0/gtk/gtklistitem.h \ + /usr/include/gtk-2.0/gtk/gtkliststore.h \ + /usr/include/gtk-2.0/gtk/gtktreemodel.h \ + /usr/include/gtk-2.0/gtk/gtktreesortable.h \ + /usr/include/gtk-2.0/gtk/gtkmain.h \ + /usr/include/gtk-2.0/gtk/gtkmenubar.h \ + /usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkprogress.h \ + /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h \ + /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-2.0/gtk/gtkstock.h \ + /usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.h \ + /usr/include/gtk-2.0/gtk/gtktextview.h \ + /usr/include/gtk-2.0/gtk/gtktipsquery.h \ + /usr/include/gtk-2.0/gtk/gtktoolbar.h \ + /usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h \ + /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-2.0/gtk/gtktreestore.h \ + /usr/include/gtk-2.0/gtk/gtkvbbox.h \ + /usr/include/gtk-2.0/gtk/gtkversion.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/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/popt.h \ + /usr/include/stdio.h /usr/include/bits/types.h \ + /usr/include/bits/wordsize.h /usr/include/bits/typesizes.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/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h /usr/include/time.h \ + /usr/include/bits/time.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h /usr/include/stdlib.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/bits/sched.h /usr/include/alloca.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + interface.h support.h /usr/include/gconf/2/gconf/gconf-client.h \ + /usr/include/gconf/2/gconf/gconf.h \ + /usr/include/gconf/2/gconf/gconf-schema.h \ + /usr/include/gconf/2/gconf/gconf-value.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-engine.h \ + /usr/include/gconf/2/gconf/gconf-enum-types.h \ + /usr/include/gconf/2/gconf/gconf-listeners.h \ + /usr/include/gconf/2/gconf/gconf-changeset.h +main.c : +../config.h : +/usr/include/libgnomeui-2.0/gnome.h : +/usr/include/gtk-2.0/gtk/gtk.h : +/usr/include/gtk-2.0/gdk/gdk.h : +/usr/include/gtk-2.0/gdk/gdkcolor.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-lib/i586-mandrake-linux-gnu/3.3.2/include/stddef.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/syslimits.h : +/usr/include/limits.h : +/usr/include/features.h : +/usr/include/sys/cdefs.h : +/usr/include/gnu/stubs.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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h : +/usr/include/glib-2.0/glib/gmessages.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h : +/usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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-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-layout.h : +/usr/include/pango-1.0/pango/pango-glyph-item.h : +/usr/include/pango-1.0/pango/pango-tabs.h : +/usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h : +/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h : +/usr/include/gtk-2.0/gdk/gdkwindow.h : +/usr/include/gtk-2.0/gtk/gtkaccelgroup.h : +/usr/include/gtk-2.0/gtk/gtkenums.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/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/gtkwindow.h : +/usr/include/gtk-2.0/gtk/gtkbin.h : +/usr/include/gtk-2.0/gtk/gtkcontainer.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/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/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/atkvalue.h : +/usr/include/gtk-2.0/gtk/gtkalignment.h : +/usr/include/gtk-2.0/gtk/gtkaspectframe.h : +/usr/include/gtk-2.0/gtk/gtkframe.h : +/usr/include/gtk-2.0/gtk/gtkarrow.h : +/usr/include/gtk-2.0/gtk/gtkbindings.h : +/usr/include/gtk-2.0/gtk/gtkbox.h : +/usr/include/gtk-2.0/gtk/gtkbbox.h : +/usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h : +/usr/include/gtk-2.0/gtk/gtkcelleditable.h : +/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h : +/usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h : +/usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h : +/usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h : +/usr/include/gtk-2.0/gtk/gtkcurve.h : +/usr/include/gtk-2.0/gtk/gtkdrawingarea.h : +/usr/include/gtk-2.0/gtk/gtkdnd.h : +/usr/include/gtk-2.0/gtk/gtkeditable.h : +/usr/include/gtk-2.0/gtk/gtkentry.h : +/usr/include/gtk-2.0/gtk/gtkimcontext.h : +/usr/include/gtk-2.0/gtk/gtkeventbox.h : +/usr/include/gtk-2.0/gtk/gtkfilesel.h : +/usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h : +/usr/include/gtk-2.0/gtk/gtklayout.h : +/usr/include/gtk-2.0/gtk/gtklist.h : +/usr/include/gtk-2.0/gtk/gtklistitem.h : +/usr/include/gtk-2.0/gtk/gtkliststore.h : +/usr/include/gtk-2.0/gtk/gtktreemodel.h : +/usr/include/gtk-2.0/gtk/gtktreesortable.h : +/usr/include/gtk-2.0/gtk/gtkmain.h : +/usr/include/gtk-2.0/gtk/gtkmenubar.h : +/usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkprogress.h : +/usr/include/gtk-2.0/gtk/gtkprogressbar.h : +/usr/include/gtk-2.0/gtk/gtkradiobutton.h : +/usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h : +/usr/include/gtk-2.0/gtk/gtkspinbutton.h : +/usr/include/gtk-2.0/gtk/gtkstock.h : +/usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h : +/usr/include/gtk-2.0/gtk/gtktextiter.h : +/usr/include/gtk-2.0/gtk/gtktextchild.h : +/usr/include/gtk-2.0/gtk/gtktextmark.h : +/usr/include/gtk-2.0/gtk/gtktextview.h : +/usr/include/gtk-2.0/gtk/gtktipsquery.h : +/usr/include/gtk-2.0/gtk/gtktoolbar.h : +/usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h : +/usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h : +/usr/include/gtk-2.0/gtk/gtktreestore.h : +/usr/include/gtk-2.0/gtk/gtkvbbox.h : +/usr/include/gtk-2.0/gtk/gtkversion.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/libgnome-2.0/libgnome/libgnome.h : +/usr/include/libgnome-2.0/libgnome/gnome-program.h : +/usr/include/popt.h : +/usr/include/stdio.h : +/usr/include/bits/types.h : +/usr/include/bits/wordsize.h : +/usr/include/bits/typesizes.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/include/errno.h : +/usr/include/bits/errno.h : +/usr/include/linux/errno.h : +/usr/include/asm/errno.h : +/usr/include/asm-generic/errno.h : +/usr/include/asm-generic/errno-base.h : +/usr/include/libgnome-2.0/libgnome/gnome-i18n.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h : +/usr/include/libintl.h : +/usr/include/locale.h : +/usr/include/bits/locale.h : +/usr/include/libgnome-2.0/libgnome/gnome-config.h : +/usr/include/libgnome-2.0/libgnome/gnome-init.h : +/usr/include/libgnome-2.0/libgnome/gnome-gconf.h : +/usr/include/libgnome-2.0/libgnome/gnome-help.h : +/usr/include/libgnome-2.0/libgnome/gnome-macros.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-macros.h : +/usr/include/libgnome-2.0/libgnome/gnome-triggers.h : +/usr/include/libgnome-2.0/libgnome/gnome-sound.h : +/usr/include/libgnome-2.0/libgnome/gnome-score.h : +/usr/include/time.h : +/usr/include/bits/time.h : +/usr/include/libgnome-2.0/libgnome/gnome-exec.h : +/usr/include/libgnome-2.0/libgnome/gnome-util.h : +/usr/include/stdlib.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/bits/sched.h : +/usr/include/alloca.h : +/usr/include/libgnome-2.0/libgnome/gnome-url.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h : +/usr/include/libart-2.0/libart_lgpl/art_misc.h : +/usr/include/libart-2.0/libart_lgpl/art_config.h : +/usr/include/libart-2.0/libart_lgpl/art_rect.h : +/usr/include/libart-2.0/libart_lgpl/art_svp.h : +/usr/include/libart-2.0/libart_lgpl/art_point.h : +/usr/include/libart-2.0/libart_lgpl/art_uta.h : +/usr/include/libart-2.0/libart_lgpl/art_affine.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h : +/usr/include/libart-2.0/libart_lgpl/art_bpath.h : +/usr/include/libart-2.0/libart_lgpl/art_pathcode.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h : +/usr/include/libart-2.0/libart_lgpl/art_vpath.h : +/usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h : +/usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h : +/usr/include/gtk-2.0/gdk/gdkkeysyms.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h : +/usr/include/sys/stat.h : +/usr/include/bits/stat.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h : +/usr/include/unistd.h : +/usr/include/bits/posix_opt.h : +/usr/include/bits/confname.h : +/usr/include/getopt.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h : +/usr/include/string.h : +/usr/include/bits/string.h : +/usr/include/bits/string2.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h : +interface.h : +support.h : +/usr/include/gconf/2/gconf/gconf-client.h : +/usr/include/gconf/2/gconf/gconf.h : +/usr/include/gconf/2/gconf/gconf-schema.h : +/usr/include/gconf/2/gconf/gconf-value.h : +/usr/include/gconf/2/gconf/gconf-error.h : +/usr/include/gconf/2/gconf/gconf-engine.h : +/usr/include/gconf/2/gconf/gconf-enum-types.h : +/usr/include/gconf/2/gconf/gconf-listeners.h : +/usr/include/gconf/2/gconf/gconf-changeset.h : diff --git a/projects/gvpndialer/trunk/src/.deps/main.Po b/projects/gvpndialer/trunk/src/.deps/main.Po new file mode 100644 index 0000000..92d12c9 --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/main.Po @@ -0,0 +1,1455 @@ +main.o main.o: main.c ../config.h /usr/include/libgnomeui-2.0/gnome.h \ + /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ + /usr/include/gtk-2.0/gdk/gdkcolor.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/i586-mandrake-linux-gnu/3.4.3/include/stddef.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/limits.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/syslimits.h \ + /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.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/i586-mandrake-linux-gnu/3.4.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/gatomic.h \ + /usr/include/glib-2.0/glib/gbacktrace.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/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/gutils.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/stdarg.h \ + /usr/include/glib-2.0/glib/gkeyfile.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/gscanner.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-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-script.h \ + /usr/include/pango-1.0/pango/pango-enum-types.h \ + /usr/include/pango-1.0/pango/pango-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/include/pango-1.0/pango/pango-renderer.h \ + /usr/lib/gtk-2.0/include/gdkconfig.h \ + /usr/include/gtk-2.0/gdk/gdkcursor.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-io.h /usr/include/stdio.h \ + /usr/include/bits/types.h /usr/include/bits/wordsize.h \ + /usr/include/bits/typesizes.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/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/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/gdkrgb.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/gdkpixbuf.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/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/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/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.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/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/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/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/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/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.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/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/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/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/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/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/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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.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/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/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/popt.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h /usr/include/time.h \ + /usr/include/bits/time.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h /usr/include/stdlib.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/bits/sched.h /usr/include/alloca.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/multiarch-dispatch.h \ + /usr/include/multiarch-i386-linux/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/multiarch-i386-linux/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/confname.h /usr/include/getopt.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-help.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-url.h interface.h \ + support.h eggtrayicon.h /usr/include/gtk-2.0/gdk/gdkx.h \ + /usr/include/gtk-2.0/gdk/gdkprivate.h /usr/X11R6/include/X11/Xlib.h \ + /usr/X11R6/include/X11/X.h /usr/X11R6/include/X11/Xfuncproto.h \ + /usr/X11R6/include/X11/Xosdefs.h /usr/X11R6/include/X11/Xutil.h \ + /usr/include/gconf/2/gconf/gconf-client.h \ + /usr/include/gconf/2/gconf/gconf.h \ + /usr/include/gconf/2/gconf/gconf-schema.h \ + /usr/include/gconf/2/gconf/gconf-value.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-engine.h \ + /usr/include/gconf/2/gconf/gconf-error.h \ + /usr/include/gconf/2/gconf/gconf-enum-types.h \ + /usr/include/gconf/2/gconf/gconf-listeners.h \ + /usr/include/gconf/2/gconf/gconf-changeset.h + +../config.h: + +/usr/include/libgnomeui-2.0/gnome.h: + +/usr/include/gtk-2.0/gtk/gtk.h: + +/usr/include/gtk-2.0/gdk/gdk.h: + +/usr/include/gtk-2.0/gdk/gdkcolor.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/i586-mandrake-linux-gnu/3.4.3/include/stddef.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/limits.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/syslimits.h: + +/usr/include/limits.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/gnu/stubs.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/i586-mandrake-linux-gnu/3.4.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/gatomic.h: + +/usr/include/glib-2.0/glib/gbacktrace.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/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/gutils.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/stdarg.h: + +/usr/include/glib-2.0/glib/gkeyfile.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/gscanner.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-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-script.h: + +/usr/include/pango-1.0/pango/pango-enum-types.h: + +/usr/include/pango-1.0/pango/pango-layout.h: + +/usr/include/pango-1.0/pango/pango-glyph-item.h: + +/usr/include/pango-1.0/pango/pango-tabs.h: + +/usr/include/pango-1.0/pango/pango-renderer.h: + +/usr/lib/gtk-2.0/include/gdkconfig.h: + +/usr/include/gtk-2.0/gdk/gdkcursor.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-io.h: + +/usr/include/stdio.h: + +/usr/include/bits/types.h: + +/usr/include/bits/wordsize.h: + +/usr/include/bits/typesizes.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/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/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/gdkrgb.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/gdkpixbuf.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/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/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/gtkbbox.h: + +/usr/include/gtk-2.0/gtk/gtkbox.h: + +/usr/include/gtk-2.0/gtk/gtkbindings.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/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/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/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/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/gtkeditable.h: + +/usr/include/gtk-2.0/gtk/gtkentry.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/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/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/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/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/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/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/gtktexttag.h: + +/usr/include/gtk-2.0/gtk/gtktextiter.h: + +/usr/include/gtk-2.0/gtk/gtktextchild.h: + +/usr/include/gtk-2.0/gtk/gtktextmark.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/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/libgnome-2.0/libgnome/libgnome.h: + +/usr/include/libgnome-2.0/libgnome/gnome-program.h: + +/usr/include/popt.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/libgnome-2.0/libgnome/gnome-i18n.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h: + +/usr/include/libintl.h: + +/usr/include/locale.h: + +/usr/include/bits/locale.h: + +/usr/include/libgnome-2.0/libgnome/gnome-config.h: + +/usr/include/libgnome-2.0/libgnome/gnome-init.h: + +/usr/include/libgnome-2.0/libgnome/gnome-gconf.h: + +/usr/include/libgnome-2.0/libgnome/gnome-help.h: + +/usr/include/libgnome-2.0/libgnome/gnome-macros.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-macros.h: + +/usr/include/libgnome-2.0/libgnome/gnome-triggers.h: + +/usr/include/libgnome-2.0/libgnome/gnome-sound.h: + +/usr/include/libgnome-2.0/libgnome/gnome-score.h: + +/usr/include/time.h: + +/usr/include/bits/time.h: + +/usr/include/libgnome-2.0/libgnome/gnome-exec.h: + +/usr/include/libgnome-2.0/libgnome/gnome-util.h: + +/usr/include/stdlib.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/bits/sched.h: + +/usr/include/alloca.h: + +/usr/include/libgnome-2.0/libgnome/gnome-url.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h: + +/usr/include/libart-2.0/libart_lgpl/art_misc.h: + +/usr/include/libart-2.0/libart_lgpl/art_config.h: + +/usr/include/multiarch-dispatch.h: + +/usr/include/multiarch-i386-linux/libart-2.0/libart_lgpl/art_config.h: + +/usr/include/libart-2.0/libart_lgpl/art_rect.h: + +/usr/include/libart-2.0/libart_lgpl/art_svp.h: + +/usr/include/libart-2.0/libart_lgpl/art_point.h: + +/usr/include/libart-2.0/libart_lgpl/art_uta.h: + +/usr/include/libart-2.0/libart_lgpl/art_affine.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h: + +/usr/include/libart-2.0/libart_lgpl/art_bpath.h: + +/usr/include/libart-2.0/libart_lgpl/art_pathcode.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h: + +/usr/include/libart-2.0/libart_lgpl/art_vpath.h: + +/usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h: + +/usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h: + +/usr/include/gtk-2.0/gdk/gdkkeysyms.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h: + +/usr/include/multiarch-i386-linux/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h: + +/usr/include/sys/stat.h: + +/usr/include/bits/stat.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h: + +/usr/include/string.h: + +/usr/include/bits/string.h: + +/usr/include/bits/string2.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-help.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-url.h: + +interface.h: + +support.h: + +eggtrayicon.h: + +/usr/include/gtk-2.0/gdk/gdkx.h: + +/usr/include/gtk-2.0/gdk/gdkprivate.h: + +/usr/X11R6/include/X11/Xlib.h: + +/usr/X11R6/include/X11/X.h: + +/usr/X11R6/include/X11/Xfuncproto.h: + +/usr/X11R6/include/X11/Xosdefs.h: + +/usr/X11R6/include/X11/Xutil.h: + +/usr/include/gconf/2/gconf/gconf-client.h: + +/usr/include/gconf/2/gconf/gconf.h: + +/usr/include/gconf/2/gconf/gconf-schema.h: + +/usr/include/gconf/2/gconf/gconf-value.h: + +/usr/include/gconf/2/gconf/gconf-error.h: + +/usr/include/gconf/2/gconf/gconf-engine.h: + +/usr/include/gconf/2/gconf/gconf-error.h: + +/usr/include/gconf/2/gconf/gconf-enum-types.h: + +/usr/include/gconf/2/gconf/gconf-listeners.h: + +/usr/include/gconf/2/gconf/gconf-changeset.h: diff --git a/projects/gvpndialer/trunk/src/.deps/support.P b/projects/gvpndialer/trunk/src/.deps/support.P new file mode 100644 index 0000000..1b7bfb9 --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/support.P @@ -0,0 +1,795 @@ +support.o: support.c ../config.h /usr/include/sys/types.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.h /usr/include/bits/types.h \ + /usr/include/bits/wordsize.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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/bits/sched.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h /usr/include/stdlib.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/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/bits/stdio.h /usr/include/libgnomeui-2.0/gnome.h \ + /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ + /usr/include/gtk-2.0/gdk/gdkcolor.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-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h \ + /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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-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-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h \ + /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h \ + /usr/include/gtk-2.0/gdk/gdkwindow.h \ + /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ + /usr/include/gtk-2.0/gtk/gtkenums.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/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/gtkwindow.h /usr/include/gtk-2.0/gtk/gtkbin.h \ + /usr/include/gtk-2.0/gtk/gtkcontainer.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/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/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/atkvalue.h \ + /usr/include/gtk-2.0/gtk/gtkalignment.h \ + /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ + /usr/include/gtk-2.0/gtk/gtkframe.h /usr/include/gtk-2.0/gtk/gtkarrow.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h /usr/include/gtk-2.0/gtk/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h \ + /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ + /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ + /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h \ + /usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ + /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ + /usr/include/gtk-2.0/gtk/gtkdnd.h \ + /usr/include/gtk-2.0/gtk/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.h \ + /usr/include/gtk-2.0/gtk/gtkimcontext.h \ + /usr/include/gtk-2.0/gtk/gtkeventbox.h \ + /usr/include/gtk-2.0/gtk/gtkfilesel.h \ + /usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h \ + /usr/include/gtk-2.0/gtk/gtklayout.h /usr/include/gtk-2.0/gtk/gtklist.h \ + /usr/include/gtk-2.0/gtk/gtklistitem.h \ + /usr/include/gtk-2.0/gtk/gtkliststore.h \ + /usr/include/gtk-2.0/gtk/gtktreemodel.h \ + /usr/include/gtk-2.0/gtk/gtktreesortable.h \ + /usr/include/gtk-2.0/gtk/gtkmain.h \ + /usr/include/gtk-2.0/gtk/gtkmenubar.h \ + /usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkprogress.h \ + /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ + /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ + /usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h \ + /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ + /usr/include/gtk-2.0/gtk/gtkstock.h \ + /usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.h \ + /usr/include/gtk-2.0/gtk/gtktextview.h \ + /usr/include/gtk-2.0/gtk/gtktipsquery.h \ + /usr/include/gtk-2.0/gtk/gtktoolbar.h \ + /usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h \ + /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ + /usr/include/gtk-2.0/gtk/gtktreestore.h \ + /usr/include/gtk-2.0/gtk/gtkvbbox.h \ + /usr/include/gtk-2.0/gtk/gtkversion.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/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/popt.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h /usr/include/alloca.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + support.h +support.c : +../config.h : +/usr/include/sys/types.h : +/usr/include/features.h : +/usr/include/sys/cdefs.h : +/usr/include/gnu/stubs.h : +/usr/include/bits/types.h : +/usr/include/bits/wordsize.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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/bits/sched.h : +/usr/include/sys/stat.h : +/usr/include/bits/stat.h : +/usr/include/unistd.h : +/usr/include/bits/posix_opt.h : +/usr/include/bits/confname.h : +/usr/include/getopt.h : +/usr/include/string.h : +/usr/include/bits/string.h : +/usr/include/bits/string2.h : +/usr/include/stdlib.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/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/include/stdarg.h : +/usr/include/bits/stdio_lim.h : +/usr/include/bits/sys_errlist.h : +/usr/include/bits/stdio.h : +/usr/include/libgnomeui-2.0/gnome.h : +/usr/include/gtk-2.0/gtk/gtk.h : +/usr/include/gtk-2.0/gdk/gdk.h : +/usr/include/gtk-2.0/gdk/gdkcolor.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-lib/i586-mandrake-linux-gnu/3.3.2/include/limits.h : +/usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/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-lib/i586-mandrake-linux-gnu/3.3.2/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/gbacktrace.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/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/gmarkup.h : +/usr/include/glib-2.0/glib/gmessages.h : +/usr/include/glib-2.0/glib/gnode.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/gscanner.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/glib-2.0/glib/gutils.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-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-layout.h : +/usr/include/pango-1.0/pango/pango-glyph-item.h : +/usr/include/pango-1.0/pango/pango-tabs.h : +/usr/lib/gtk-2.0/include/gdkconfig.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/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-loader.h : +/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.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/gdkpixbuf.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/gdkvisual.h : +/usr/include/gtk-2.0/gdk/gdkwindow.h : +/usr/include/gtk-2.0/gtk/gtkaccelgroup.h : +/usr/include/gtk-2.0/gtk/gtkenums.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/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/gtkwindow.h : +/usr/include/gtk-2.0/gtk/gtkbin.h : +/usr/include/gtk-2.0/gtk/gtkcontainer.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/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/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/atkvalue.h : +/usr/include/gtk-2.0/gtk/gtkalignment.h : +/usr/include/gtk-2.0/gtk/gtkaspectframe.h : +/usr/include/gtk-2.0/gtk/gtkframe.h : +/usr/include/gtk-2.0/gtk/gtkarrow.h : +/usr/include/gtk-2.0/gtk/gtkbindings.h : +/usr/include/gtk-2.0/gtk/gtkbox.h : +/usr/include/gtk-2.0/gtk/gtkbbox.h : +/usr/include/gtk-2.0/gtk/gtkbutton.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/gtkcellrenderer.h : +/usr/include/gtk-2.0/gtk/gtkcelleditable.h : +/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h : +/usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h : +/usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.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/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/gtkcolorsel.h : +/usr/include/gtk-2.0/gtk/gtkdialog.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/gtkctree.h : +/usr/include/gtk-2.0/gtk/gtkcurve.h : +/usr/include/gtk-2.0/gtk/gtkdrawingarea.h : +/usr/include/gtk-2.0/gtk/gtkdnd.h : +/usr/include/gtk-2.0/gtk/gtkeditable.h : +/usr/include/gtk-2.0/gtk/gtkentry.h : +/usr/include/gtk-2.0/gtk/gtkimcontext.h : +/usr/include/gtk-2.0/gtk/gtkeventbox.h : +/usr/include/gtk-2.0/gtk/gtkfilesel.h : +/usr/include/gtk-2.0/gtk/gtkfixed.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/gtkimage.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/gtkitemfactory.h : +/usr/include/gtk-2.0/gtk/gtklayout.h : +/usr/include/gtk-2.0/gtk/gtklist.h : +/usr/include/gtk-2.0/gtk/gtklistitem.h : +/usr/include/gtk-2.0/gtk/gtkliststore.h : +/usr/include/gtk-2.0/gtk/gtktreemodel.h : +/usr/include/gtk-2.0/gtk/gtktreesortable.h : +/usr/include/gtk-2.0/gtk/gtkmain.h : +/usr/include/gtk-2.0/gtk/gtkmenubar.h : +/usr/include/gtk-2.0/gtk/gtkmessagedialog.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/gtkprogress.h : +/usr/include/gtk-2.0/gtk/gtkprogressbar.h : +/usr/include/gtk-2.0/gtk/gtkradiobutton.h : +/usr/include/gtk-2.0/gtk/gtkradiomenuitem.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/gtksizegroup.h : +/usr/include/gtk-2.0/gtk/gtkspinbutton.h : +/usr/include/gtk-2.0/gtk/gtkstock.h : +/usr/include/gtk-2.0/gtk/gtkstatusbar.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/gtktexttag.h : +/usr/include/gtk-2.0/gtk/gtktextiter.h : +/usr/include/gtk-2.0/gtk/gtktextchild.h : +/usr/include/gtk-2.0/gtk/gtktextmark.h : +/usr/include/gtk-2.0/gtk/gtktextview.h : +/usr/include/gtk-2.0/gtk/gtktipsquery.h : +/usr/include/gtk-2.0/gtk/gtktoolbar.h : +/usr/include/gtk-2.0/gtk/gtktooltips.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/gtktreeview.h : +/usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h : +/usr/include/gtk-2.0/gtk/gtktreestore.h : +/usr/include/gtk-2.0/gtk/gtkvbbox.h : +/usr/include/gtk-2.0/gtk/gtkversion.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/libgnome-2.0/libgnome/libgnome.h : +/usr/include/libgnome-2.0/libgnome/gnome-program.h : +/usr/include/popt.h : +/usr/include/errno.h : +/usr/include/bits/errno.h : +/usr/include/linux/errno.h : +/usr/include/asm/errno.h : +/usr/include/asm-generic/errno.h : +/usr/include/asm-generic/errno-base.h : +/usr/include/libgnome-2.0/libgnome/gnome-i18n.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h : +/usr/include/libintl.h : +/usr/include/locale.h : +/usr/include/bits/locale.h : +/usr/include/libgnome-2.0/libgnome/gnome-config.h : +/usr/include/libgnome-2.0/libgnome/gnome-init.h : +/usr/include/libgnome-2.0/libgnome/gnome-gconf.h : +/usr/include/libgnome-2.0/libgnome/gnome-help.h : +/usr/include/libgnome-2.0/libgnome/gnome-macros.h : +/usr/include/libbonobo-2.0/bonobo/bonobo-macros.h : +/usr/include/libgnome-2.0/libgnome/gnome-triggers.h : +/usr/include/libgnome-2.0/libgnome/gnome-sound.h : +/usr/include/libgnome-2.0/libgnome/gnome-score.h : +/usr/include/libgnome-2.0/libgnome/gnome-exec.h : +/usr/include/libgnome-2.0/libgnome/gnome-util.h : +/usr/include/alloca.h : +/usr/include/libgnome-2.0/libgnome/gnome-url.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h : +/usr/include/libart-2.0/libart_lgpl/art_misc.h : +/usr/include/libart-2.0/libart_lgpl/art_config.h : +/usr/include/libart-2.0/libart_lgpl/art_rect.h : +/usr/include/libart-2.0/libart_lgpl/art_svp.h : +/usr/include/libart-2.0/libart_lgpl/art_point.h : +/usr/include/libart-2.0/libart_lgpl/art_uta.h : +/usr/include/libart-2.0/libart_lgpl/art_affine.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h : +/usr/include/libart-2.0/libart_lgpl/art_bpath.h : +/usr/include/libart-2.0/libart_lgpl/art_pathcode.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h : +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h : +/usr/include/libart-2.0/libart_lgpl/art_vpath.h : +/usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h : +/usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h : +/usr/include/gtk-2.0/gdk/gdkkeysyms.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h : +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h : +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h : +/usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h : +support.h : diff --git a/projects/gvpndialer/trunk/src/.deps/support.Po b/projects/gvpndialer/trunk/src/.deps/support.Po new file mode 100644 index 0000000..cc9eb10 --- /dev/null +++ b/projects/gvpndialer/trunk/src/.deps/support.Po @@ -0,0 +1,1402 @@ +support.o support.o: support.c ../config.h /usr/include/sys/types.h \ + /usr/include/features.h /usr/include/sys/cdefs.h \ + /usr/include/gnu/stubs.h /usr/include/bits/types.h \ + /usr/include/bits/wordsize.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.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/bits/sched.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ + /usr/include/getopt.h /usr/include/string.h /usr/include/bits/string.h \ + /usr/include/bits/string2.h /usr/include/stdlib.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/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/stdarg.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ + /usr/include/bits/stdio.h /usr/include/libgnomeui-2.0/gnome.h \ + /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ + /usr/include/gtk-2.0/gdk/gdkcolor.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/i586-mandrake-linux-gnu/3.4.3/include/limits.h \ + /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.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/i586-mandrake-linux-gnu/3.4.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/gatomic.h \ + /usr/include/glib-2.0/glib/gbacktrace.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/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/gutils.h \ + /usr/include/glib-2.0/glib/gkeyfile.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/gscanner.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-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-script.h \ + /usr/include/pango-1.0/pango/pango-enum-types.h \ + /usr/include/pango-1.0/pango/pango-layout.h \ + /usr/include/pango-1.0/pango/pango-glyph-item.h \ + /usr/include/pango-1.0/pango/pango-tabs.h \ + /usr/include/pango-1.0/pango/pango-renderer.h \ + /usr/lib/gtk-2.0/include/gdkconfig.h \ + /usr/include/gtk-2.0/gdk/gdkcursor.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-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/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/gdkrgb.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/gdkpixbuf.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/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/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/gtkbbox.h \ + /usr/include/gtk-2.0/gtk/gtkbox.h \ + /usr/include/gtk-2.0/gtk/gtkbindings.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/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/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/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/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/gtkeditable.h \ + /usr/include/gtk-2.0/gtk/gtkentry.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/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/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/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/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/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/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/gtktexttag.h \ + /usr/include/gtk-2.0/gtk/gtktextiter.h \ + /usr/include/gtk-2.0/gtk/gtktextchild.h \ + /usr/include/gtk-2.0/gtk/gtktextmark.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/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/libgnome-2.0/libgnome/libgnome.h \ + /usr/include/libgnome-2.0/libgnome/gnome-program.h /usr/include/popt.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/libgnome-2.0/libgnome/gnome-i18n.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h /usr/include/libintl.h \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/include/libgnome-2.0/libgnome/gnome-config.h \ + /usr/include/libgnome-2.0/libgnome/gnome-init.h \ + /usr/include/libgnome-2.0/libgnome/gnome-gconf.h \ + /usr/include/libgnome-2.0/libgnome/gnome-help.h \ + /usr/include/libgnome-2.0/libgnome/gnome-macros.h \ + /usr/include/libbonobo-2.0/bonobo/bonobo-macros.h \ + /usr/include/libgnome-2.0/libgnome/gnome-triggers.h \ + /usr/include/libgnome-2.0/libgnome/gnome-sound.h \ + /usr/include/libgnome-2.0/libgnome/gnome-score.h \ + /usr/include/libgnome-2.0/libgnome/gnome-exec.h \ + /usr/include/libgnome-2.0/libgnome/gnome-util.h /usr/include/alloca.h \ + /usr/include/libgnome-2.0/libgnome/gnome-url.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h \ + /usr/include/libart-2.0/libart_lgpl/art_misc.h \ + /usr/include/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/multiarch-dispatch.h \ + /usr/include/multiarch-i386-linux/libart-2.0/libart_lgpl/art_config.h \ + /usr/include/libart-2.0/libart_lgpl/art_rect.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp.h \ + /usr/include/libart-2.0/libart_lgpl/art_point.h \ + /usr/include/libart-2.0/libart_lgpl/art_uta.h \ + /usr/include/libart-2.0/libart_lgpl/art_affine.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h \ + /usr/include/libart-2.0/libart_lgpl/art_bpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_pathcode.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h \ + /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h \ + /usr/include/libart-2.0/libart_lgpl/art_vpath.h \ + /usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h \ + /usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h \ + /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h \ + /usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/multiarch-i386-linux/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h \ + /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-help.h \ + /usr/include/libgnomeui-2.0/libgnomeui/gnome-url.h support.h + +../config.h: + +/usr/include/sys/types.h: + +/usr/include/features.h: + +/usr/include/sys/cdefs.h: + +/usr/include/gnu/stubs.h: + +/usr/include/bits/types.h: + +/usr/include/bits/wordsize.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.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/bits/sched.h: + +/usr/include/sys/stat.h: + +/usr/include/bits/stat.h: + +/usr/include/unistd.h: + +/usr/include/bits/posix_opt.h: + +/usr/include/bits/confname.h: + +/usr/include/getopt.h: + +/usr/include/string.h: + +/usr/include/bits/string.h: + +/usr/include/bits/string2.h: + +/usr/include/stdlib.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/lib/gcc/i586-mandrake-linux-gnu/3.4.3/include/stdarg.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/sys_errlist.h: + +/usr/include/bits/stdio.h: + +/usr/include/libgnomeui-2.0/gnome.h: + +/usr/include/gtk-2.0/gtk/gtk.h: + +/usr/include/gtk-2.0/gdk/gdk.h: + +/usr/include/gtk-2.0/gdk/gdkcolor.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/i586-mandrake-linux-gnu/3.4.3/include/limits.h: + +/usr/lib/gcc/i586-mandrake-linux-gnu/3.4.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/i586-mandrake-linux-gnu/3.4.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/gatomic.h: + +/usr/include/glib-2.0/glib/gbacktrace.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/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/gutils.h: + +/usr/include/glib-2.0/glib/gkeyfile.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/gscanner.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-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-script.h: + +/usr/include/pango-1.0/pango/pango-enum-types.h: + +/usr/include/pango-1.0/pango/pango-layout.h: + +/usr/include/pango-1.0/pango/pango-glyph-item.h: + +/usr/include/pango-1.0/pango/pango-tabs.h: + +/usr/include/pango-1.0/pango/pango-renderer.h: + +/usr/lib/gtk-2.0/include/gdkconfig.h: + +/usr/include/gtk-2.0/gdk/gdkcursor.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-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/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/gdkrgb.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/gdkpixbuf.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/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/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/gtkbbox.h: + +/usr/include/gtk-2.0/gtk/gtkbox.h: + +/usr/include/gtk-2.0/gtk/gtkbindings.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/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/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/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/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/gtkeditable.h: + +/usr/include/gtk-2.0/gtk/gtkentry.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/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/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/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/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/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/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/gtktexttag.h: + +/usr/include/gtk-2.0/gtk/gtktextiter.h: + +/usr/include/gtk-2.0/gtk/gtktextchild.h: + +/usr/include/gtk-2.0/gtk/gtktextmark.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/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/libgnome-2.0/libgnome/libgnome.h: + +/usr/include/libgnome-2.0/libgnome/gnome-program.h: + +/usr/include/popt.h: + +/usr/include/errno.h: + +/usr/include/bits/errno.h: + +/usr/include/linux/errno.h: + +/usr/include/asm/errno.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/libgnome-2.0/libgnome/gnome-i18n.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-i18n.h: + +/usr/include/libintl.h: + +/usr/include/locale.h: + +/usr/include/bits/locale.h: + +/usr/include/libgnome-2.0/libgnome/gnome-config.h: + +/usr/include/libgnome-2.0/libgnome/gnome-init.h: + +/usr/include/libgnome-2.0/libgnome/gnome-gconf.h: + +/usr/include/libgnome-2.0/libgnome/gnome-help.h: + +/usr/include/libgnome-2.0/libgnome/gnome-macros.h: + +/usr/include/libbonobo-2.0/bonobo/bonobo-macros.h: + +/usr/include/libgnome-2.0/libgnome/gnome-triggers.h: + +/usr/include/libgnome-2.0/libgnome/gnome-sound.h: + +/usr/include/libgnome-2.0/libgnome/gnome-score.h: + +/usr/include/libgnome-2.0/libgnome/gnome-exec.h: + +/usr/include/libgnome-2.0/libgnome/gnome-util.h: + +/usr/include/alloca.h: + +/usr/include/libgnome-2.0/libgnome/gnome-url.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h: + +/usr/include/libart-2.0/libart_lgpl/art_misc.h: + +/usr/include/libart-2.0/libart_lgpl/art_config.h: + +/usr/include/multiarch-dispatch.h: + +/usr/include/multiarch-i386-linux/libart-2.0/libart_lgpl/art_config.h: + +/usr/include/libart-2.0/libart_lgpl/art_rect.h: + +/usr/include/libart-2.0/libart_lgpl/art_svp.h: + +/usr/include/libart-2.0/libart_lgpl/art_point.h: + +/usr/include/libart-2.0/libart_lgpl/art_uta.h: + +/usr/include/libart-2.0/libart_lgpl/art_affine.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h: + +/usr/include/libart-2.0/libart_lgpl/art_bpath.h: + +/usr/include/libart-2.0/libart_lgpl/art_pathcode.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h: + +/usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h: + +/usr/include/libart-2.0/libart_lgpl/art_vpath.h: + +/usr/include/libart-2.0/libart_lgpl/art_svp_vpath_stroke.h: + +/usr/include/libgnomeui-2.0/libgnomeui/libgnomeui.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h: + +/usr/include/gtk-2.0/gdk/gdkkeysyms.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-about.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-band.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-item.h: + +/usr/include/libbonoboui-2.0/bonobo/bonobo-dock-layout.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-types.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h: + +/usr/include/multiarch-i386-linux/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-size.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-result.h: + +/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-uri.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-scores.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-client.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-href.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-help.h: + +/usr/include/libgnomeui-2.0/libgnomeui/gnome-url.h: + +support.h: diff --git a/projects/gvpndialer/trunk/src/Makefile.am b/projects/gvpndialer/trunk/src/Makefile.am new file mode 100644 index 0000000..ba87d53 --- /dev/null +++ b/projects/gvpndialer/trunk/src/Makefile.am @@ -0,0 +1,18 @@ +## Process this file with automake to produce Makefile.in + +INCLUDES = \ + -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ + -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ + @PACKAGE_CFLAGS@ + +bin_PROGRAMS = gvpndialer + +gvpndialer_SOURCES = \ + main.c \ + support.c support.h \ + interface.c interface.h \ + callbacks.c callbacks.h \ + eggtrayicon.c eggtrayicon.h + +gvpndialer_LDADD = @PACKAGE_LIBS@ -lpcre -lutil + diff --git a/projects/gvpndialer/trunk/src/callbacks.c b/projects/gvpndialer/trunk/src/callbacks.c new file mode 100644 index 0000000..687bfe1 --- /dev/null +++ b/projects/gvpndialer/trunk/src/callbacks.c @@ -0,0 +1,1468 @@ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include "callbacks.h" +#include "interface.h" +#include "support.h" + + +int authentication_attempts; +int vpn_connection_active; +pid_t vpnclient_pid; + + +void +on_vpnclient_main_window_show (GtkWidget *widget, + gpointer user_data) +{ + + /* Initialize variables */ + + gchar *vpn_dir_path = "/etc/CiscoSystemsVPNClient/Profiles"; + gchar *vpnclient_path = "/usr/local/bin"; + GtkCombo *profile_entry = GTK_COMBO(lookup_widget(widget,"profile_entry")); + GnomeAppBar *statusbar = GNOME_APPBAR(lookup_widget(widget,"statusbar")); + gchar *vpn_default_status = "Status Message"; + gchar *configkey; + GConfClient *client; + + + /* Set default status message */ + gnome_appbar_set_default(statusbar,vpn_default_status); + /* initialize vpndirpath config entry. If exists use it else create it */ + client = gconf_client_get_default(); + configkey = "/apps/gnome-settings/gvpndialer/profiledir"; + if (gconf_client_get_string(client,configkey,NULL) == NULL ){ + gconf_client_set_string(client,configkey,vpn_dir_path,NULL); + }else{ + vpn_dir_path = gconf_client_get_string(client,configkey,NULL); + } + configkey = "/apps/gnome-settings/gvpndialer/vpnclientdir"; + if (gconf_client_get_string(client,configkey,NULL) == NULL){ + gconf_client_set_string(client,configkey,vpnclient_path,NULL); + }else { + vpnclient_path = gconf_client_get_string(client,configkey,NULL); + } + + /* load Profiles into Glist. If it update status bar */ + if ( !(getProfiles(vpn_dir_path,profile_entry))){ + gnome_appbar_push(statusbar,"Unable to load VPN Profiles"); + } + + /*unreference gconfclient..always */ + g_object_unref(client); + +} + + +gboolean +on_vpnclient_main_window_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data) +{ + + /* hide main window. if u want to close click quit */ + gtk_widget_hide(widget); +} + + +void +on_quit1_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + /* kill gvpn dialer */ + gtk_main_quit(); + +} + + +void +on_preferences1_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *preference_window; + GtkEntry *vpnclient_path_entry; + GtkEntry *vpn_profile_path_entry; GConfClient *client; + GtkEntry *vpnclient_default_user_entry; + GtkCheckButton *vpnclient_start_hidden_cb; + + client = gconf_client_get_default(); + + preference_window = create_preference_window(); + vpnclient_path_entry = GTK_ENTRY(lookup_widget(preference_window, + "vpnclient_path_entry")); + vpn_profile_path_entry = GTK_ENTRY(lookup_widget(preference_window, + "vpn_profile_path_entry")); + vpnclient_default_user_entry = GTK_ENTRY(lookup_widget(preference_window, + "vpnclient_default_user_entry")); + vpnclient_start_hidden_cb = GTK_CHECK_BUTTON(lookup_widget(preference_window, + "vpnclient_start_hidden_cb")); + + gtk_entry_set_text(vpn_profile_path_entry, + gconf_client_get_string(client, + "/apps/gnome-settings/gvpndialer/profiledir", + NULL)); + gtk_entry_set_text(vpnclient_path_entry, + gconf_client_get_string(client, + "/apps/gnome-settings/gvpndialer/vpnclientdir", + NULL)); + gtk_entry_set_text(vpnclient_default_user_entry, + gconf_client_get_string(client, + "/apps/gnome-settings/gvpndialer/defaultuser", + NULL)); + + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(vpnclient_start_hidden_cb), + gconf_client_get_bool(client, + "/apps/gnome-settings/gvpndialer/starthidden", + NULL)); + + gtk_widget_show(preference_window); + + g_object_unref(client); +} + +void +on_status2_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *status_window; + GtkWidget *mainwindow; + mainwindow = lookup_widget (GTK_WIDGET(menuitem),"vpnclient_main_window"); + status_window = GTK_WIDGET(g_object_get_data(G_OBJECT(mainwindow),"statuswindow")); + if ( vpn_connection_active == 1 ){ + gtk_widget_show(status_window); + updatestats(status_window); + sleep(1); + g_timeout_add_full(0,(guint)5000,updatestats,status_window,NULL); + } else { + if (! GTK_WIDGET_VISIBLE(mainwindow)){ + gtk_widget_show(mainwindow); + } + update_statusbar(mainwindow,"Status is show only when a VPN connection is active"); + } +} + + + +void +on_about1_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + + GtkWidget *about_window; + about_window = create_gvpn_dialer_about(); + gtk_widget_show(about_window); + +} + +/* What happens when you click the Connect Button */ + +void +on_execute_vpn_button_clicked (GtkButton *button, + gpointer user_data) +{ + + GtkWidget *login_window; + GtkWidget *main_window; + GtkWidget *grouppw_window; + GtkLabel *invalid_user_pass; + GtkLabel *grouppw_warning_label; + GtkEntry *username_entry; + GConfClient *client; + const gchar* username; + main_window = gtk_widget_get_toplevel(GTK_WIDGET(button)); + + /* initialize authentication attempts */ + authentication_attempts = 0; + + /* find the selected profile */ + GtkCombo *profile_entry_combobox = GTK_COMBO(lookup_widget(main_window,"profile_entry")); + const gchar *selected_profile = + gtk_entry_get_text (GTK_ENTRY(profile_entry_combobox->entry)); + + + +/* execute VPNclient. if program starts..continue */ + if (!(executeVpnClient(selected_profile,GTK_WIDGET(button)))){ + if (! GTK_WIDGET_VISIBLE(main_window)){ + gtk_widget_show(main_window); + } + update_statusbar(GTK_WIDGET(button),"Cannot start vpnclient.Manually run it to determine problem"); + return; + } + + /* Reset all password / username / label fields */ + + update_statusbar(GTK_WIDGET(button),"Logging in....."); + + login_window = GTK_WIDGET(g_object_get_data(G_OBJECT(main_window),"loginwindow_key")); + invalid_user_pass = GTK_LABEL(lookup_widget(login_window,"invalid_user_pass")); + gtk_label_set_text(invalid_user_pass, + "" + ); + + grouppw_window = GTK_WIDGET(g_object_get_data(G_OBJECT(main_window),"group_pass_win")); + grouppw_warning_label = GTK_LABEL(lookup_widget(grouppw_window,"grouppw_warning")); + gtk_label_set_text(grouppw_warning_label,""); + client = gconf_client_get_default(); + username_entry = GTK_ENTRY(lookup_widget(login_window, "enter_username")); + gtk_entry_set_text(username_entry, + gconf_client_get_string(client, + "/apps/gnome-settings/gvpndialer/defaultuser", + NULL)); + /* put focus in password entry if username was defaulted */ + username = gtk_entry_get_text(username_entry); + if(username[0] != '\0') + gtk_widget_grab_focus(GTK_WIDGET(lookup_widget(login_window, "enter_password"))); + /*unreference gconfclient..always */ + g_object_unref(client); + +} + + +void +on_disconnect_button_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *icon; + GtkWidget *mainwindow; + + + update_statusbar(GTK_WIDGET(button),"VPN Connection Terminated"); + /* set vpn connection variable to 0 */ + vpn_connection_active = 0; + mainwindow = gtk_widget_get_toplevel(GTK_WIDGET(button)); + icon = GTK_WIDGET(g_object_get_data(G_OBJECT(mainwindow),"icon")); + tray_icon_load(icon,"gvpndialer/status_unlocked.png"); + /* kill vpn connection */ + kill_child(); +} + +/* activate status window */ +void +on_status_button_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *status_window; + GtkWidget *mainwindow; + mainwindow = gtk_widget_get_toplevel(GTK_WIDGET(button)); + status_window = GTK_WIDGET(g_object_get_data(G_OBJECT(mainwindow),"statuswindow")); + if ( vpn_connection_active == 1 && is_network_connection_active()){ + + gtk_widget_show (status_window); + updatestats(status_window); + sleep(1); + g_timeout_add_full(0,(guint)5000,updatestats,status_window,NULL); + }else { + if (! GTK_WIDGET_VISIBLE(mainwindow)){ + gtk_widget_show(mainwindow); + } + update_statusbar(mainwindow,"Status is shown only when an active VPN Connection"); + } +} + + + +void +on_quit_button_clicked (GtkButton *button, + gpointer user_data) +{ + /* kill gvpn dialer */ + gtk_main_quit(); + +} + + +void +on_vpn_profile_entry_box_changed (GtkEditable *editable, + gpointer user_data) +{ + GtkWidget *mainwindow; + mainwindow = lookup_widget(GTK_WIDGET(editable),"vpnclient_main_window"); + if ( ! (getHostnamefromProfile(GTK_WIDGET(editable)))){ + if (! GTK_WIDGET_VISIBLE(mainwindow)){ + gtk_widget_show(mainwindow); + } + update_statusbar(GTK_WIDGET(editable),"Cannot Read Hostname from Profile"); + } else { + update_statusbar(GTK_WIDGET(editable),"Profile Selected"); + } + +} + + +gboolean +on_login_window_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data) +{ + + return FALSE; +} + +/* cancel button on the login window */ + +void +on_cancel_button_clicked (GtkButton *button, + gpointer user_data) +{ +GtkWidget *main_window; + GtkWidget *toplevel; + GtkEntry *enter_password = NULL; + toplevel = gtk_widget_get_toplevel(GTK_WIDGET(button)); + main_window = GTK_WIDGET( + g_object_get_data( + G_OBJECT(toplevel), + "mainwindow_key")); +/* clear the password field of the login window */ + +enter_password = GTK_ENTRY(lookup_widget(GTK_WIDGET(button), + "enter_password")); + gtk_entry_set_text(enter_password,""); + + /* Close login window and kill vpnclient */ + gtk_widget_hide(toplevel); + update_statusbar(main_window,"Status Message"); + /* for some reason sleep causes the app not to crash if u hit cancel too many times */ + sleep(1); + close_all_io_channels(main_window); + kill_child(); +} + +/* when someone clicks submit on the login window +*/ + +void +on_submit_button_clicked (GtkButton *button, + gpointer user_data) +{ + GtkEntry *enter_password; + GtkEntry *enter_username; + GtkWidget *main_window; + GIOChannel *ptychannel; + GIOChannel *stdoutchannel; + GtkWidget *login_window; + GtkLabel *invalid_user_pass; + const gchar *entry; + const gchar *entry2; + login_window = gtk_widget_get_toplevel(GTK_WIDGET(button)); + invalid_user_pass = GTK_LABEL(lookup_widget(login_window,"invalid_user_pass")); + + main_window = GTK_WIDGET(g_object_get_data(G_OBJECT(login_window),"mainwindow_key")); + enter_password = GTK_ENTRY(lookup_widget(login_window,"enter_password")); + enter_username = GTK_ENTRY(lookup_widget(login_window,"enter_username")); + ptychannel = (GIOChannel *)g_object_get_data(G_OBJECT(main_window),"pty"); + stdoutchannel = (GIOChannel *)g_object_get_data(G_OBJECT(main_window),"stdout"); + /* check to see if someone forgot to type a username/password + add spaces if username/password is forgotten . client will reauthenticate */ + if ( strlen(gtk_entry_get_text(enter_username)) == 0 ){ + entry = "username"; + }else { + entry = gtk_entry_get_text(enter_username); + } + if ( strlen(gtk_entry_get_text(enter_password)) == 0){ + entry2 = "password"; + }else { + entry2 = gtk_entry_get_text(enter_password); + } + write_text_into_fd (entry,ptychannel); + sleep(1); + write_text_into_fd (entry2,ptychannel); + g_io_add_watch(stdoutchannel,G_IO_IN | G_IO_HUP, (GIOFunc)iofunc_stdout, (gpointer)main_window); + gtk_widget_hide(login_window); +} + + + +gboolean +on_preference_window_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data) +{ + + return FALSE; +} + + +void +on_preference_cancel_button_clicked (GtkButton *button, + gpointer user_data) +{ + /* kill window with no changes done */ + gtk_widget_destroy(gtk_widget_get_toplevel(GTK_WIDGET(button))); + +} + + +void +on_preference_apply_button_clicked (GtkButton *button, + gpointer user_data) +{ + GtkEntry *vpnclient_path_entry; + GtkEntry *vpn_profile_path_entry; + GtkEntry *vpnclient_default_user_entry; + GtkCheckButton *vpnclient_start_hidden_cb; + const gchar *gtkentry_text; + GtkWidget *main_window; + GConfClient *client; + + client = gconf_client_get_default(); + main_window = gtk_widget_get_toplevel(GTK_WIDGET(button)); + vpnclient_path_entry = GTK_ENTRY(lookup_widget(GTK_WIDGET(button), + "vpnclient_path_entry")); + vpn_profile_path_entry = GTK_ENTRY(lookup_widget(GTK_WIDGET(button), + "vpn_profile_path_entry")); + vpnclient_default_user_entry = GTK_ENTRY(lookup_widget(GTK_WIDGET(button), + "vpnclient_default_user_entry")); + + vpnclient_start_hidden_cb = GTK_CHECK_BUTTON(lookup_widget(GTK_WIDGET(button), + "vpnclient_start_hidden_cb")); + + gtkentry_text = gtk_entry_get_text(vpnclient_path_entry); + gconf_client_set_string(client,"/apps/gnome-settings/gvpndialer/vpnclientdir" + ,gtkentry_text,NULL); + + + gtkentry_text = gtk_entry_get_text(vpn_profile_path_entry); + gconf_client_set_string(client, + "/apps/gnome-settings/gvpndialer/profiledir", + gtkentry_text, + NULL); + + gtkentry_text = gtk_entry_get_text(vpnclient_default_user_entry); + gconf_client_set_string(client, + "/apps/gnome-settings/gvpndialer/defaultuser", + gtkentry_text, + NULL); + + gconf_client_set_bool(client, + "/apps/gnome-settings/gvpndialer/starthidden", + gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(vpnclient_start_hidden_cb)), + NULL); + + gtk_widget_destroy(gtk_widget_get_toplevel(GTK_WIDGET(button))); + + g_object_unref(client); +} + + +gboolean +on_status_window_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data) +{ + + return FALSE; +} + +void +on_enter_username_activate (GtkEntry *entry, + gpointer user_data) +{ + +} + + +void +on_enter_password_activate (GtkEntry *entry, + gpointer user_data) +{ + GtkButton *mybutton; + mybutton = GTK_BUTTON(lookup_widget(GTK_WIDGET(entry),"submit_button")); + on_submit_button_clicked(mybutton,user_data); +} + + +void +on_submit_button_activate (GtkButton *button, + gpointer user_data) +{ + +} + + +void +on_status_window_show (GtkWidget *widget, + gpointer user_data) +{ + + +} + +void +on_close_status_window_button_clicked (GtkButton *button, + gpointer user_data) +{ + /* hide window */ + gtk_widget_hide(gtk_widget_get_toplevel(GTK_WIDGET(button))); + +} + + +/** BEGIN NON-GLADE FUNCTIONS **/ + + +int kill_child(){ + + + /* borrowed from http://www.linux-mag.com/2000-02/compile_03.html + Kills the child process graciously */ + + pid_t rc; + + if (vpnclient_pid > 1 ){ + kill(vpnclient_pid, SIGTERM); + alarm(2); + rc = waitpid(vpnclient_pid, NULL,0); + alarm(0); + if (rc) { + /* we were interrupted by an alarm :-( */ + kill(SIGKILL, SIGTERM); + rc = waitpid(vpnclient_pid, NULL,0); + } + return 1; + } + return 0; +} + +/* write text into stdin of forked process */ + +int write_text_into_fd (const gchar *my_text_entry,GIOChannel *ioc ){ + GString *i_buffer = NULL; + + i_buffer = g_string_new(my_text_entry); +/* if buffer is empty, return zero. Something must be written */ + if ( i_buffer->len == 0 ){ + g_string_free(i_buffer,TRUE); + return 0; + } + i_buffer = g_string_append_c(i_buffer,'\r'); + g_io_channel_write_chars(ioc,i_buffer->str,strlen(i_buffer->str),NULL,NULL); + g_io_channel_flush(ioc,NULL); + g_string_free(i_buffer,TRUE); + return 1; +} + + +/* Read Vpnclient stdout and taken appropriate action depending on +what it prints outs + * returns 1 if you want to continue monitoring stdout activity + * returns 0 if you don't want to monitor stdout activity. + * read g_io_add_watch api for more details on return value of GIOFunc +*/ + +gboolean +iofunc_stdout (GIOChannel *ioc, GIOCondition cond, gpointer data){ +#define GROUP_PASSWORD 1 +#define REAUTHENTICATE 2 +#define ENTER_USERNAME 3 +#define CONTACTING_GATEWAY 4 +#define CONTINUE_YES 5 +#define VPN_SECURE 6 +#define CONNECTION_TERMINATED 7 +#define REASON_FOR_FAILURE 8 +#define SAVE_PASS 9 + + GtkWidget *main_window = GTK_WIDGET(data); + GtkWidget *login_window; + GtkWidget *grouppw_window; + GtkLabel *invalid_user_pass; + GtkEntry *enter_password; + GtkEntry *enter_username; + GtkEntry *enter_grouppw; + gchar **reason = NULL; + gchar *line; + GIOStatus ret; + GString *buf = g_string_new_len("",BUFSIZE); + GtkWidget *vpn_profile_combolist; + GConfClient *client; + GtkWidget *icon; + int count = 0; + GIOChannel *pty_channel = (GIOChannel *)g_object_get_data(G_OBJECT(main_window),"pty"); + + /* if something is seriously wrong..kill process */ + if ( cond & G_IO_HUP ){ + close_all_io_channels(main_window); + kill_child(); + g_string_free(buf,TRUE); + /* stop monitoring stdout of the process */ + return 0; + } + /* Get relevant widgets */ + login_window = GTK_WIDGET(g_object_get_data + (G_OBJECT(main_window),"loginwindow_key")); + grouppw_window = GTK_WIDGET(g_object_get_data + (G_OBJECT(main_window),"group_pass_win")); + + enter_password = GTK_ENTRY(lookup_widget + (login_window,"enter_password")); + enter_username = GTK_ENTRY(lookup_widget + (login_window,"enter_username")); + invalid_user_pass = GTK_LABEL(lookup_widget + (login_window,"invalid_user_pass")); + enter_grouppw = GTK_ENTRY(lookup_widget + (grouppw_window,"group_pw_entry")); + /* there is something to read */ + if ( cond & G_IO_IN ){ + while ( ret != G_IO_STATUS_EOF ){ + ret = g_io_channel_read_line_string(ioc,buf,NULL,NULL); + if ( ret == G_IO_STATUS_AGAIN ){ + /* print out a prompt */ + g_string_free(buf,TRUE); + buf = g_string_new_len("",BUFSIZE); + ret = g_io_channel_read_chars(ioc,buf->str,BUFSIZE,NULL,NULL);} + if ( ret == G_IO_STATUS_NORMAL ){ + + switch (check_for_events(buf)) + { + + case GROUP_PASSWORD: + /* show password group window + exit iofunc_stdout, stop monitoring stdout activity */ + gtk_widget_grab_focus(GTK_WIDGET(enter_grouppw)); + gtk_widget_show(grouppw_window); + g_string_free(buf,TRUE); + return 0; + break; + case CONTACTING_GATEWAY: + update_statusbar(main_window,buf->str); + continue; + case REAUTHENTICATE: + /* show the invalid username field if authentication failed */ + if ( authentication_attempts > 0 ){ + gtk_label_set_text + (invalid_user_pass, + "Invalid Username or Password"); + gtk_widget_grab_focus(GTK_WIDGET(enter_password)); + + } + continue; + + case ENTER_USERNAME: + gtk_entry_set_text(enter_password,""); + /* set the focus back onto the username entry */ + gtk_widget_grab_focus(GTK_WIDGET(enter_username)); + authentication_attempts++; + gtk_widget_show(login_window); + g_string_free(buf,TRUE); + return 0; + break; + case CONTINUE_YES: + write_text_into_fd ("yes",pty_channel); + break; + + case CONNECTION_TERMINATED: + gtk_entry_set_text(enter_password,""); + gtk_entry_set_text(enter_username,""); + gtk_entry_set_text(enter_grouppw,""); + count++; + sleep(1); + continue; + + case VPN_SECURE: + gtk_entry_set_text(enter_password,""); + gtk_entry_set_text(enter_username,""); + update_statusbar(main_window,"VPN Connection Active"); + vpn_connection_active = 1; + /* save successfully used profile . Will default to this next time */ + vpn_profile_combolist = lookup_widget(main_window,"profile_entry"); + /* initialize gconfclient */ + client = gconf_client_get_default(); + gconf_client_set_string + (client, + "/apps/gnome-settings/gvpndialer/lastchosenprofile", + gtk_entry_get_text + (GTK_ENTRY(GTK_COMBO(vpn_profile_combolist)->entry)),NULL); + g_object_unref(client); + /* change icon to be the closed padlock */ + icon = GTK_WIDGET(g_object_get_data(G_OBJECT(main_window),"icon")); + tray_icon_load (icon,"gvpndialer/status_lock.png"); + gtk_widget_hide(main_window); + /* no need to read stdout anymore. stop monitoring it. */ + g_string_free(buf,TRUE); + sleep(2); /* don't know why i need to do this. stops app from crashing */ + /* Check VPN status now that connection is secure. + Do something if something bad happens */ + g_timeout_add((guint)1000,is_vpn_connection_active_full,(gpointer)main_window); + return 0; + break; + + case REASON_FOR_FAILURE: + if (! GTK_WIDGET_VISIBLE(main_window)){ + gtk_widget_show(main_window); + } + if ( count > 0 ){ + reason = g_strsplit(g_strchomp(buf->str),"Reason:",2); + update_statusbar(main_window,reason[1]); + g_strfreev(reason); + g_string_free(buf,TRUE); + }else { + g_string_free(buf,TRUE); + update_statusbar(main_window, + "VPNclient terminated for unknown reason"); + } + /* check to see if process is active. if not kill it */ + if (is_vpn_connection_active() ){ + close_all_io_channels(main_window); + kill_child(); + } + return 0; + break; + + case SAVE_PASS: + write_text_into_fd ("n",pty_channel); + break; + + default: + continue; + } + } + return 1; + } + } + g_string_free(buf,TRUE); + return 1; +} + +void +update_statusbar( GtkWidget *anywidget, + gchar *status_message){ + + + GnomeAppBar *statusbar = GNOME_APPBAR(lookup_widget(anywidget,"statusbar")); + gnome_appbar_push(statusbar,status_message); +} + +/* return 1 if successful, or 0 if not */ +int +executeVpnClient(const gchar *profile, + GtkWidget *widget){ + gchar *filename = NULL; + gchar *vpn_args[4]; + GConfClient *client; + GtkWidget *mainwindow = gtk_widget_get_toplevel(widget); + + client = gconf_client_get_default(); + filename = gconf_client_get_string(client,"/apps/gnome-settings/gvpndialer/vpnclientdir",NULL); + if(filename != NULL ){ + filename = g_strjoin("/",filename,"vpnclient",NULL); + }else{ + filename = "vpnclient"; + } + g_object_unref(client); + vpn_args[0] = filename; + vpn_args[1] = "connect"; + vpn_args[2] = (gchar *)profile; + vpn_args[3] = NULL; + + /* start vpnclient */ + start_term(vpn_args,mainwindow); + + /* check to see if vpnclient was successfully activated */ + if ( vpnclient_pid <= 1 ){ + + return 0; + } + + return 1; +} + +/* creates pty + Used code from anjuta and gst projects. +*/ + +void start_term ( gchar **args, GtkWidget *main_window) +{ + int pty_master_fd, md; + int stdout_pipe[2],stderr_pipe[2]; + GIOChannel *pty_channel = NULL; + GIOChannel *stdout_channel = NULL; + GIOChannel *stderr_channel = NULL; + + + pipe (stderr_pipe); + pipe (stdout_pipe); + /* Fork the command */ + vpnclient_pid = forkpty (&pty_master_fd, NULL, NULL, NULL); + if (vpnclient_pid == 0) + { + unsetenv("LC_ALL"); + unsetenv("LC_MESSAGES"); + unsetenv("LANG"); + unsetenv("LANGUAGE"); + + dup2 (stderr_pipe[1],2); + dup2 (stdout_pipe[1],1); + + /* Close unnecessary pipes */ + close (stderr_pipe[0]); + close (stdout_pipe[0]); + + execvp (args[0], args); + exit(255); + } + + /* Close parent's side pipes */ + close (stderr_pipe[1]); + close (stdout_pipe[1]); + + if (vpnclient_pid < 0) + { + /* if fork failed */ + /* Close parent's side pipes */ + close (stderr_pipe[0]); + close (stdout_pipe[0]); + exit(255); + } + + + + /* Initialize GIOChannels */ + pty_channel = g_io_channel_unix_new(pty_master_fd); + stderr_channel = g_io_channel_unix_new (stderr_pipe[0]); + stdout_channel = g_io_channel_unix_new (stdout_pipe[0]); + /* Set channels to not block */ + g_io_channel_set_flags(stdout_channel,G_IO_FLAG_NONBLOCK,NULL); + g_io_channel_set_flags(stderr_channel,G_IO_FLAG_NONBLOCK,NULL); + g_io_channel_set_flags(pty_channel, G_IO_FLAG_NONBLOCK,NULL); + /* track stdout and stderr channel using main_window widget */ + g_object_set_data(G_OBJECT(main_window),"stdout",stdout_channel); + g_object_set_data(G_OBJECT(main_window),"stderr",stderr_channel); + g_object_set_data(G_OBJECT(main_window),"pty",pty_channel); + + /* Watch events for stdout stream */ + g_io_add_watch (stdout_channel, + G_IO_IN | G_IO_HUP , + (GIOFunc)iofunc_stdout, (gpointer)main_window); + /* Exit. Process created successfully! */ +} + +int getHostnamefromProfile(GtkWidget *mywidget) +{ + int profile_fd; + GIOChannel *Mychannel = NULL; + GError *error = NULL; + GString *line = NULL; + gboolean pending; + gchar *matching_line = "Host"; + gchar **host = NULL; + gchar *filename = NULL; + GConfClient *client ; + GtkEntry *hostname_entry ; + + + client = gconf_client_get_default(); + hostname_entry = GTK_ENTRY(lookup_widget(mywidget, + "hostname_entry" )); + filename = gtk_editable_get_chars(GTK_EDITABLE(mywidget),0,-1); + filename = g_strjoin(".",filename,"pcf",NULL); + + filename = g_strjoin("/", + gconf_client_get_string( + client, + "/apps/gnome-settings/gvpndialer/profiledir", + NULL), + filename, + NULL + ); + g_object_unref(client); + /* Initialize GString */ + line = g_string_new(""); + /* Use open to create a file descriptor that points to an int */ + profile_fd = open(filename,O_RDONLY); + /* for some reason the widget chooses a filename that doesn't exist need to catch this */ + if ( profile_fd == -1 ){ + return 0; + } + + Mychannel = g_io_channel_unix_new(profile_fd); + if(Mychannel != NULL ) + { + /* read each line of the file, and find the line starting with +Host + split the line and only print out the hostname */ + while(g_io_channel_read_line_string + (Mychannel,line,NULL,&error) == G_IO_STATUS_NORMAL) + { + if (g_ascii_strncasecmp(line->str,matching_line,4) == 0 ) + { + host = g_strsplit(g_strchomp(line->str),"=",2); + gtk_entry_set_text(hostname_entry,host[1]); + break; + } + } + } else { + return 0; + } + g_io_channel_shutdown(Mychannel,pending,&error); + g_free(filename); + g_strfreev(host); + g_string_free(line,TRUE); + close(profile_fd); + return 1; +} + +/* according to GTK API GtkCombo is deprecated .. + Need to work on using new way but also supporting old way */ + +int +getProfiles (gchar *dir_path, + GtkCombo *vpn_profile_entry){ + + GDir *directory = NULL; + GList *vpn_profiles = NULL; + GError **error = NULL; + gchar *filename = NULL; + gchar **split_string = NULL; + gchar *lastprofile; + GConfClient *client; + int count = 0; + int last_profile_exists = 0; + + client = gconf_client_get_default(); + lastprofile = gconf_client_get_string(client,"/apps/gnome-settings/gvpndialer/lastchosenprofile",NULL); + + + /*unreference gconfclient */ + g_object_unref(client); + + directory = g_dir_open(dir_path,0,error); + while ((filename = (gchar *) g_dir_read_name(directory)) != NULL ){ /*run for *.pcf file only */ + if (g_str_has_suffix(filename,"pcf") == TRUE ){ + /* save filename in Glist */ + count++; + + split_string = g_strsplit(filename,".",2); + /* put the default profile at the top of the list */ + if(( lastprofile != NULL ) + && (last_profile_exists == 0 ) ){ + + if ( ( g_ascii_strcasecmp(lastprofile,split_string[0])) == 0 ){ + last_profile_exists = 1; + }else { + vpn_profiles = g_list_append (vpn_profiles,split_string[0]); + } + + }else{ + vpn_profiles = g_list_append (vpn_profiles, split_string[0]); } + } + } + + if ( count == 0 ) return 0; + /* sort list alphabetically */ + vpn_profiles = glist_strings_sort(vpn_profiles); + /* add last used profile to the top */ + if (last_profile_exists == 1 ){ + vpn_profiles = g_list_prepend (vpn_profiles,lastprofile); + } + gtk_combo_set_popdown_strings(vpn_profile_entry,vpn_profiles); + g_dir_close(directory); + g_list_free(vpn_profiles); + g_free(lastprofile); + g_strfreev(split_string); + return 1; +} + +/* check if vpn connection is alive */ + +gboolean is_vpn_connection_active_full (gpointer mainwindow) { + pid_t zombie; + + int is_process_died; + GtkWidget *icon; + + is_process_died = kill(vpnclient_pid,0); + zombie = waitpid(vpnclient_pid,NULL,WNOHANG); + /* if the process is not there, please stop checking the vpn connection */ + if (is_process_died){ return FALSE; } + + /* check if vpnclient is a zombie */ + if (zombie){ + if (! GTK_WIDGET_VISIBLE(mainwindow)){ + gtk_widget_show(mainwindow); + } + update_statusbar(GTK_WIDGET(mainwindow) + ,"VPN Connection Ended Abruptly or VPN Daemon is not active"); + icon = GTK_WIDGET(g_object_get_data(G_OBJECT(mainwindow),"icon")); + tray_icon_load(icon,"gvpndialer/status_unlocked.png"); + close_all_io_channels(mainwindow); + /* show main window if you get an abrupt failure */ + if (! GTK_WIDGET_VISIBLE(mainwindow) ) gtk_widget_show(mainwindow); + return FALSE; + } else { + return TRUE; + } + +} + +gboolean is_vpn_connection_active () { + pid_t zombie; + int is_process_died; + is_process_died = kill(vpnclient_pid,0); + zombie = waitpid(vpnclient_pid,NULL,WNOHANG); + /* if the process is not there, please stop checking the vpn connection */ + if (is_process_died){ return FALSE; } + + /* check if vpnclient is a zombie */ + if (zombie){ + return FALSE; + } else { + return TRUE; + } + +} + +/* Close all IO Channels before killing process */ +void close_all_io_channels(gpointer mymain_window) { + + GIOChannel *stdout_channel = (GIOChannel *)g_object_get_data(G_OBJECT(mymain_window), + "stdout"); + GIOChannel *stderr_channel = (GIOChannel *)g_object_get_data(G_OBJECT(mymain_window), + "stderr"); + GIOChannel *pty_channel = (GIOChannel *)g_object_get_data(G_OBJECT(mymain_window), + "pty"); + GString *buf = g_string_new_len("",1024); + GIOStatus ret; + if (g_io_channel_get_flags(stderr_channel) & G_IO_FLAG_IS_READABLE){ + ret = g_io_channel_read_line_string(stderr_channel, buf,NULL,NULL); + if (ret == G_IO_STATUS_NORMAL ){ + update_statusbar(GTK_WIDGET(mymain_window),buf->str); + + } + } + g_string_free(buf,TRUE); + g_io_channel_shutdown(stdout_channel,TRUE,NULL); + g_io_channel_shutdown(stderr_channel,TRUE,NULL); + g_io_channel_shutdown(pty_channel,TRUE,NULL); +} + + +/* this function runs every second while the status window is up */ +/* It updates the stats on the status/statistics window */ + +gboolean updatestats( gpointer data ){ +#define TUNNELSTATS 1 +#define TRAFFICSTATS 2 +#define ROUTESTATS 3 + + GString *routestats; + GString *trafficstats; + GString *tunnelstats; + GString *mybuffer; + int statstype; + GError *error; + gint output_fd,child_pid; + gchar *vpnfilename; + GtkWidget *statuswindow; + GtkWidget *mainwindow; + GIOChannel *vpnstats_io; + GtkTextView *tunnel; + GtkTextView *route; + GtkTextView *traffic; + GConfClient *client; + client = gconf_client_get_default(); + vpnfilename = gconf_client_get_string(client,"/apps/gnome-settings/gvpndialer/vpnclientdir",NULL); + vpnfilename = g_strjoin("/",vpnfilename,"vpnclient",NULL); + g_object_unref(client); + + mybuffer = g_string_new(""); + routestats = g_string_new(""); + trafficstats = g_string_new(""); + tunnelstats = g_string_new(""); + statuswindow = GTK_WIDGET(data); + + traffic = (GtkTextView *)lookup_widget(statuswindow,"trafficstats_text"); + route = (GtkTextView *)lookup_widget(statuswindow,"routestats_text"); + tunnel = (GtkTextView *)lookup_widget(statuswindow,"tunnelstats_text"); + gchar *executable[] = {vpnfilename,"stat",NULL}; + /* if status window is visible, print the latest stats */ + if ( GTK_WIDGET_VISIBLE(statuswindow) ){ + /* create a new i/o pipe to capture data from vpnclient stat */ + if ( g_spawn_async_with_pipes + (NULL, + executable, + NULL, + (G_SPAWN_SEARCH_PATH), + NULL, + NULL, + &child_pid, + NULL, + &output_fd, + NULL, + &error)) + { + error = NULL; + vpnstats_io = g_io_channel_unix_new(output_fd); + while (g_io_channel_read_line_string + (vpnstats_io,mybuffer,NULL,&error) + == G_IO_STATUS_NORMAL){ + if (g_ascii_strncasecmp + ("VPN tunnel",mybuffer->str,10) == 0 ){ + statstype = 1; + continue; + }else if (g_ascii_strncasecmp + ("VPN traffic",mybuffer->str,11) == 0 ){ + statstype = 2; + continue; + }else if (g_ascii_strncasecmp + ("Configured routes",mybuffer->str,17) == 0 ){ + statstype = 3; + } + switch(statstype) { + case TUNNELSTATS: + g_string_append(tunnelstats,mybuffer->str); + break; + case TRAFFICSTATS: + g_string_append(trafficstats,mybuffer->str); + break; + case ROUTESTATS: + g_string_append(routestats,mybuffer->str); + break; + } + } + /* update the vpnclient status window with the latest data */ + gtk_text_buffer_set_text + (gtk_text_view_get_buffer + (traffic),trafficstats->str,-1); + gtk_text_buffer_set_text + (gtk_text_view_get_buffer + (route),routestats->str,-1); + gtk_text_buffer_set_text + (gtk_text_view_get_buffer + (tunnel),tunnelstats->str,-1); + + + g_io_channel_shutdown(vpnstats_io,TRUE,NULL); + g_string_free(mybuffer,TRUE); + g_string_free(tunnelstats,TRUE); + g_string_free(trafficstats,TRUE); + g_string_free(routestats,TRUE); + return TRUE; + }else { + /* for some reason can't execute vpnclient stat */ + return FALSE; + } + } else + /* status window is closed */ + return FALSE; +} + + +/* creates the sys tray */ +void tray_create (GtkWidget *mainwindow) { + GtkWidget *box; + EggTrayIcon *tray_icon; + GtkWidget *icon = NULL ; + GtkWidget *menu = NULL; + + /* create the menu, if it doesn't exist */ + + if (!menu){ + /* create menu */ + menu = gtk_menu_new(); + /* associate menu and mainwindow */ + g_object_set_data(G_OBJECT(menu),"mainwindow",mainwindow); + /* add menuitems */ + create_menu (menu); + + } + + /* create the system tray entry */ + tray_icon = egg_tray_icon_new ("GvpnDialer System Tray"); + box = gtk_event_box_new (); + icon = gtk_image_new (); + + + /* continue creating system tray entry */ + gtk_container_add (GTK_CONTAINER (box), icon); + gtk_container_add (GTK_CONTAINER (tray_icon), box); + gtk_widget_show_all (GTK_WIDGET (tray_icon)); + + g_signal_connect (G_OBJECT (box), "button-press-event", G_CALLBACK (clicked), (gpointer)menu); + + /* associate icon with main window */ + g_object_set_data(G_OBJECT(mainwindow),"icon",icon); + + /* load the icon */ + tray_icon_load (icon,"gvpndialer/status_unlocked.png"); + +} + + +void tray_icon_load (GtkWidget *icon, const gchar *file){ + GdkPixbuf *pixbuf; + /* pixbuf = gtk_image_get_pixbuf (GTK_IMAGE (icon)); + if (pixbuf) + g_object_unref (G_OBJECT (pixbuf)); + pixbuf = gdk_pixbuf_new_from_file (file, NULL); + gtk_image_set_from_pixbuf (GTK_IMAGE (icon), pixbuf); +*/ + pixbuf = create_pixbuf(file); + gtk_image_set_from_pixbuf (GTK_IMAGE(icon),pixbuf); +} + + + +void clicked (GtkWidget *widget, GdkEventButton *event, gpointer data) +{ + + GtkWidget *mainwindow; + if (event->button == 3 ){ + gtk_menu_popup (GTK_MENU (data), NULL, NULL, NULL, NULL, event->button, + event->time); + }else if (event->button == 1 ){ + mainwindow = GTK_WIDGET(g_object_get_data(G_OBJECT(data),"mainwindow")); + if ( GTK_WIDGET_VISIBLE(mainwindow)){ + gtk_widget_hide(mainwindow); + } else { + gtk_widget_show(mainwindow); + } + } +} + + +void create_menu (GtkWidget *menu) +{ + GtkWidget *menuitem; + + GtkWidget *mainwindow; + GtkButton *connect; + GtkButton *disconnect; + GtkButton *status; + + + /* get mainwindow pointer */ + + mainwindow = GTK_WIDGET(g_object_get_data(G_OBJECT(menu),"mainwindow")); + /* create the menus */ + menuitem = gtk_menu_item_new_with_label ("Connect"); + g_signal_connect(G_OBJECT(menuitem),"activate", G_CALLBACK(tray_connect_selected),(gpointer)mainwindow); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem); + menuitem = gtk_menu_item_new_with_label ("Disconnect"); + g_signal_connect(G_OBJECT(menuitem),"activate", G_CALLBACK(tray_disconnect_selected),(gpointer)mainwindow); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem); + + menuitem = gtk_separator_menu_item_new (); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem); + + menuitem = gtk_menu_item_new_with_label ("Status"); + g_signal_connect(G_OBJECT(menuitem),"activate", G_CALLBACK(tray_status_selected),(gpointer)mainwindow); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem); + + menuitem = gtk_separator_menu_item_new (); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem); + + + menuitem = gtk_menu_item_new_with_label (_("Exit")); + g_signal_connect (G_OBJECT (menuitem), "activate", G_CALLBACK (gtk_main_quit), 0); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem); + + gtk_widget_show_all (menu); +} + +void tray_status_selected(GtkMenuItem *menuitem,gpointer user_data){ + + GtkButton *status; + + status = (GtkButton *)lookup_widget(GTK_WIDGET (user_data),"status_button"); + on_status_button_clicked(status,0); + +} + +void tray_disconnect_selected(GtkMenuItem *menuitem, gpointer user_data){ + + GtkButton *disconnect; + + disconnect = (GtkButton *)lookup_widget(GTK_WIDGET(user_data),"disconnect_button"); + on_disconnect_button_clicked(disconnect,0); +} + +void tray_connect_selected(GtkMenuItem *menuitem, gpointer user_data){ + GtkButton *connect; + + connect = (GtkButton *)lookup_widget(GTK_WIDGET(user_data),"execute_vpn_button"); + on_execute_vpn_button_clicked(connect,0); +} + +/* Returns the following. +If "group password" is found return 1 +If "Username and Password" is found return 2 +If "Username" is found return 3 +If "Password" is found return 4 +If "continue" is found return 5 +If "terminated" is found return 6 +If "VPN connection is secure" is found return 7 +If "Reason:" is found return 8 +If "Save Password" is found return 9 +If no match return 0 +*/ + int check_for_events(GString *buf){ + if (check_for_string("group password", buf->str)) { return 1; } + if (check_for_string("Username and Password",buf->str)){ return 2; } + if (check_for_string("Username",buf->str)){ return 3;} + if (check_for_string("Contacting the gateway",buf->str)){ return 4;} + if (check_for_string("continue",buf->str)){ return 5;} + if (check_for_string("VPN connection is secure",buf->str)) { return 6;} + if (check_for_string("terminated",buf->str)){ return 7;} + if (check_for_string("Reason:",buf->str)){ return 8;} + if (check_for_string("Save Password",buf->str)){ return 9;} + /* found nothing */ + return 0; +} +/* return true if pattern is found + returns -1 if pattern is bogus + return 0 if pattern is not found + Code from Apache 2.0 pcre demo +*/ + +int check_for_string(gchar *pattern, gchar *subject){ + pcre *re; + const char *error; + int erroffset; + int subject_length; + int rc; + int result = 0; + int ovector[OVECCOUNT]; + + subject_length = strlen(subject); + re = pcre_compile ( + pattern, /*the pattern*/ + 0, /* default options*/ + &error, /* for error message */ + &erroffset, /* for error offset */ + NULL); + /* if compilation failed: print critical message */ + if (re == NULL){ + g_critical("PCRE compilation failed at offset %d: %s\n", erroffset,error); + return -1; + } + /************************************************************************* + * If the compilation succeeded, we call PCRE again, in order to do a * + * pattern match against the subject string. This does just ONE match. If * + * further matching is needed, it will be done below. * + *************************************************************************/ + + rc = pcre_exec( + re, /* the compiled pattern */ + NULL, /* no extra data - we didn't study the pattern */ + subject, /* the subject string */ + subject_length, /* the length of the subject */ + 0, /* start at offset 0 in the subject */ + 0, /* default options */ + ovector, /* output vector for substring information */ + OVECCOUNT); /* number of elements in the output vector */ + + if (rc <= 0 ){ + free(re); + /* debug no MATCH or some type of error*/ + return 0; + } + free(re); /* release memory used for the compiled pattern */ + return rc; +} + +void +on_enter_group_password_activate (GtkEntry *entry, + gpointer user_data) +{ + GtkButton *mybutton; + mybutton = GTK_BUTTON(lookup_widget(GTK_WIDGET(entry),"group_pw_okay_button")); + on_group_pw_submit_button_clicked(mybutton,user_data); +} + + +void +on_group_pw_cancel_button_clicked (GtkButton *button, + gpointer user_data) +{ +GtkWidget *main_window; + GtkWidget *toplevel; + GtkEntry *enter_password = NULL; + toplevel = gtk_widget_get_toplevel(GTK_WIDGET(button)); + main_window = GTK_WIDGET( + g_object_get_data( + G_OBJECT(toplevel), + "mainwindow_key")); +/* clear the password field of the login window */ + +enter_password = GTK_ENTRY(lookup_widget(GTK_WIDGET(button), + "group_pw_entry")); + gtk_entry_set_text(enter_password,""); + + /* Close login window and kill vpnclient */ + gtk_widget_hide(toplevel); + update_statusbar(main_window,"Status Message"); + close_all_io_channels(main_window); + kill_child(); +} + + +void +on_group_pw_submit_button_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *grouppw_window = gtk_widget_get_toplevel(GTK_WIDGET(button)); + GtkEntry *grouppw_entry = GTK_ENTRY(lookup_widget(grouppw_window,"group_pw_entry")); + GtkLabel *grouppw_warning = GTK_LABEL(lookup_widget(grouppw_window,"grouppw_warning")); + GtkWidget *main_window = GTK_WIDGET(g_object_get_data(G_OBJECT(grouppw_window),"mainwindow_key")); + GIOChannel *ptychannel = (GIOChannel *)g_object_get_data(G_OBJECT(main_window),"pty"); + GIOChannel *stdoutchannel = (GIOChannel *)g_object_get_data(G_OBJECT(main_window),"stdout"); + + /* write group password to vpnclient */ + if ( ! (write_text_into_fd + (gtk_entry_get_text(grouppw_entry),ptychannel))){ + gtk_label_set_text(grouppw_warning, + "!!Group password cannot be empty!!"); + return; + } + /*begin to watch stdout of vpnclient again */ + g_io_add_watch(stdoutchannel,G_IO_IN | G_IO_HUP, (GIOFunc)iofunc_stdout, (gpointer)main_window); + /*clear group password entry and label */ + gtk_entry_set_text(grouppw_entry,""); + gtk_label_set_text(grouppw_warning,""); + /* hide group password window */ + gtk_widget_hide(grouppw_window); +} + +/* Code to sort VPN profiles. +Obtained from the Anjuta Project */ + +static gint +sort_node (gchar* a, gchar *b) +{ + if ( !a && !b) return 0; + else if (!a) return -1; + else if (!b) return 1; + return strcmp (a, b); +} + +/* Sort the list alphabatically */ +GList* +glist_strings_sort (GList * list) +{ + return g_list_sort(list, (GCompareFunc)sort_node); +} + +/* Check to see if network interface is down. For some reason +vpnclient doesn't detect right away that the NIC is down. +If you attempt to view the status during this state, your +PC will hang..yuck ! */ + +int +is_network_connection_active(){ + GIOChannel *procroute; + GIOStatus ret; + gint active = 0; + GString *buf = g_string_new_len("",BUFSIZE); + procroute = g_io_channel_new_file("/proc/net/route","r",NULL); + while ( ret != G_IO_STATUS_EOF ){ + ret = g_io_channel_read_line_string(procroute,buf,NULL,NULL); + if (check_for_string("FFFFFFFF",buf->str)){ + active = 1; + } + } + g_io_channel_shutdown(procroute,TRUE,NULL); + return active; + +} diff --git a/projects/gvpndialer/trunk/src/callbacks.h b/projects/gvpndialer/trunk/src/callbacks.h new file mode 100644 index 0000000..3f97403 --- /dev/null +++ b/projects/gvpndialer/trunk/src/callbacks.h @@ -0,0 +1,224 @@ +#include <gnome.h> +#include <gconf/gconf-client.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <fcntl.h> +#include <sys/wait.h> +#include <signal.h> +#include <pcre/pcre.h> +#include <unistd.h> +#include "eggtrayicon.h" + +#define BUFSIZE 1024 +/* used by pcre code */ +#define OVECCOUNT 30 /* should be a multiple of 3 */ + +void +on_vpnclient_main_window_show (GtkWidget *widget, + gpointer user_data); + +gboolean +on_vpnclient_main_window_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data); + +void +on_quit1_activate (GtkMenuItem *menuitem, + gpointer user_data); + +void +on_preferences1_activate (GtkMenuItem *menuitem, + gpointer user_data); + +void +on_status2_activate (GtkMenuItem *menuitem, + gpointer user_data); + +void +on_about1_activate (GtkMenuItem *menuitem, + gpointer user_data); + +void +on_execute_vpn_button_clicked (GtkButton *button, + gpointer user_data); + +void +on_disconnect_button_clicked (GtkButton *button, + gpointer user_data); + +void +on_status_button_clicked (GtkButton *button, + gpointer user_data); + +void +on_quit_button_clicked (GtkButton *button, + gpointer user_data); + +void +on_vpn_profile_entry_box_changed (GtkEditable *editable, + gpointer user_data); + +gboolean +on_login_window_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data); + +void +on_cancel_button_clicked (GtkButton *button, + gpointer user_data); + +void +on_submit_button_clicked (GtkButton *button, + gpointer user_data); + +gboolean +on_preference_window_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data); + +void +on_preference_cancel_button_clicked (GtkButton *button, + gpointer user_data); + +void +on_preference_apply_button_clicked (GtkButton *button, + gpointer user_data); + +gboolean +on_status_window_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data); + +void +on_close_status_window_button_clicked +(GtkButton *button,gpointer user_data); + + + +int +kill_child (); + +int +write_text_into_fd +(const gchar *my_text_entry,GIOChannel *ioc); + +void +update_statusbar +(GtkWidget *anywidget, + gchar *status_message); + +int executeVpnClient +(const gchar *profile, + GtkWidget *widget); + + +int getHostnamefromProfile +(GtkWidget *mywidget); + +int getProfiles +(gchar *dir_path, + GtkCombo *vpn_profile_entry); + +void close_all_io_channels(gpointer mymain_window); + +void start_term +( gchar **args, GtkWidget *main_window); + +gboolean +iofunc_stdout (GIOChannel *ioc, GIOCondition cond, gpointer data); + +int +getStatus +(GtkWidget *mywidget); + +gchar +*checkWhereVpnClientIs +(gchar **path, + gchar *file); + +void +create_notify_add +(GtkEntry *entry, + gchar *gconf_key); + + +void +update_pref_widget +(GConfClient *client, + guint cnxn_id, + GConfEntry *entry, + gpointer user_data); + +gboolean +is_vpn_connection_active (); + +gboolean +is_vpn_connection_active_full (gpointer mainwindow); + +void +on_enter_username_activate (GtkEntry *entry, + gpointer user_data); + +void +on_enter_password_activate (GtkEntry *entry, + gpointer user_data); + +void +on_submit_button_activate (GtkButton *button, + gpointer user_data); + +void +on_status_window_show (GtkWidget *widget, + gpointer user_data); + +gboolean updatestats (gpointer data); + +void +on_status2_activate (GtkMenuItem *menuitem, + gpointer user_data); + + +void +create_menu(GtkWidget *menu); + +void +tray_icon_load(GtkWidget *icon, const gchar *file); + +void +clicked (GtkWidget *widget, GdkEventButton *event, gpointer data); + +void +tray_create (GtkWidget *mainwindow); + +void +tray_status_selected(GtkMenuItem *menuitem, gpointer mainwindow); + +void +tray_disconnect_selected(GtkMenuItem *menuitem, gpointer mainwindow); + +void +tray_connect_selected(GtkMenuItem *menuitem, gpointer mainwindow); + +int check_for_events(GString *buf); + +int check_for_string(gchar *pattern, gchar *subject); + +void +on_enter_group_password_activate (GtkEntry *entry, + gpointer user_data); + +void +on_group_pw_cancel_button_clicked (GtkButton *button, + gpointer user_data); + +void +on_group_pw_submit_button_clicked (GtkButton *button, + gpointer user_data); +static gint +sort_node (gchar* a, gchar *b); + +GList* +glist_strings_sort (GList * list); + +int +is_network_connection_active(); diff --git a/projects/gvpndialer/trunk/src/eggtrayicon.c b/projects/gvpndialer/trunk/src/eggtrayicon.c new file mode 100644 index 0000000..29009d5 --- /dev/null +++ b/projects/gvpndialer/trunk/src/eggtrayicon.c @@ -0,0 +1,525 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* eggtrayicon.c + * Copyright (C) 2002 Anders Carlsson <andersca@gnu.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#include <config.h> +#include <string.h> + +#include "eggtrayicon.h" + +#include <gdk/gdkx.h> +#include <X11/Xatom.h> + +#define _(x) x +#define N_(x) x + +#define SYSTEM_TRAY_REQUEST_DOCK 0 +#define SYSTEM_TRAY_BEGIN_MESSAGE 1 +#define SYSTEM_TRAY_CANCEL_MESSAGE 2 + +#define SYSTEM_TRAY_ORIENTATION_HORZ 0 +#define SYSTEM_TRAY_ORIENTATION_VERT 1 + +enum { + PROP_0, + PROP_ORIENTATION +}; + +static GtkPlugClass *parent_class = NULL; + +static void egg_tray_icon_init (EggTrayIcon *icon); +static void egg_tray_icon_class_init (EggTrayIconClass *klass); + +static void egg_tray_icon_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec); + +static void egg_tray_icon_realize (GtkWidget *widget); +static void egg_tray_icon_unrealize (GtkWidget *widget); + +static void egg_tray_icon_update_manager_window (EggTrayIcon *icon, + gboolean dock_if_realized); +static void egg_tray_icon_manager_window_destroyed (EggTrayIcon *icon); + +GType +egg_tray_icon_get_type (void) +{ + static GType our_type = 0; + + if (our_type == 0) + { + our_type = g_type_from_name("EggTrayIcon"); + + if (our_type == 0) + { + static const GTypeInfo our_info = + { + sizeof (EggTrayIconClass), + (GBaseInitFunc) NULL, + (GBaseFinalizeFunc) NULL, + (GClassInitFunc) egg_tray_icon_class_init, + NULL, /* class_finalize */ + NULL, /* class_data */ + sizeof (EggTrayIcon), + 0, /* n_preallocs */ + (GInstanceInitFunc) egg_tray_icon_init + }; + + our_type = g_type_register_static (GTK_TYPE_PLUG, "EggTrayIcon", &our_info, 0); + } + else if (parent_class == NULL) + { + /* we're reheating the old class from a previous instance - engage ugly hack =( */ + egg_tray_icon_class_init((EggTrayIconClass *)g_type_class_peek(our_type)); + } + } + + return our_type; +} + +static void +egg_tray_icon_init (EggTrayIcon *icon) +{ + icon->stamp = 1; + icon->orientation = GTK_ORIENTATION_HORIZONTAL; + + gtk_widget_add_events (GTK_WIDGET (icon), GDK_PROPERTY_CHANGE_MASK); +} + +static void +egg_tray_icon_class_init (EggTrayIconClass *klass) +{ + GObjectClass *gobject_class = (GObjectClass *)klass; + GtkWidgetClass *widget_class = (GtkWidgetClass *)klass; + + parent_class = g_type_class_peek_parent (klass); + + gobject_class->get_property = egg_tray_icon_get_property; + + widget_class->realize = egg_tray_icon_realize; + widget_class->unrealize = egg_tray_icon_unrealize; + + g_object_class_install_property (gobject_class, + PROP_ORIENTATION, + g_param_spec_enum ("orientation", + _("Orientation"), + _("The orientation of the tray."), + GTK_TYPE_ORIENTATION, + GTK_ORIENTATION_HORIZONTAL, + G_PARAM_READABLE)); +} + +static void +egg_tray_icon_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) +{ + EggTrayIcon *icon = EGG_TRAY_ICON (object); + + switch (prop_id) + { + case PROP_ORIENTATION: + g_value_set_enum (value, icon->orientation); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; + } +} + +static void +egg_tray_icon_get_orientation_property (EggTrayIcon *icon) +{ + Display *xdisplay; + Atom type; + int format; + union { + gulong *prop; + guchar *prop_ch; + } prop = { NULL }; + gulong nitems; + gulong bytes_after; + int error, result; + + g_assert (icon->manager_window != None); + +#if GTK_CHECK_VERSION(2,1,0) + xdisplay = GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (GTK_WIDGET (icon))); +#else + xdisplay = gdk_display; +#endif + + gdk_error_trap_push (); + type = None; + result = XGetWindowProperty (xdisplay, + icon->manager_window, + icon->orientation_atom, + 0, G_MAXLONG, FALSE, + XA_CARDINAL, + &type, &format, &nitems, + &bytes_after, &(prop.prop_ch)); + error = gdk_error_trap_pop (); + + if (error || result != Success) + return; + + if (type == XA_CARDINAL) + { + GtkOrientation orientation; + + orientation = (prop.prop [0] == SYSTEM_TRAY_ORIENTATION_HORZ) ? + GTK_ORIENTATION_HORIZONTAL : + GTK_ORIENTATION_VERTICAL; + + if (icon->orientation != orientation) + { + icon->orientation = orientation; + + g_object_notify (G_OBJECT (icon), "orientation"); + } + } + + if (prop.prop) + XFree (prop.prop); +} + +static GdkFilterReturn +egg_tray_icon_manager_filter (GdkXEvent *xevent, GdkEvent *event, gpointer user_data) +{ + EggTrayIcon *icon = user_data; + XEvent *xev = (XEvent *)xevent; + + if (xev->xany.type == ClientMessage && + xev->xclient.message_type == icon->manager_atom && + xev->xclient.data.l[1] == icon->selection_atom) + { + egg_tray_icon_update_manager_window (icon, TRUE); + } + else if (xev->xany.window == icon->manager_window) + { + if (xev->xany.type == PropertyNotify && + xev->xproperty.atom == icon->orientation_atom) + { + egg_tray_icon_get_orientation_property (icon); + } + if (xev->xany.type == DestroyNotify) + { + egg_tray_icon_manager_window_destroyed (icon); + } + } + + return GDK_FILTER_CONTINUE; +} + +static void +egg_tray_icon_unrealize (GtkWidget *widget) +{ + EggTrayIcon *icon = EGG_TRAY_ICON (widget); + GdkWindow *root_window; + + if (icon->manager_window != None) + { + GdkWindow *gdkwin; + +#if GTK_CHECK_VERSION(2,1,0) + gdkwin = gdk_window_lookup_for_display (gtk_widget_get_display (widget), + icon->manager_window); +#else + gdkwin = gdk_window_lookup (icon->manager_window); +#endif + + gdk_window_remove_filter (gdkwin, egg_tray_icon_manager_filter, icon); + } + +#if GTK_CHECK_VERSION(2,1,0) + root_window = gdk_screen_get_root_window (gtk_widget_get_screen (widget)); +#else + root_window = gdk_window_lookup (gdk_x11_get_default_root_xwindow ()); +#endif + + gdk_window_remove_filter (root_window, egg_tray_icon_manager_filter, icon); + + if (GTK_WIDGET_CLASS (parent_class)->unrealize) + (* GTK_WIDGET_CLASS (parent_class)->unrealize) (widget); +} + +static void +egg_tray_icon_send_manager_message (EggTrayIcon *icon, + long message, + Window window, + long data1, + long data2, + long data3) +{ + XClientMessageEvent ev; + Display *display; + + ev.type = ClientMessage; + ev.window = window; + ev.message_type = icon->system_tray_opcode_atom; + ev.format = 32; + ev.data.l[0] = gdk_x11_get_server_time (GTK_WIDGET (icon)->window); + ev.data.l[1] = message; + ev.data.l[2] = data1; + ev.data.l[3] = data2; + ev.data.l[4] = data3; + +#if GTK_CHECK_VERSION(2,1,0) + display = GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (GTK_WIDGET (icon))); +#else + display = gdk_display; +#endif + + gdk_error_trap_push (); + XSendEvent (display, + icon->manager_window, False, NoEventMask, (XEvent *)&ev); + XSync (display, False); + gdk_error_trap_pop (); +} + +static void +egg_tray_icon_send_dock_request (EggTrayIcon *icon) +{ + egg_tray_icon_send_manager_message (icon, + SYSTEM_TRAY_REQUEST_DOCK, + icon->manager_window, + gtk_plug_get_id (GTK_PLUG (icon)), + 0, 0); +} + +static void +egg_tray_icon_update_manager_window (EggTrayIcon *icon, + gboolean dock_if_realized) +{ + Display *xdisplay; + + if (icon->manager_window != None) + return; + +#if GTK_CHECK_VERSION(2,1,0) + xdisplay = GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (GTK_WIDGET (icon))); +#else + xdisplay = gdk_display; +#endif + + XGrabServer (xdisplay); + + icon->manager_window = XGetSelectionOwner (xdisplay, + icon->selection_atom); + + if (icon->manager_window != None) + XSelectInput (xdisplay, + icon->manager_window, StructureNotifyMask|PropertyChangeMask); + + XUngrabServer (xdisplay); + XFlush (xdisplay); + + if (icon->manager_window != None) + { + GdkWindow *gdkwin; + +#if GTK_CHECK_VERSION(2,1,0) + gdkwin = gdk_window_lookup_for_display (gtk_widget_get_display (GTK_WIDGET (icon)), + icon->manager_window); +#else + gdkwin = gdk_window_lookup (icon->manager_window); +#endif + + gdk_window_add_filter (gdkwin, egg_tray_icon_manager_filter, icon); + + if (dock_if_realized && GTK_WIDGET_REALIZED (icon)) + egg_tray_icon_send_dock_request (icon); + + egg_tray_icon_get_orientation_property (icon); + } +} + +static void +egg_tray_icon_manager_window_destroyed (EggTrayIcon *icon) +{ + GdkWindow *gdkwin; + + g_return_if_fail (icon->manager_window != None); + +#if GTK_CHECK_VERSION(2,1,0) + gdkwin = gdk_window_lookup_for_display (gtk_widget_get_display (GTK_WIDGET (icon)), + icon->manager_window); +#else + gdkwin = gdk_window_lookup (icon->manager_window); +#endif + + gdk_window_remove_filter (gdkwin, egg_tray_icon_manager_filter, icon); + + icon->manager_window = None; + + egg_tray_icon_update_manager_window (icon, TRUE); +} + +static void +egg_tray_icon_realize (GtkWidget *widget) +{ + EggTrayIcon *icon = EGG_TRAY_ICON (widget); + gint screen; + Display *xdisplay; + char buffer[256]; + GdkWindow *root_window; + + if (GTK_WIDGET_CLASS (parent_class)->realize) + GTK_WIDGET_CLASS (parent_class)->realize (widget); + +#if GTK_CHECK_VERSION(2,1,0) + screen = gdk_screen_get_number (gtk_widget_get_screen (widget)); + xdisplay = GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (widget)); +#else + screen = XScreenNumberOfScreen (DefaultScreenOfDisplay (gdk_display)); + xdisplay = gdk_display; +#endif + + /* Now see if there's a manager window around */ + g_snprintf (buffer, sizeof (buffer), + "_NET_SYSTEM_TRAY_S%d", + screen); + + icon->selection_atom = XInternAtom (xdisplay, buffer, False); + + icon->manager_atom = XInternAtom (xdisplay, "MANAGER", False); + + icon->system_tray_opcode_atom = XInternAtom (xdisplay, + "_NET_SYSTEM_TRAY_OPCODE", + False); + + icon->orientation_atom = XInternAtom (xdisplay, + "_NET_SYSTEM_TRAY_ORIENTATION", + False); + + egg_tray_icon_update_manager_window (icon, FALSE); + egg_tray_icon_send_dock_request (icon); + +#if GTK_CHECK_VERSION(2,1,0) + root_window = gdk_screen_get_root_window (gtk_widget_get_screen (widget)); +#else + root_window = gdk_window_lookup (gdk_x11_get_default_root_xwindow ()); +#endif + + /* Add a root window filter so that we get changes on MANAGER */ + gdk_window_add_filter (root_window, + egg_tray_icon_manager_filter, icon); +} + +#if GTK_CHECK_VERSION(2,1,0) +EggTrayIcon * +egg_tray_icon_new_for_screen (GdkScreen *screen, const char *name) +{ + g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL); + + return g_object_new (EGG_TYPE_TRAY_ICON, "screen", screen, "title", name, NULL); +} +#endif + +EggTrayIcon* +egg_tray_icon_new (const gchar *name) +{ + return g_object_new (EGG_TYPE_TRAY_ICON, "title", name, NULL); +} + +guint +egg_tray_icon_send_message (EggTrayIcon *icon, + gint timeout, + const gchar *message, + gint len) +{ + guint stamp; + + g_return_val_if_fail (EGG_IS_TRAY_ICON (icon), 0); + g_return_val_if_fail (timeout >= 0, 0); + g_return_val_if_fail (message != NULL, 0); + + if (icon->manager_window == None) + return 0; + + if (len < 0) + len = strlen (message); + + stamp = icon->stamp++; + + /* Get ready to send the message */ + egg_tray_icon_send_manager_message (icon, SYSTEM_TRAY_BEGIN_MESSAGE, + (Window)gtk_plug_get_id (GTK_PLUG (icon)), + timeout, len, stamp); + + /* Now to send the actual message */ + gdk_error_trap_push (); + while (len > 0) + { + XClientMessageEvent ev; + Display *xdisplay; + +#if GTK_CHECK_VERSION(2,1,0) + xdisplay = GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (GTK_WIDGET (icon))); +#else + xdisplay = gdk_display; +#endif + + ev.type = ClientMessage; + ev.window = (Window)gtk_plug_get_id (GTK_PLUG (icon)); + ev.format = 8; + ev.message_type = XInternAtom (xdisplay, + "_NET_SYSTEM_TRAY_MESSAGE_DATA", False); + if (len > 20) + { + memcpy (&ev.data, message, 20); + len -= 20; + message += 20; + } + else + { + memcpy (&ev.data, message, len); + len = 0; + } + + XSendEvent (xdisplay, + icon->manager_window, False, StructureNotifyMask, (XEvent *)&ev); + XSync (xdisplay, False); + } + gdk_error_trap_pop (); + + return stamp; +} + +void +egg_tray_icon_cancel_message (EggTrayIcon *icon, + guint id) +{ + g_return_if_fail (EGG_IS_TRAY_ICON (icon)); + g_return_if_fail (id > 0); + + egg_tray_icon_send_manager_message (icon, SYSTEM_TRAY_CANCEL_MESSAGE, + (Window)gtk_plug_get_id (GTK_PLUG (icon)), + id, 0, 0); +} + +GtkOrientation +egg_tray_icon_get_orientation (EggTrayIcon *icon) +{ + g_return_val_if_fail (EGG_IS_TRAY_ICON (icon), GTK_ORIENTATION_HORIZONTAL); + + return icon->orientation; +} diff --git a/projects/gvpndialer/trunk/src/eggtrayicon.h b/projects/gvpndialer/trunk/src/eggtrayicon.h new file mode 100644 index 0000000..7a140f6 --- /dev/null +++ b/projects/gvpndialer/trunk/src/eggtrayicon.h @@ -0,0 +1,80 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* eggtrayicon.h + * Copyright (C) 2002 Anders Carlsson <andersca@gnu.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#ifndef __EGG_TRAY_ICON_H__ +#define __EGG_TRAY_ICON_H__ + +#include <gtk/gtkplug.h> +#include <gtk/gtkversion.h> +#include <gdk/gdkx.h> + +G_BEGIN_DECLS + +#define EGG_TYPE_TRAY_ICON (egg_tray_icon_get_type ()) +#define EGG_TRAY_ICON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_TRAY_ICON, EggTrayIcon)) +#define EGG_TRAY_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EGG_TYPE_TRAY_ICON, EggTrayIconClass)) +#define EGG_IS_TRAY_ICON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_TRAY_ICON)) +#define EGG_IS_TRAY_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EGG_TYPE_TRAY_ICON)) +#define EGG_TRAY_ICON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EGG_TYPE_TRAY_ICON, EggTrayIconClass)) + +typedef struct _EggTrayIcon EggTrayIcon; +typedef struct _EggTrayIconClass EggTrayIconClass; + +struct _EggTrayIcon +{ + GtkPlug parent_instance; + + guint stamp; + + Atom selection_atom; + Atom manager_atom; + Atom system_tray_opcode_atom; + Atom orientation_atom; + Window manager_window; + + GtkOrientation orientation; +}; + +struct _EggTrayIconClass +{ + GtkPlugClass parent_class; +}; + +GType egg_tray_icon_get_type (void); + +#if GTK_CHECK_VERSION(2,1,0) +EggTrayIcon *egg_tray_icon_new_for_screen (GdkScreen *screen, + const gchar *name); +#endif + +EggTrayIcon *egg_tray_icon_new (const gchar *name); + +guint egg_tray_icon_send_message (EggTrayIcon *icon, + gint timeout, + const char *message, + gint len); +void egg_tray_icon_cancel_message (EggTrayIcon *icon, + guint id); + +GtkOrientation egg_tray_icon_get_orientation (EggTrayIcon *icon); + +G_END_DECLS + +#endif /* __EGG_TRAY_ICON_H__ */ diff --git a/projects/gvpndialer/trunk/src/gvpn.diff b/projects/gvpndialer/trunk/src/gvpn.diff new file mode 100644 index 0000000..d402c90 --- /dev/null +++ b/projects/gvpndialer/trunk/src/gvpn.diff @@ -0,0 +1,14 @@ +--- main.c.dist 2005-09-19 21:04:37.000000000 -0400 ++++ main.c 2005-09-19 21:02:15.000000000 -0400 +@@ -40,8 +40,9 @@ + * the project. Delete any components that you don't want shown initially. + */ + vpnclient_main_window = create_vpnclient_main_window (); +- if(!gconf_client_get_bool(client, "/apps/gnome-settings/gvpndialer/starthidden", NULL)) +- gtk_widget_show (vpnclient_main_window); ++ gtk_widget_show(vpnclient_main_window); ++ if(gconf_client_get_bool(client, "/apps/gnome-settings/gvpndialer/starthidden", NULL)) ++ gtk_widget_hide(vpnclient_main_window); + + /*create status window..assign a key pointer to find it within + callback.c */ diff --git a/projects/gvpndialer/trunk/src/interface.c b/projects/gvpndialer/trunk/src/interface.c new file mode 100644 index 0000000..64a6857 --- /dev/null +++ b/projects/gvpndialer/trunk/src/interface.c @@ -0,0 +1,824 @@ +/* + * DO NOT EDIT THIS FILE - it is generated by Glade. + */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> +#include <string.h> +#include <stdio.h> + +#include <bonobo.h> +#include <gnome.h> + +#include "callbacks.h" +#include "interface.h" +#include "support.h" + +#define GLADE_HOOKUP_OBJECT(component,widget,name) \ + g_object_set_data_full (G_OBJECT (component), name, \ + gtk_widget_ref (widget), (GDestroyNotify) gtk_widget_unref) + +#define GLADE_HOOKUP_OBJECT_NO_REF(component,widget,name) \ + g_object_set_data (G_OBJECT (component), name, widget) + +static GnomeUIInfo file1_menu_uiinfo[] = +{ + GNOMEUIINFO_MENU_EXIT_ITEM (on_quit1_activate, NULL), + GNOMEUIINFO_END +}; + +static GnomeUIInfo edit1_menu_uiinfo[] = +{ + GNOMEUIINFO_MENU_PREFERENCES_ITEM (on_preferences1_activate, NULL), + GNOMEUIINFO_END +}; + +static GnomeUIInfo view1_menu_uiinfo[] = +{ + { + GNOME_APP_UI_ITEM, "_Status", + NULL, + (gpointer) on_status2_activate, NULL, NULL, + GNOME_APP_PIXMAP_FILENAME, "gvpndialer/Status-Dock.png", + 0, (GdkModifierType) 0, NULL + }, + GNOMEUIINFO_END +}; + +static GnomeUIInfo help1_menu_uiinfo[] = +{ + GNOMEUIINFO_MENU_ABOUT_ITEM (on_about1_activate, NULL), + GNOMEUIINFO_END +}; + +static GnomeUIInfo menubar1_uiinfo[] = +{ + GNOMEUIINFO_MENU_FILE_TREE (file1_menu_uiinfo), + GNOMEUIINFO_MENU_EDIT_TREE (edit1_menu_uiinfo), + GNOMEUIINFO_MENU_VIEW_TREE (view1_menu_uiinfo), + GNOMEUIINFO_MENU_HELP_TREE (help1_menu_uiinfo), + GNOMEUIINFO_END +}; + +GtkWidget* +create_vpnclient_main_window (void) +{ + GtkWidget *vpnclient_main_window; + GtkWidget *bonobodock1; + GtkWidget *toolbar1; + GtkIconSize tmp_toolbar_icon_size; + GtkWidget *tmp_image; + GtkWidget *execute_vpn_button; + GtkWidget *disconnect_button; + GtkWidget *separatortoolitem1; + GtkWidget *status_button; + GtkWidget *separatortoolitem2; + GtkWidget *quit_button; + GtkWidget *vbox2; + GtkWidget *table3; + GtkWidget *label10; + GtkWidget *hostname_entry; + GtkWidget *profile_entry; + GtkWidget *vpn_profile_entry_box; + GtkWidget *label11; + GtkWidget *hseparator2; + GtkWidget *hbox1; + GtkWidget *statusimage; + GtkWidget *statusbar; + GtkTooltips *tooltips; + + tooltips = gtk_tooltips_new (); + + vpnclient_main_window = gnome_app_new ("Gvpn_dialer", "GVPN Dialer"); + gtk_widget_set_size_request (vpnclient_main_window, 504, 237); + gtk_window_set_default_size (GTK_WINDOW (vpnclient_main_window), 504, 237); + gtk_window_set_resizable (GTK_WINDOW (vpnclient_main_window), FALSE); + + bonobodock1 = GNOME_APP (vpnclient_main_window)->dock; + gtk_widget_show (bonobodock1); + + gnome_app_create_menus (GNOME_APP (vpnclient_main_window), menubar1_uiinfo); + + toolbar1 = gtk_toolbar_new (); + gtk_widget_show (toolbar1); + gnome_app_add_toolbar (GNOME_APP (vpnclient_main_window), GTK_TOOLBAR (toolbar1), "toolbar1", + BONOBO_DOCK_ITEM_BEH_EXCLUSIVE + | BONOBO_DOCK_ITEM_BEH_LOCKED, + BONOBO_DOCK_TOP, 1, 0, 0); + gtk_container_set_border_width (GTK_CONTAINER (toolbar1), 2); + gtk_toolbar_set_style (GTK_TOOLBAR (toolbar1), GTK_TOOLBAR_BOTH); + tmp_toolbar_icon_size = gtk_toolbar_get_icon_size (GTK_TOOLBAR (toolbar1)); + + tmp_image = create_pixmap (vpnclient_main_window, "gvpndialer/stock_exec_24.png"); + gtk_widget_show (tmp_image); + execute_vpn_button = (GtkWidget*) gtk_tool_button_new (tmp_image, "Connect"); + gtk_widget_show (execute_vpn_button); + gtk_container_add (GTK_CONTAINER (toolbar1), execute_vpn_button); + gtk_widget_set_size_request (execute_vpn_button, 82, 65); + gtk_container_set_border_width (GTK_CONTAINER (execute_vpn_button), 7); + gtk_tool_item_set_tooltip (GTK_TOOL_ITEM (execute_vpn_button), tooltips, "Start VPN Connection", NULL); + + tmp_image = create_pixmap (vpnclient_main_window, "gvpndialer/stock_stop_24.png"); + gtk_widget_show (tmp_image); + disconnect_button = (GtkWidget*) gtk_tool_button_new (tmp_image, "Disconnect"); + gtk_widget_show (disconnect_button); + gtk_container_add (GTK_CONTAINER (toolbar1), disconnect_button); + gtk_widget_set_size_request (disconnect_button, 99, 61); + gtk_container_set_border_width (GTK_CONTAINER (disconnect_button), 8); + gtk_tool_item_set_tooltip (GTK_TOOL_ITEM (disconnect_button), tooltips, "Start VPN Connection", NULL); + + separatortoolitem1 = (GtkWidget*) gtk_separator_tool_item_new (); + gtk_widget_show (separatortoolitem1); + gtk_container_add (GTK_CONTAINER (toolbar1), separatortoolitem1); + + tmp_image = create_pixmap (vpnclient_main_window, "gvpndialer/Status-Dock.png"); + gtk_widget_show (tmp_image); + status_button = (GtkWidget*) gtk_tool_button_new (tmp_image, "_Status"); + gtk_widget_show (status_button); + gtk_container_add (GTK_CONTAINER (toolbar1), status_button); + gtk_container_set_border_width (GTK_CONTAINER (status_button), 7); + gtk_tool_item_set_tooltip (GTK_TOOL_ITEM (status_button), tooltips, "Get VPN Stats", NULL); + + separatortoolitem2 = (GtkWidget*) gtk_separator_tool_item_new (); + gtk_widget_show (separatortoolitem2); + gtk_container_add (GTK_CONTAINER (toolbar1), separatortoolitem2); + + quit_button = (GtkWidget*) gtk_tool_button_new_from_stock ("gtk-quit"); + gtk_widget_show (quit_button); + gtk_container_add (GTK_CONTAINER (toolbar1), quit_button); + gtk_container_set_border_width (GTK_CONTAINER (quit_button), 7); + gtk_tool_item_set_tooltip (GTK_TOOL_ITEM (quit_button), tooltips, "Quit GVPN Dialer", NULL); + + vbox2 = gtk_vbox_new (FALSE, 0); + gtk_widget_show (vbox2); + gnome_app_set_contents (GNOME_APP (vpnclient_main_window), vbox2); + + table3 = gtk_table_new (2, 2, FALSE); + gtk_widget_show (table3); + gtk_box_pack_start (GTK_BOX (vbox2), table3, FALSE, TRUE, 0); + gtk_widget_set_size_request (table3, 482, 89); + gtk_container_set_border_width (GTK_CONTAINER (table3), 20); + gtk_table_set_row_spacings (GTK_TABLE (table3), 8); + gtk_table_set_col_spacings (GTK_TABLE (table3), 19); + + label10 = gtk_label_new ("VPN Connection Profile"); + gtk_widget_show (label10); + gtk_table_attach (GTK_TABLE (table3), label10, 0, 1, 0, 1, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_label_set_justify (GTK_LABEL (label10), GTK_JUSTIFY_CENTER); + gtk_misc_set_alignment (GTK_MISC (label10), 0, 0.5); + + hostname_entry = gtk_entry_new (); + gtk_widget_show (hostname_entry); + gtk_table_attach (GTK_TABLE (table3), hostname_entry, 1, 2, 1, 2, + (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_entry_set_max_length (GTK_ENTRY (hostname_entry), 30); + gtk_editable_set_editable (GTK_EDITABLE (hostname_entry), FALSE); + + profile_entry = gtk_combo_new (); + g_object_set_data (G_OBJECT (GTK_COMBO (profile_entry)->popwin), + "GladeParentKey", profile_entry); + gtk_widget_show (profile_entry); + gtk_table_attach (GTK_TABLE (table3), profile_entry, 0, 1, 1, 2, + (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + + vpn_profile_entry_box = GTK_COMBO (profile_entry)->entry; + gtk_widget_show (vpn_profile_entry_box); + gtk_entry_set_max_length (GTK_ENTRY (vpn_profile_entry_box), 20); + gtk_editable_set_editable (GTK_EDITABLE (vpn_profile_entry_box), FALSE); + + label11 = gtk_label_new ("Hostname"); + gtk_widget_show (label11); + gtk_table_attach (GTK_TABLE (table3), label11, 1, 2, 0, 1, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 89, 0); + gtk_label_set_justify (GTK_LABEL (label11), GTK_JUSTIFY_CENTER); + gtk_misc_set_alignment (GTK_MISC (label11), 0, 0.5); + + hseparator2 = gtk_hseparator_new (); + gtk_widget_show (hseparator2); + gtk_box_pack_start (GTK_BOX (vbox2), hseparator2, FALSE, TRUE, 8); + + hbox1 = gtk_hbox_new (FALSE, 0); + gtk_widget_show (hbox1); + gtk_box_pack_start (GTK_BOX (vbox2), hbox1, FALSE, TRUE, 0); + + statusimage = gtk_image_new_from_stock ("gtk-dialog-info", GTK_ICON_SIZE_BUTTON); + gtk_widget_show (statusimage); + gtk_box_pack_start (GTK_BOX (hbox1), statusimage, FALSE, TRUE, 0); + gtk_widget_set_size_request (statusimage, 31, 21); + + statusbar = gnome_appbar_new (FALSE, TRUE, GNOME_PREFERENCES_NEVER); + gtk_widget_show (statusbar); + gtk_box_pack_start (GTK_BOX (hbox1), statusbar, TRUE, TRUE, 0); + gtk_container_set_border_width (GTK_CONTAINER (statusbar), 2); + + g_signal_connect ((gpointer) vpnclient_main_window, "show", + G_CALLBACK (on_vpnclient_main_window_show), + NULL); + g_signal_connect ((gpointer) vpnclient_main_window, "delete_event", + G_CALLBACK (on_vpnclient_main_window_delete_event), + NULL); + g_signal_connect ((gpointer) execute_vpn_button, "clicked", + G_CALLBACK (on_execute_vpn_button_clicked), + NULL); + g_signal_connect ((gpointer) disconnect_button, "clicked", + G_CALLBACK (on_disconnect_button_clicked), + NULL); + g_signal_connect ((gpointer) status_button, "clicked", + G_CALLBACK (on_status_button_clicked), + NULL); + g_signal_connect ((gpointer) quit_button, "clicked", + G_CALLBACK (on_quit_button_clicked), + NULL); + g_signal_connect ((gpointer) vpn_profile_entry_box, "changed", + G_CALLBACK (on_vpn_profile_entry_box_changed), + NULL); + + /* Store pointers to all widgets, for use by lookup_widget(). */ + GLADE_HOOKUP_OBJECT_NO_REF (vpnclient_main_window, vpnclient_main_window, "vpnclient_main_window"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, bonobodock1, "bonobodock1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, menubar1_uiinfo[0].widget, "file1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, file1_menu_uiinfo[0].widget, "quit1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, menubar1_uiinfo[1].widget, "edit1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, edit1_menu_uiinfo[0].widget, "preferences1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, menubar1_uiinfo[2].widget, "view1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, view1_menu_uiinfo[0].widget, "status2"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, menubar1_uiinfo[3].widget, "help1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, help1_menu_uiinfo[0].widget, "about1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, toolbar1, "toolbar1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, execute_vpn_button, "execute_vpn_button"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, disconnect_button, "disconnect_button"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, separatortoolitem1, "separatortoolitem1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, status_button, "status_button"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, separatortoolitem2, "separatortoolitem2"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, quit_button, "quit_button"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, vbox2, "vbox2"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, table3, "table3"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, label10, "label10"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, hostname_entry, "hostname_entry"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, profile_entry, "profile_entry"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, vpn_profile_entry_box, "vpn_profile_entry_box"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, label11, "label11"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, hseparator2, "hseparator2"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, hbox1, "hbox1"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, statusimage, "statusimage"); + GLADE_HOOKUP_OBJECT (vpnclient_main_window, statusbar, "statusbar"); + GLADE_HOOKUP_OBJECT_NO_REF (vpnclient_main_window, tooltips, "tooltips"); + + return vpnclient_main_window; +} + +GtkWidget* +create_login_window (void) +{ + GtkWidget *login_window; + GtkWidget *vbox5; + GtkWidget *invalid_user_pass; + GtkWidget *table1; + GtkWidget *label4; + GtkWidget *label5; + GtkWidget *enter_username; + GtkWidget *enter_password; + GtkWidget *hbuttonbox1; + GtkWidget *cancel_button; + GtkWidget *submit_button; + GdkColor color; + + login_window = gtk_window_new (GTK_WINDOW_TOPLEVEL); + gtk_window_set_title (GTK_WINDOW (login_window), "Login Window"); + gtk_window_set_default_size (GTK_WINDOW (login_window), 350, 190); + gtk_window_set_resizable (GTK_WINDOW (login_window), FALSE); + + vbox5 = gtk_vbox_new (FALSE, 0); + gtk_widget_show (vbox5); + gtk_container_add (GTK_CONTAINER (login_window), vbox5); + + invalid_user_pass = gtk_label_new (" "); + gtk_widget_show (invalid_user_pass); + gtk_box_pack_start (GTK_BOX (vbox5), invalid_user_pass, FALSE, FALSE, 0); + gtk_widget_set_size_request (invalid_user_pass, 40, 24); + /* set the color for the invalid user label */ + gdk_color_parse("red", &color); + gtk_widget_modify_fg(GTK_WIDGET(invalid_user_pass),GTK_STATE_NORMAL,&color); + + table1 = gtk_table_new (2, 2, FALSE); + gtk_widget_show (table1); + gtk_box_pack_start (GTK_BOX (vbox5), table1, FALSE, TRUE, 6); + gtk_widget_set_size_request (table1, 339, 87); + gtk_container_set_border_width (GTK_CONTAINER (table1), 13); + gtk_table_set_row_spacings (GTK_TABLE (table1), 15); + gtk_table_set_col_spacings (GTK_TABLE (table1), 2); + + label4 = gtk_label_new ("Enter Username:"); + gtk_widget_show (label4); + gtk_table_attach (GTK_TABLE (table1), label4, 0, 1, 0, 1, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_misc_set_alignment (GTK_MISC (label4), 0, 0.5); + + label5 = gtk_label_new ("Enter Password:"); + gtk_widget_show (label5); + gtk_table_attach (GTK_TABLE (table1), label5, 0, 1, 1, 2, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_misc_set_alignment (GTK_MISC (label5), 0, 0.5); + + enter_username = gtk_entry_new (); + gtk_widget_show (enter_username); + gtk_table_attach (GTK_TABLE (table1), enter_username, 1, 2, 0, 1, + (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_entry_set_max_length (GTK_ENTRY (enter_username), 30); + + enter_password = gtk_entry_new (); + gtk_widget_show (enter_password); + gtk_table_attach (GTK_TABLE (table1), enter_password, 1, 2, 1, 2, + (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_entry_set_max_length (GTK_ENTRY (enter_password), 30); + gtk_entry_set_visibility (GTK_ENTRY (enter_password), FALSE); + + hbuttonbox1 = gtk_hbutton_box_new (); + gtk_widget_show (hbuttonbox1); + gtk_box_pack_start (GTK_BOX (vbox5), hbuttonbox1, FALSE, FALSE, 3); + gtk_container_set_border_width (GTK_CONTAINER (hbuttonbox1), 14); + + cancel_button = gtk_button_new_from_stock ("gtk-cancel"); + gtk_widget_show (cancel_button); + gtk_container_add (GTK_CONTAINER (hbuttonbox1), cancel_button); + GTK_WIDGET_SET_FLAGS (cancel_button, GTK_CAN_DEFAULT); + + submit_button = gtk_button_new_from_stock ("gtk-ok"); + gtk_widget_show (submit_button); + gtk_container_add (GTK_CONTAINER (hbuttonbox1), submit_button); + GTK_WIDGET_SET_FLAGS (submit_button, GTK_CAN_DEFAULT); + + g_signal_connect ((gpointer) login_window, "delete_event", + G_CALLBACK (on_login_window_delete_event), + NULL); + g_signal_connect ((gpointer) enter_username, "activate", + G_CALLBACK (on_enter_username_activate), + NULL); + g_signal_connect ((gpointer) enter_password, "activate", + G_CALLBACK (on_enter_password_activate), + NULL); + g_signal_connect ((gpointer) cancel_button, "clicked", + G_CALLBACK (on_cancel_button_clicked), + NULL); + g_signal_connect ((gpointer) submit_button, "clicked", + G_CALLBACK (on_submit_button_clicked), + NULL); + g_signal_connect ((gpointer) submit_button, "activate", + G_CALLBACK (on_submit_button_activate), + NULL); + + /* Store pointers to all widgets, for use by lookup_widget(). */ + GLADE_HOOKUP_OBJECT_NO_REF (login_window, login_window, "login_window"); + GLADE_HOOKUP_OBJECT (login_window, vbox5, "vbox5"); + GLADE_HOOKUP_OBJECT (login_window, invalid_user_pass, "invalid_user_pass"); + GLADE_HOOKUP_OBJECT (login_window, table1, "table1"); + GLADE_HOOKUP_OBJECT (login_window, label4, "label4"); + GLADE_HOOKUP_OBJECT (login_window, label5, "label5"); + GLADE_HOOKUP_OBJECT (login_window, enter_username, "enter_username"); + GLADE_HOOKUP_OBJECT (login_window, enter_password, "enter_password"); + GLADE_HOOKUP_OBJECT (login_window, hbuttonbox1, "hbuttonbox1"); + GLADE_HOOKUP_OBJECT (login_window, cancel_button, "cancel_button"); + GLADE_HOOKUP_OBJECT (login_window, submit_button, "submit_button"); + + return login_window; +} + +GtkWidget* +create_preference_window (void) +{ + GtkWidget *preference_window; + GtkWidget *notebook1; + GtkWidget *vbox6; + GtkWidget *frame1; + GtkWidget *table2; + GtkWidget *label8; + GtkWidget *vpnclient_path_entry; + GtkWidget *label9; + GtkWidget *vpn_profile_path_entry; + GtkWidget *label16; + GtkWidget *vpnclient_default_user_entry; + GtkWidget *vpnclient_start_hidden_cb; + GtkWidget *label7; + GtkWidget *hbuttonbox2; + GtkWidget *preference_cancel_button; + GtkWidget *preference_apply_button; + GtkWidget *general_label; + + preference_window = gtk_window_new (GTK_WINDOW_TOPLEVEL); + gtk_widget_set_size_request (preference_window, 400, 300); + gtk_container_set_border_width (GTK_CONTAINER (preference_window), 7); + gtk_window_set_title (GTK_WINDOW (preference_window), "Preferences"); + gtk_window_set_resizable (GTK_WINDOW (preference_window), FALSE); + + notebook1 = gtk_notebook_new (); + gtk_widget_show (notebook1); + gtk_container_add (GTK_CONTAINER (preference_window), notebook1); + gtk_widget_set_size_request (notebook1, 302, 89); + + vbox6 = gtk_vbox_new (FALSE, 0); + gtk_widget_show (vbox6); + gtk_container_add (GTK_CONTAINER (notebook1), vbox6); + + frame1 = gtk_frame_new (NULL); + gtk_widget_show (frame1); + gtk_box_pack_start (GTK_BOX (vbox6), frame1, TRUE, TRUE, 0); + gtk_widget_set_size_request (frame1, 300, 48); + + table2 = gtk_table_new (4, 2, FALSE); + gtk_widget_show (table2); + gtk_container_add (GTK_CONTAINER (frame1), table2); + gtk_container_set_border_width (GTK_CONTAINER (table2), 12); + gtk_table_set_row_spacings (GTK_TABLE (table2), 8); + gtk_table_set_col_spacings (GTK_TABLE (table2), 5); + + label8 = gtk_label_new ("Path to vpnclient:"); + gtk_widget_show (label8); + gtk_table_attach (GTK_TABLE (table2), label8, 0, 1, 0, 1, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_label_set_justify (GTK_LABEL (label8), GTK_JUSTIFY_RIGHT); + gtk_misc_set_alignment (GTK_MISC (label8), 0, 0.5); + + vpnclient_path_entry = gtk_entry_new (); + gtk_widget_show (vpnclient_path_entry); + gtk_table_attach (GTK_TABLE (table2), vpnclient_path_entry, 1, 2, 0, 1, + (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + + label9 = gtk_label_new ("VPN Profile Path:"); + gtk_widget_show (label9); + gtk_table_attach (GTK_TABLE (table2), label9, 0, 1, 1, 2, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_label_set_justify (GTK_LABEL (label9), GTK_JUSTIFY_RIGHT); + gtk_misc_set_alignment (GTK_MISC (label9), 0, 0.5); + + vpn_profile_path_entry = gtk_entry_new (); + gtk_widget_show (vpn_profile_path_entry); + gtk_table_attach (GTK_TABLE (table2), vpn_profile_path_entry, 1, 2, 1, 2, + (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + + label16 = gtk_label_new ("Default User:"); + gtk_widget_show (label16); + gtk_table_attach (GTK_TABLE (table2), label16, 0, 1, 2, 3, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_misc_set_alignment (GTK_MISC (label16), 0, 0.5); + + vpnclient_default_user_entry = gtk_entry_new (); + gtk_widget_show (vpnclient_default_user_entry); + gtk_table_attach (GTK_TABLE (table2), vpnclient_default_user_entry, 1, 2, 2, 3, + (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + + vpnclient_start_hidden_cb = gtk_check_button_new_with_mnemonic ("Start Hidden"); + gtk_widget_show (vpnclient_start_hidden_cb); + gtk_table_attach (GTK_TABLE (table2), vpnclient_start_hidden_cb, 0, 2, 3, 4, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + + label7 = gtk_label_new ("Basic Options:"); + gtk_widget_show (label7); + gtk_frame_set_label_widget (GTK_FRAME (frame1), label7); + gtk_widget_set_size_request (label7, 92, 17); + + hbuttonbox2 = gtk_hbutton_box_new (); + gtk_widget_show (hbuttonbox2); + gtk_box_pack_start (GTK_BOX (vbox6), hbuttonbox2, FALSE, FALSE, 0); + gtk_widget_set_size_request (hbuttonbox2, 107, 62); + gtk_container_set_border_width (GTK_CONTAINER (hbuttonbox2), 7); + gtk_box_set_spacing (GTK_BOX (hbuttonbox2), 14); + + preference_cancel_button = gtk_button_new_from_stock ("gtk-cancel"); + gtk_widget_show (preference_cancel_button); + gtk_container_add (GTK_CONTAINER (hbuttonbox2), preference_cancel_button); + GTK_WIDGET_SET_FLAGS (preference_cancel_button, GTK_CAN_DEFAULT); + + preference_apply_button = gtk_button_new_from_stock ("gtk-apply"); + gtk_widget_show (preference_apply_button); + gtk_container_add (GTK_CONTAINER (hbuttonbox2), preference_apply_button); + GTK_WIDGET_SET_FLAGS (preference_apply_button, GTK_CAN_DEFAULT); + + general_label = gtk_label_new ("General"); + gtk_widget_show (general_label); + gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook1), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook1), 0), general_label); + + g_signal_connect ((gpointer) preference_window, "delete_event", + G_CALLBACK (on_preference_window_delete_event), + NULL); + g_signal_connect ((gpointer) preference_cancel_button, "clicked", + G_CALLBACK (on_preference_cancel_button_clicked), + NULL); + g_signal_connect ((gpointer) preference_apply_button, "clicked", + G_CALLBACK (on_preference_apply_button_clicked), + NULL); + + /* Store pointers to all widgets, for use by lookup_widget(). */ + GLADE_HOOKUP_OBJECT_NO_REF (preference_window, preference_window, "preference_window"); + GLADE_HOOKUP_OBJECT (preference_window, notebook1, "notebook1"); + GLADE_HOOKUP_OBJECT (preference_window, vbox6, "vbox6"); + GLADE_HOOKUP_OBJECT (preference_window, frame1, "frame1"); + GLADE_HOOKUP_OBJECT (preference_window, table2, "table2"); + GLADE_HOOKUP_OBJECT (preference_window, label8, "label8"); + GLADE_HOOKUP_OBJECT (preference_window, vpnclient_path_entry, "vpnclient_path_entry"); + GLADE_HOOKUP_OBJECT (preference_window, label9, "label9"); + GLADE_HOOKUP_OBJECT (preference_window, vpn_profile_path_entry, "vpn_profile_path_entry"); + GLADE_HOOKUP_OBJECT (preference_window, label16, "label16"); + GLADE_HOOKUP_OBJECT (preference_window, vpnclient_default_user_entry, "vpnclient_default_user_entry"); + GLADE_HOOKUP_OBJECT (preference_window, vpnclient_start_hidden_cb, "vpnclient_start_hidden_cb"); + GLADE_HOOKUP_OBJECT (preference_window, label7, "label7"); + GLADE_HOOKUP_OBJECT (preference_window, hbuttonbox2, "hbuttonbox2"); + GLADE_HOOKUP_OBJECT (preference_window, preference_cancel_button, "preference_cancel_button"); + GLADE_HOOKUP_OBJECT (preference_window, preference_apply_button, "preference_apply_button"); + GLADE_HOOKUP_OBJECT (preference_window, general_label, "general_label"); + + return preference_window; +} + +GtkWidget* +create_status_window (void) +{ + GtkWidget *status_window; + GdkPixbuf *status_window_icon_pixbuf; + GtkWidget *notebook2; + GtkWidget *vbox7; + GtkWidget *frame4; + GtkWidget *trafficstats_text; + GtkWidget *trafficstats; + GtkWidget *frame5; + GtkWidget *tunnelstats_text; + GtkWidget *tunnelstats; + GtkWidget *frame6; + GtkWidget *routestats_text; + GtkWidget *routestats; + GtkWidget *hbuttonbox4; + GtkWidget *close_status_window_button; + GtkWidget *label15; + + status_window = gtk_window_new (GTK_WINDOW_TOPLEVEL); + gtk_widget_set_size_request (status_window, 433, -1); + gtk_container_set_border_width (GTK_CONTAINER (status_window), 7); + gtk_window_set_title (GTK_WINDOW (status_window), "Status Window"); + gtk_window_set_default_size (GTK_WINDOW (status_window), 433, 431); + gtk_window_set_resizable (GTK_WINDOW (status_window), FALSE); + status_window_icon_pixbuf = create_pixbuf ("gvpndialer/Status-Dock.png"); + if (status_window_icon_pixbuf) + { + gtk_window_set_icon (GTK_WINDOW (status_window), status_window_icon_pixbuf); + gdk_pixbuf_unref (status_window_icon_pixbuf); + } + + notebook2 = gtk_notebook_new (); + gtk_widget_show (notebook2); + gtk_container_add (GTK_CONTAINER (status_window), notebook2); + gtk_widget_set_size_request (notebook2, 143, -1); + gtk_container_set_border_width (GTK_CONTAINER (notebook2), 6); + gtk_notebook_set_scrollable (GTK_NOTEBOOK (notebook2), TRUE); + gtk_notebook_popup_enable (GTK_NOTEBOOK (notebook2)); + + vbox7 = gtk_vbox_new (FALSE, 0); + gtk_widget_show (vbox7); + gtk_container_add (GTK_CONTAINER (notebook2), vbox7); + + frame4 = gtk_frame_new (NULL); + gtk_widget_show (frame4); + gtk_box_pack_start (GTK_BOX (vbox7), frame4, TRUE, TRUE, 0); + gtk_widget_set_size_request (frame4, 172, 126); + + trafficstats_text = gtk_text_view_new (); + gtk_widget_show (trafficstats_text); + gtk_container_add (GTK_CONTAINER (frame4), trafficstats_text); + gtk_widget_set_size_request (trafficstats_text, 168, -1); + gtk_container_set_border_width (GTK_CONTAINER (trafficstats_text), 1); + GTK_WIDGET_UNSET_FLAGS (trafficstats_text, GTK_CAN_FOCUS); + gtk_text_view_set_editable (GTK_TEXT_VIEW (trafficstats_text), FALSE); + gtk_text_view_set_accepts_tab (GTK_TEXT_VIEW (trafficstats_text), FALSE); + gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (trafficstats_text), FALSE); + gtk_text_buffer_set_text (gtk_text_view_get_buffer (GTK_TEXT_VIEW (trafficstats_text)), "", -1); + + trafficstats = gtk_label_new ("Traffic Statistics"); + gtk_widget_show (trafficstats); + gtk_frame_set_label_widget (GTK_FRAME (frame4), trafficstats); + + frame5 = gtk_frame_new (NULL); + gtk_widget_show (frame5); + gtk_box_pack_start (GTK_BOX (vbox7), frame5, TRUE, TRUE, 0); + gtk_widget_set_size_request (frame5, 204, -1); + + tunnelstats_text = gtk_text_view_new (); + gtk_widget_show (tunnelstats_text); + gtk_container_add (GTK_CONTAINER (frame5), tunnelstats_text); + gtk_widget_set_size_request (tunnelstats_text, 200, -1); + gtk_container_set_border_width (GTK_CONTAINER (tunnelstats_text), 1); + GTK_WIDGET_UNSET_FLAGS (tunnelstats_text, GTK_CAN_FOCUS); + gtk_text_view_set_editable (GTK_TEXT_VIEW (tunnelstats_text), FALSE); + gtk_text_view_set_accepts_tab (GTK_TEXT_VIEW (tunnelstats_text), FALSE); + gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (tunnelstats_text), FALSE); + gtk_text_buffer_set_text (gtk_text_view_get_buffer (GTK_TEXT_VIEW (tunnelstats_text)), "", -1); + + tunnelstats = gtk_label_new ("Tunnel Statistics"); + gtk_widget_show (tunnelstats); + gtk_frame_set_label_widget (GTK_FRAME (frame5), tunnelstats); + gtk_widget_set_size_request (tunnelstats, 97, 15); + + frame6 = gtk_frame_new (NULL); + gtk_widget_show (frame6); + gtk_box_pack_start (GTK_BOX (vbox7), frame6, TRUE, TRUE, 0); + gtk_widget_set_size_request (frame6, 204, 105); + + routestats_text = gtk_text_view_new (); + gtk_widget_show (routestats_text); + gtk_container_add (GTK_CONTAINER (frame6), routestats_text); + gtk_widget_set_size_request (routestats_text, 200, 89); + gtk_container_set_border_width (GTK_CONTAINER (routestats_text), 1); + GTK_WIDGET_UNSET_FLAGS (routestats_text, GTK_CAN_FOCUS); + gtk_text_view_set_editable (GTK_TEXT_VIEW (routestats_text), FALSE); + gtk_text_view_set_accepts_tab (GTK_TEXT_VIEW (routestats_text), FALSE); + gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (routestats_text), FALSE); + gtk_text_buffer_set_text (gtk_text_view_get_buffer (GTK_TEXT_VIEW (routestats_text)), "", -1); + + routestats = gtk_label_new ("Route Statistics"); + gtk_widget_show (routestats); + gtk_frame_set_label_widget (GTK_FRAME (frame6), routestats); + + hbuttonbox4 = gtk_hbutton_box_new (); + gtk_widget_show (hbuttonbox4); + gtk_box_pack_start (GTK_BOX (vbox7), hbuttonbox4, TRUE, TRUE, 0); + gtk_widget_set_size_request (hbuttonbox4, 85, 43); + gtk_button_box_set_layout (GTK_BUTTON_BOX (hbuttonbox4), GTK_BUTTONBOX_END); + + close_status_window_button = gtk_button_new_from_stock ("gtk-close"); + gtk_widget_show (close_status_window_button); + gtk_container_add (GTK_CONTAINER (hbuttonbox4), close_status_window_button); + GTK_WIDGET_SET_FLAGS (close_status_window_button, GTK_CAN_DEFAULT); + + label15 = gtk_label_new ("VPN Statistics"); + gtk_widget_show (label15); + gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook2), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook2), 0), label15); + + g_signal_connect ((gpointer) status_window, "delete_event", + G_CALLBACK (on_status_window_delete_event), + NULL); + g_signal_connect ((gpointer) status_window, "show", + G_CALLBACK (on_status_window_show), + NULL); + g_signal_connect ((gpointer) close_status_window_button, "clicked", + G_CALLBACK (on_close_status_window_button_clicked), + NULL); + + /* Store pointers to all widgets, for use by lookup_widget(). */ + GLADE_HOOKUP_OBJECT_NO_REF (status_window, status_window, "status_window"); + GLADE_HOOKUP_OBJECT (status_window, notebook2, "notebook2"); + GLADE_HOOKUP_OBJECT (status_window, vbox7, "vbox7"); + GLADE_HOOKUP_OBJECT (status_window, frame4, "frame4"); + GLADE_HOOKUP_OBJECT (status_window, trafficstats_text, "trafficstats_text"); + GLADE_HOOKUP_OBJECT (status_window, trafficstats, "trafficstats"); + GLADE_HOOKUP_OBJECT (status_window, frame5, "frame5"); + GLADE_HOOKUP_OBJECT (status_window, tunnelstats_text, "tunnelstats_text"); + GLADE_HOOKUP_OBJECT (status_window, tunnelstats, "tunnelstats"); + GLADE_HOOKUP_OBJECT (status_window, frame6, "frame6"); + GLADE_HOOKUP_OBJECT (status_window, routestats_text, "routestats_text"); + GLADE_HOOKUP_OBJECT (status_window, routestats, "routestats"); + GLADE_HOOKUP_OBJECT (status_window, hbuttonbox4, "hbuttonbox4"); + GLADE_HOOKUP_OBJECT (status_window, close_status_window_button, "close_status_window_button"); + GLADE_HOOKUP_OBJECT (status_window, label15, "label15"); + + return status_window; +} + +GtkWidget* +create_gvpn_dialer_about (void) +{ + const gchar *authors[] = { + "Stanley Kamithi, Raleigh, North Carolina", + NULL + }; + const gchar *documenters[] = { NULL }; + gchar *translators = NULL; + GtkWidget *gvpn_dialer_about; + + gvpn_dialer_about = gnome_about_new ("Gvpn_dialer", VERSION, + "2004 GPL Copyright, Stanley Kamithi", + "A GNOME2 GUI\nFor the Cisco Linux\nVPN Client", + authors, + documenters, + translators, + NULL); + gtk_container_set_border_width (GTK_CONTAINER (gvpn_dialer_about), 5); + gtk_window_set_type_hint (GTK_WINDOW (gvpn_dialer_about), GDK_WINDOW_TYPE_HINT_DIALOG); + + /* Store pointers to all widgets, for use by lookup_widget(). */ + GLADE_HOOKUP_OBJECT_NO_REF (gvpn_dialer_about, gvpn_dialer_about, "gvpn_dialer_about"); + + return gvpn_dialer_about; +} + +GtkWidget* +create_group_password (void) +{ + GtkWidget *group_password; + GtkWidget *vbox8; + GtkWidget *table4; + GtkWidget *label18; + GtkWidget *group_pw_entry; + GtkWidget *hbuttonbox5; + GtkWidget *group_pw_cancel_button; + GtkWidget *group_pw_okay_button; + GtkWidget *grouppw_warning; + GdkColor color; + + group_password = gtk_window_new (GTK_WINDOW_TOPLEVEL); + gtk_window_set_title (GTK_WINDOW (group_password), "Enter Group Password"); + gtk_window_set_default_size (GTK_WINDOW (group_password), 350, 101); + gtk_window_set_resizable (GTK_WINDOW (group_password), FALSE); + + vbox8 = gtk_vbox_new (FALSE, 0); + gtk_widget_show (vbox8); + gtk_container_add (GTK_CONTAINER (group_password), vbox8); + + table4 = gtk_table_new (1, 2, FALSE); + gtk_widget_show (table4); + gtk_box_pack_start (GTK_BOX (vbox8), table4, FALSE, FALSE, 0); + gtk_widget_set_size_request (table4, 339, 50); + gtk_container_set_border_width (GTK_CONTAINER (table4), 15); + gtk_table_set_row_spacings (GTK_TABLE (table4), 15); + gtk_table_set_col_spacings (GTK_TABLE (table4), 2); + + label18 = gtk_label_new ("Enter Group Password:"); + gtk_widget_show (label18); + gtk_table_attach (GTK_TABLE (table4), label18, 0, 1, 0, 1, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_misc_set_alignment (GTK_MISC (label18), 0, 0.5); + + group_pw_entry = gtk_entry_new (); + gtk_widget_show (group_pw_entry); + gtk_table_attach (GTK_TABLE (table4), group_pw_entry, 1, 2, 0, 1, + (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), + (GtkAttachOptions) (0), 0, 0); + gtk_entry_set_max_length (GTK_ENTRY (group_pw_entry), 30); + gtk_entry_set_visibility (GTK_ENTRY (group_pw_entry), FALSE); + + hbuttonbox5 = gtk_hbutton_box_new (); + gtk_widget_show (hbuttonbox5); + gtk_box_pack_start (GTK_BOX (vbox8), hbuttonbox5, FALSE, FALSE, 6); + gtk_container_set_border_width (GTK_CONTAINER (hbuttonbox5), 9); + + group_pw_cancel_button = gtk_button_new_from_stock ("gtk-cancel"); + gtk_widget_show (group_pw_cancel_button); + gtk_container_add (GTK_CONTAINER (hbuttonbox5), group_pw_cancel_button); + GTK_WIDGET_SET_FLAGS (group_pw_cancel_button, GTK_CAN_DEFAULT); + + group_pw_okay_button = gtk_button_new_from_stock ("gtk-ok"); + gtk_widget_show (group_pw_okay_button); + gtk_container_add (GTK_CONTAINER (hbuttonbox5), group_pw_okay_button); + GTK_WIDGET_SET_FLAGS (group_pw_okay_button, GTK_CAN_DEFAULT); + + grouppw_warning = gtk_label_new (""); + gdk_color_parse("red",&color); + gtk_widget_modify_fg(GTK_WIDGET(grouppw_warning),GTK_STATE_NORMAL,&color); + + gtk_widget_show (grouppw_warning); + gtk_box_pack_start (GTK_BOX (vbox8), grouppw_warning, FALSE, FALSE, 0); + + g_signal_connect ((gpointer) group_password, "delete_event", + G_CALLBACK (on_login_window_delete_event), + NULL); + g_signal_connect ((gpointer) group_pw_entry, "activate", + G_CALLBACK (on_enter_group_password_activate), + NULL); + g_signal_connect ((gpointer) group_pw_cancel_button, "clicked", + G_CALLBACK (on_group_pw_cancel_button_clicked), + NULL); + g_signal_connect ((gpointer) group_pw_okay_button, "clicked", + G_CALLBACK (on_group_pw_submit_button_clicked), + NULL); + + /* Store pointers to all widgets, for use by lookup_widget(). */ + GLADE_HOOKUP_OBJECT_NO_REF (group_password, group_password, "group_password"); + GLADE_HOOKUP_OBJECT (group_password, vbox8, "vbox8"); + GLADE_HOOKUP_OBJECT (group_password, table4, "table4"); + GLADE_HOOKUP_OBJECT (group_password, label18, "label18"); + GLADE_HOOKUP_OBJECT (group_password, group_pw_entry, "group_pw_entry"); + GLADE_HOOKUP_OBJECT (group_password, hbuttonbox5, "hbuttonbox5"); + GLADE_HOOKUP_OBJECT (group_password, group_pw_cancel_button, "group_pw_cancel_button"); + GLADE_HOOKUP_OBJECT (group_password, group_pw_okay_button, "group_pw_okay_button"); + GLADE_HOOKUP_OBJECT (group_password, grouppw_warning, "grouppw_warning"); + + return group_password; +} diff --git a/projects/gvpndialer/trunk/src/interface.h b/projects/gvpndialer/trunk/src/interface.h new file mode 100644 index 0000000..2f6ebfd --- /dev/null +++ b/projects/gvpndialer/trunk/src/interface.h @@ -0,0 +1,10 @@ +/* + * DO NOT EDIT THIS FILE - it is generated by Glade. + */ + +GtkWidget* create_vpnclient_main_window (void); +GtkWidget* create_login_window (void); +GtkWidget* create_preference_window (void); +GtkWidget* create_status_window (void); +GtkWidget* create_gvpn_dialer_about (void); +GtkWidget* create_group_password (void); diff --git a/projects/gvpndialer/trunk/src/main.c b/projects/gvpndialer/trunk/src/main.c new file mode 100644 index 0000000..9aea83f --- /dev/null +++ b/projects/gvpndialer/trunk/src/main.c @@ -0,0 +1,70 @@ +/* + * Initial main.c file generated by Glade. Edit as required. + * Glade will not overwrite this file. + */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <gnome.h> + +#include "interface.h" +#include "support.h" +#include "eggtrayicon.h" + +#include <gconf/gconf-client.h> + +int +main (int argc, char *argv[]) +{ + GtkWidget *vpnclient_main_window; + GtkWidget *login_window; + GtkWidget *preference_window; + GtkWidget *status_window; + GtkWidget *group_password_window; + GError *err; + const gchar *vpnconfig_dir; + gchar *val; + GConfClient *client; + gnome_program_init (PACKAGE, VERSION, LIBGNOMEUI_MODULE, + argc, argv, + GNOME_PARAM_APP_DATADIR, PACKAGE_DATA_DIR, + NULL); + + client = gconf_client_get_default(); + + /* + * The following code was added by Glade to create one of each component + * (except popup menus), just so that you see something after building + * the project. Delete any components that you don't want shown initially. + */ + vpnclient_main_window = create_vpnclient_main_window (); + gtk_widget_show(vpnclient_main_window); + if(gconf_client_get_bool(client, "/apps/gnome-settings/gvpndialer/starthidden", NULL)) + gtk_widget_hide(vpnclient_main_window); + + /*create status window..assign a key pointer to find it within + callback.c */ + status_window = create_status_window(); + g_object_set_data(G_OBJECT(vpnclient_main_window),"statuswindow",status_window); + + /* create login window. assign a key pointer to find it within + callback.c */ + login_window = create_login_window(); + g_object_set_data(G_OBJECT(vpnclient_main_window),"loginwindow_key", + login_window); + g_object_set_data(G_OBJECT(login_window),"mainwindow_key",vpnclient_main_window); + /* create group password window. assign a key pointer to find it + within callback.c */ + group_password_window = create_group_password(); + g_object_set_data(G_OBJECT(vpnclient_main_window),"group_pass_win",group_password_window); + g_object_set_data(G_OBJECT(group_password_window),"mainwindow_key",vpnclient_main_window); + /* start the system tray */ + + tray_create(vpnclient_main_window); + /* start the program */ + gtk_main (); + return 0; + +} diff --git a/projects/gvpndialer/trunk/src/main.c.dist b/projects/gvpndialer/trunk/src/main.c.dist new file mode 100644 index 0000000..a06a378 --- /dev/null +++ b/projects/gvpndialer/trunk/src/main.c.dist @@ -0,0 +1,69 @@ +/* + * Initial main.c file generated by Glade. Edit as required. + * Glade will not overwrite this file. + */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <gnome.h> + +#include "interface.h" +#include "support.h" +#include "eggtrayicon.h" + +#include <gconf/gconf-client.h> + +int +main (int argc, char *argv[]) +{ + GtkWidget *vpnclient_main_window; + GtkWidget *login_window; + GtkWidget *preference_window; + GtkWidget *status_window; + GtkWidget *group_password_window; + GError *err; + const gchar *vpnconfig_dir; + gchar *val; + GConfClient *client; + gnome_program_init (PACKAGE, VERSION, LIBGNOMEUI_MODULE, + argc, argv, + GNOME_PARAM_APP_DATADIR, PACKAGE_DATA_DIR, + NULL); + + client = gconf_client_get_default(); + + /* + * The following code was added by Glade to create one of each component + * (except popup menus), just so that you see something after building + * the project. Delete any components that you don't want shown initially. + */ + vpnclient_main_window = create_vpnclient_main_window (); + if(!gconf_client_get_bool(client, "/apps/gnome-settings/gvpndialer/starthidden", NULL)) + gtk_widget_show (vpnclient_main_window); + + /*create status window..assign a key pointer to find it within + callback.c */ + status_window = create_status_window(); + g_object_set_data(G_OBJECT(vpnclient_main_window),"statuswindow",status_window); + + /* create login window. assign a key pointer to find it within + callback.c */ + login_window = create_login_window(); + g_object_set_data(G_OBJECT(vpnclient_main_window),"loginwindow_key", + login_window); + g_object_set_data(G_OBJECT(login_window),"mainwindow_key",vpnclient_main_window); + /* create group password window. assign a key pointer to find it + within callback.c */ + group_password_window = create_group_password(); + g_object_set_data(G_OBJECT(vpnclient_main_window),"group_pass_win",group_password_window); + g_object_set_data(G_OBJECT(group_password_window),"mainwindow_key",vpnclient_main_window); + /* start the system tray */ + + tray_create(vpnclient_main_window); + /* start the program */ + gtk_main (); + return 0; + +} diff --git a/projects/gvpndialer/trunk/src/support.c b/projects/gvpndialer/trunk/src/support.c new file mode 100644 index 0000000..554c007 --- /dev/null +++ b/projects/gvpndialer/trunk/src/support.c @@ -0,0 +1,115 @@ +/* + * DO NOT EDIT THIS FILE - it is generated by Glade. + */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> +#include <string.h> +#include <stdio.h> + +#include <gnome.h> + +#include "support.h" + +GtkWidget* +lookup_widget (GtkWidget *widget, + const gchar *widget_name) +{ + GtkWidget *parent, *found_widget; + + for (;;) + { + if (GTK_IS_MENU (widget)) + parent = gtk_menu_get_attach_widget (GTK_MENU (widget)); + else + parent = widget->parent; + if (!parent) + parent = (GtkWidget*) g_object_get_data (G_OBJECT (widget), "GladeParentKey"); + if (parent == NULL) + break; + widget = parent; + } + + found_widget = (GtkWidget*) g_object_get_data (G_OBJECT (widget), + widget_name); + if (!found_widget) + g_warning ("Widget not found: %s", widget_name); + return found_widget; +} + +/* This is an internally used function to create pixmaps. */ +GtkWidget* +create_pixmap (GtkWidget *widget, + const gchar *filename) +{ + GtkWidget *pixmap; + gchar *pathname; + + if (!filename || !filename[0]) + return gtk_image_new (); + + pathname = gnome_program_locate_file (NULL, GNOME_FILE_DOMAIN_APP_PIXMAP, + filename, TRUE, NULL); + if (!pathname) + { + g_warning ("Couldn't find pixmap file: %s", filename); + return gtk_image_new (); + } + + pixmap = gtk_image_new_from_file (pathname); + g_free (pathname); + return pixmap; +} + +/* This is an internally used function to create pixmaps. */ +GdkPixbuf* +create_pixbuf (const gchar *filename) +{ + gchar *pathname = NULL; + GdkPixbuf *pixbuf; + GError *error = NULL; + + if (!filename || !filename[0]) + return NULL; + + pathname = gnome_program_locate_file (NULL, GNOME_FILE_DOMAIN_APP_PIXMAP, + filename, TRUE, NULL); + + if (!pathname) + { + g_warning ("Couldn't find pixmap file: %s", filename); + return NULL; + } + + pixbuf = gdk_pixbuf_new_from_file (pathname, &error); + if (!pixbuf) + { + fprintf (stderr, "Failed to load pixbuf file: %s: %s\n", + pathname, error->message); + g_error_free (error); + } + g_free (pathname); + return pixbuf; +} + +/* This is used to set ATK action descriptions. */ +void +glade_set_atk_action_description (AtkAction *action, + const gchar *action_name, + const gchar *description) +{ + gint n_actions, i; + + n_actions = atk_action_get_n_actions (action); + for (i = 0; i < n_actions; i++) + { + if (!strcmp (atk_action_get_name (action, i), action_name)) + atk_action_set_description (action, i, description); + } +} + diff --git a/projects/gvpndialer/trunk/src/support.h b/projects/gvpndialer/trunk/src/support.h new file mode 100644 index 0000000..66405b4 --- /dev/null +++ b/projects/gvpndialer/trunk/src/support.h @@ -0,0 +1,41 @@ +/* + * DO NOT EDIT THIS FILE - it is generated by Glade. + */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <gnome.h> + +/* + * Public Functions. + */ + +/* + * This function returns a widget in a component created by Glade. + * Call it with the toplevel widget in the component (i.e. a window/dialog), + * or alternatively any widget in the component, and the name of the widget + * you want returned. + */ +GtkWidget* lookup_widget (GtkWidget *widget, + const gchar *widget_name); + + + +/* + * Private Functions. + */ + +/* This is used to create the pixmaps used in the interface. */ +GtkWidget* create_pixmap (GtkWidget *widget, + const gchar *filename); + +/* This is used to create the pixbufs used in the interface. */ +GdkPixbuf* create_pixbuf (const gchar *filename); + +/* This is used to set ATK action descriptions. */ +void glade_set_atk_action_description (AtkAction *action, + const gchar *action_name, + const gchar *description); + diff --git a/projects/gvpndialer/trunk/stamp-h.in b/projects/gvpndialer/trunk/stamp-h.in new file mode 100644 index 0000000..9788f70 --- /dev/null +++ b/projects/gvpndialer/trunk/stamp-h.in @@ -0,0 +1 @@ +timestamp |