gadmin-bind-0.2.5/0000755000076400007640000000000011350706715012656 5ustar bomanbomangadmin-bind-0.2.5/missing0000755000000000000000000002403610360304720013764 0ustar rootroot#! /bin/sh # Common stub for a few missing GNU programs while installing. # Copyright (C) 1996, 1997, 1999, 2000, 2002 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # 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. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi case "$1" in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case "$1" in -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch]" ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing 0.4 - GNU automake" ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; aclocal*) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case "$f" in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is needed, and you do not seem to have it handy on your system. You might have modified some files without having the proper tools for further handling them. You can get \`$1Help2man' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi if [ ! -f y.tab.h ]; then echo >y.tab.h fi if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` fi if [ -f "$file" ]; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then # We have makeinfo, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` fi touch $file ;; tar) shift if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 fi # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case "$firstarg" in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case "$firstarg" in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and you do not seem to have it handy on your system. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequirements for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 gadmin-bind-0.2.5/NEWS0000644000000000000000000000003411350703717013065 0ustar rootroot Visit: www.gadmintools.org gadmin-bind-0.2.5/MAKE_TGZ0000755000000000000000000000036411350704350013555 0ustar rootroot#!/bin/sh version='0.2.5' beta='' make clean rm -f config.cache rm -f Makefile rm -f config.h rm -f config.log rm -f config.status rm -f *.bak rm -f stamp* rm -f po/*.gmo cd .. tar -hzcvf gadmin-bind-$version$beta.tar.gz gadmin-bind-$version gadmin-bind-0.2.5/src/0000755000076400007640000000000011350705637013447 5ustar bomanbomangadmin-bind-0.2.5/src/clear_log_tab.h0000644000000000000000000000174211350705002016077 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef clear_log_tab_H # define clear_log_tab_H extern struct w *widgets; void clear_log_tab(struct w *widgets); #endif gadmin-bind-0.2.5/src/populate_domain_treeview.c0000644000000000000000000002611011350705002020403 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "widgets.h" #include "gettext.h" #include "allocate.h" #include "reverse_address.h" #include "select_first_domain.h" /* Compat for the old gbindadmin */ #include "commands.h" extern char CHROOT_PATH_BUF[1024]; extern int MAX_CONF_LINE; char * get_reverse_ip_for_zone(char *domain_name, char addr_type[128]); /* Insert all forward zones and their network adresses */ void populate_zones(struct w *widgets) { FILE *fp; long file_size = 0; GtkTreeIter iter; gchar *named_conf, *utf8=NULL; GtkTreePath *path; gboolean edit=0; int set_cursorpath=0; char *line, *domain_name, *fwd_addr = NULL; char *rev_addr, *rev_file, *type, *mask, *tmp, *tmp_addr; named_conf = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); if((fp=fopen(named_conf, "r"))==NULL) { printf("Couldnt find: %s\n", named_conf); g_free(named_conf); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); domain_name = allocate(MAX_CONF_LINE); rev_file = allocate(MAX_CONF_LINE); type = allocate(MAX_CONF_LINE); tmp = allocate(MAX_CONF_LINE); tmp_addr = allocate(MAX_CONF_LINE); mask = allocate(MAX_CONF_LINE); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > MAX_CONF_LINE-3 ) continue; /* Skip comments */ if( strstr(line, "/*") ) { while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "*/") ) break; } } /* Skip comment */ if( strstr(line, "//") ) continue; /* Ignore any options */ if( ! strstr(line, "zone") && strstr(line, "{") && ! strstr(line, "}") ) while(fgets(line, file_size, fp)!=NULL) if( strstr(line, "}") ) break; /* Forward zone begin */ if( strstr(line, "zone ") && strstr(line, "{") // && strstr(line, "\"") // && ! strstr(line, "forward.zone") && ! strstr(line, "localhost") && ! strstr(line, ".in-addr.arpa") && ! strstr(line, ".ip6.arpa") && ! strstr(line, ".ip6.int") && ! strstr(line, "hint") ) { sscanf(line, "%*s %s", domain_name); snprintf(tmp, 8000, "%s", &domain_name[1]); snprintf(domain_name, strlen(tmp), "%s", tmp); /* Dont append root.hints or a malformed local zone */ if( ! strcmp(domain_name, ".") || ! strcmp(domain_name, "127.0.0") ) continue; gtk_list_store_append(GTK_LIST_STORE(widgets->domain_store), &iter); utf8 = g_locale_to_utf8(domain_name, strlen(domain_name), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->domain_store), &iter, 0, utf8, -1); /* Insert IPv4 forward network address */ rev_addr = get_reverse_ip_for_zone(domain_name, "ipv4"); if( rev_addr != NULL ) { // printf("Reverse IPv4 network address: [%s]\n", rev_addr); fwd_addr = reverse_address(rev_addr); utf8 = g_locale_to_utf8(fwd_addr, strlen(fwd_addr), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->domain_store), &iter, 1, utf8, -1); free(fwd_addr); } free(rev_addr); /* Insert IPv6 forward network address */ rev_addr = get_reverse_ip_for_zone(domain_name, "ipv6"); if( rev_addr != NULL ) { //printf("Reverse IPv6 network address: [%s]\n", rev_addr); /* Add A host part to the network address */ snprintf(tmp, 1024, "9.7.b.9.a.e.e.f.f.f.f.8.3.1.2.0.%s.ip6.arpa", rev_addr); snprintf(rev_addr, 1024, "%s", tmp); // Some host part + named.conf zone network address part. // Special thing, there should be a comment with the mask // like this: zone "x.x.x.x.x.x.x" { #mask 64 // Removed.. Howto get mask from ipv6... sscanf(line, "%*s %*s %*s %*s %*s %s", mask); fwd_addr = reverse_address(rev_addr); // printf("REV: %s\n", rev_addr); // printf("FWD: %s\n", fwd_addr); /* Dont alter the fwd_addr pointer */ snprintf(tmp_addr, 1024, "%s", fwd_addr); /* Add the network mask */ if( strlen(mask) > 0 ) { snprintf(tmp, 1024, "%s/%s", tmp_addr, mask); snprintf(tmp_addr, 1024, "%s", tmp); } utf8 = g_locale_to_utf8(tmp_addr, strlen(tmp_addr), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->domain_store), &iter, 2, utf8, -1); free(fwd_addr); } free(rev_addr); set_cursorpath = 1; /* DNS Type */ while(fgets(line, file_size, fp)!=NULL) if( strstr(line, "type") && strlen(domain_name) > 3 ) { sscanf(line, "%*s %s", type); snprintf(tmp, 8000, "%s", type); snprintf(type, strlen(tmp), "%s", tmp); utf8 = g_locale_to_utf8(type, strlen(type), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->domain_store), &iter, 3, utf8, -1); break; } } } fclose(fp); g_free(named_conf); free(line); free(domain_name); free(rev_file); free(type); free(tmp); free(tmp_addr); free(mask); /* Forward zones populated, Select the first domain */ path = gtk_tree_path_new_first(); gtk_tree_view_set_cursor(GTK_TREE_VIEW(widgets->domain_treeview), path, NULL, edit); gtk_tree_path_free(path); } /* Returns the specified zones reverse network address or NULL if not found */ /* Valid addr_type's are "ipv4" or "ipv6" */ char * get_reverse_ip_for_zone(char *domain_name, char addr_type[128]) { FILE *fp; long file_size = 0; int i = 0, rev_zone_found = 0, fwd_zone_found = 0; char *line, *mask, *tmp; gchar *named_conf, *rev_file, *match_domain_name; char *rev_ip = NULL; /* For compat with gbindadmin */ gchar *old_zone, *new_zone; FILE *move_fp; gchar *cmd; named_conf = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); if((fp=fopen(named_conf, "r"))==NULL) { printf("Couldnt find: %s\n", named_conf); g_free(named_conf); return rev_ip; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); rev_ip = allocate(MAX_CONF_LINE+1); if( strstr(addr_type, "ipv4") ) { rev_file = g_strdup_printf("\"sites/%s/reverse.zone.ipv4\"", domain_name); /* For compability with gbindadmin we need to rename the old reverse.zone to reverse.zone.ipv4 */ old_zone = g_strdup_printf("%s/etc/sites/%s/reverse.zone", CHROOT_PATH_BUF, domain_name); new_zone = g_strdup_printf("%s/etc/sites/%s/reverse.zone.ipv4", CHROOT_PATH_BUF, domain_name); if( file_exists(old_zone) && ! file_exists(new_zone) ) { cmd = g_strdup_printf("mv %s %s", old_zone, new_zone); if((move_fp=popen(cmd, "r"))==NULL) { } else pclose(move_fp); g_free(cmd); } g_free(old_zone); g_free(new_zone); /* Compat end */ } else rev_file = g_strdup_printf("\"sites/%s/reverse.zone.ipv6\"", domain_name); tmp = allocate(MAX_CONF_LINE); mask = allocate(MAX_CONF_LINE); match_domain_name = g_strdup_printf("\"%s\"", domain_name); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > MAX_CONF_LINE-3 ) continue; /* Skip comments */ if( strstr(line, "/*") && ! strstr(line, "*/") ) { while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "*/") ) break; } } /* Skip comment */ if( strstr(line, "//") || (strstr(line, "/*") && strstr(line, "*/")) ) continue; /* Ignore any options */ if( ! strstr(line, "zone") && strstr(line, "{") && ! strstr(line, "}") ) while(fgets(line, file_size, fp)!=NULL) if( strstr(line, "}") ) break; /* Scroll to the matching forward zone */ if( ! strstr(line, "zone") && ! strstr(line, match_domain_name) && ! strstr(line, "{") ) continue; fwd_zone_found = 1; break; } if( ! fwd_zone_found ) { printf("Forward zone not found: [%s]\n", domain_name); return rev_ip; } if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > MAX_CONF_LINE-3 ) continue; /* Skip comments */ if( strstr(line, "/*") && ! strstr(line, "*/") ) { while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "*/") ) break; } } /* Skip comment */ if( strstr(line, "//") || (strstr(line, "/*") && strstr(line, "*/")) ) continue; /* Ignore any options */ if( ! strstr(line, "zone") && strstr(line, "{") && ! strstr(line, "}") ) while(fgets(line, file_size, fp)!=NULL) if( strstr(line, "}") ) break; /* Reverse zone begin */ if( strstr(line, "zone ") && strstr(line, "{") && ! strstr(line, "forward.zone") && ! strstr(line, "localhost") && ! strstr(line, "127.in-addr.arpa") && ! strstr(line, "hint") && ( strstr(line, ".in-addr.arpa") || strstr(line, ".ip6.arpa") ) ) { /* Looking for ipv4 but got ipv6 */ if( strstr(addr_type, "ipv4") && strstr(line, ".ip6.arpa") ) continue; /* Looking for ipv6 but got ipv4 */ if( strstr(addr_type, "ipv6") && strstr(line, ".in-addr.arpa") ) continue; /* Get the reverse zones network address */ for(i=0; line[i]!='\0'; i++) if( line[i]=='"' ) break; snprintf(tmp, MAX_CONF_LINE-1, "%s", &line[i]); /* IPv4 */ if( strstr(line, ".in-addr.arpa") ) { snprintf(rev_ip, strlen(tmp)-17, "%s", &tmp[1]); } else /* IPv6 */ { snprintf(rev_ip, strlen(tmp)-13, "%s", &tmp[1]); } /* look for the file "...." line and see if its the correct domain name */ while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > MAX_CONF_LINE-3 ) continue; /* Skip options */ if( strstr(line, "{") && strstr(line, "}") ) continue; /* Break at the next zone */ if( strstr(line, "zone") && strstr(line, "{") ) break; /* The reverse zones file name matched the zone name */ if( strstr(line, rev_file) ) { rev_zone_found = 1; break; } } } if( rev_zone_found ) break; } fclose(fp); g_free(named_conf); g_free(rev_file); g_free(match_domain_name); free(tmp); free(mask); if( rev_zone_found ) return rev_ip; else return NULL; } void populate_domain_treeview(struct w *widgets) { gtk_list_store_clear(widgets->domain_store); populate_zones(widgets); select_first_domain(widgets); } gadmin-bind-0.2.5/src/set_version.c0000644000000000000000000000462211350705003015656 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "widgets.h" #include "gettext.h" #include "allocate.h" #include "show_info.h" extern int MAX_READ_POPEN; void set_version(struct w *widgets) { FILE *fp; char *version; int ver_found=0; gchar *command; gchar *ver=NULL; gchar *utf8=NULL; gchar *info; GdkColor color; command = g_strdup_printf("%s -v 2>&1", NAMED_BINARY); if((fp=popen(command, "r"))==NULL) { info = g_strdup_printf(_("Set version failed\n")); show_info(info); g_free(info); g_free(command); return; } fflush(fp); version = allocate(MAX_READ_POPEN); while(fgets(version, MAX_READ_POPEN, fp)!=NULL) { if( strstr(version, "BIND") && strlen(version) < 100 ) { ver = g_strdup_printf(_(" Information: %s"), version); utf8 = g_locale_to_utf8(ver, strlen(ver)-1, NULL, NULL, NULL); gtk_label_set_text(GTK_LABEL(widgets->version_label), utf8); g_free(utf8); g_free(ver); ver_found = 1; break; } } free(version); g_free(command); pclose(fp); if( ! ver_found ) { ver = g_strdup_printf(_(" ISC BIND is not installed or not in your path.")); utf8 = g_locale_to_utf8(ver, strlen(ver), NULL, NULL, NULL); gtk_label_set_text(GTK_LABEL(widgets->version_label), utf8); g_free(utf8); g_free(ver); /* Set status color */ gdk_color_parse("red", &color); gtk_widget_modify_fg(widgets->version_label, GTK_STATE_NORMAL, &color); } } gadmin-bind-0.2.5/src/create_verify_tab.c0000644000000000000000000000652111350705002016772 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "run_verify_cmd.h" void create_verify_tab(struct w *widgets) { /* Create the verify textview in a scrolled window */ gchar *utf8=NULL; gchar *text; GtkWidget *verify_hbox, *verify_scrolled_window; GtkWidget *run_cmd_hbox, *run_cmd_button; GtkTooltips *tooltips; tooltips = gtk_tooltips_new(); verify_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox5), verify_hbox, TRUE, TRUE, 0); verify_scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start(GTK_BOX(verify_hbox), verify_scrolled_window, TRUE, TRUE, 0); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(verify_scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); /* Must set a larger size or it wont scroll */ gtk_widget_set_size_request(verify_scrolled_window, -1, 140); widgets->verify_textview = gtk_text_view_new(); gtk_container_add(GTK_CONTAINER(verify_scrolled_window), widgets->verify_textview); /* The run command entry */ run_cmd_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox5), run_cmd_hbox, FALSE, TRUE, 0); widgets->verify_run_cmd_entry = gtk_entry_new(); gtk_box_pack_start(GTK_BOX(run_cmd_hbox), widgets->verify_run_cmd_entry, TRUE, TRUE, 0); /* Set default text in the entry */ text = g_strdup_printf("dig axfr domain.org"); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->verify_run_cmd_entry), utf8); g_free(text); /* Show a tooltip */ text = g_strdup_printf(_("Forward lookup: host dns1.site.org\nReverse lookup: host (IP of dns1.site.org)\nNetwork info: ifconfig\n")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->verify_run_cmd_entry, utf8, NULL); g_free(text); /* The run command button */ run_cmd_button = gtk_button_new_from_stock(GTK_STOCK_APPLY); gtk_box_pack_start(GTK_BOX(run_cmd_hbox), run_cmd_button, FALSE, FALSE, 0); g_signal_connect_swapped(G_OBJECT(run_cmd_button), "clicked", G_CALLBACK(run_verify_cmd), widgets); g_signal_connect_swapped(G_OBJECT(widgets->verify_run_cmd_entry), "activate", G_CALLBACK(run_verify_cmd), widgets); if( utf8!=NULL ) g_free(utf8); } gadmin-bind-0.2.5/src/add_configuration_canceled.c0000644000000000000000000000214711350705002020612 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "add_configuration_canceled.h" void add_configuration_canceled(struct w *widgets) { gtk_widget_destroy(widgets->add_configuration_window); } gadmin-bind-0.2.5/src/save_root_servers.c0000644000000000000000000000377011350705003017073 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include #include "widgets.h" #include "gettext.h" #include "commands.h" #include "populate_root_servers_tab.h" #include "allocate.h" extern char CHROOT_PATH_BUF[1024]; extern int activated; void save_root_servers(struct w *widgets) { /* Save the root servers tab. */ FILE *fp; GtkTextBuffer *rs_textbuffer; GtkTextIter start, end; gchar *conf = NULL; gchar *utf8 = NULL; gchar *root_hints; rs_textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(widgets->rs_textview)); gtk_text_buffer_get_bounds(rs_textbuffer, &start, &end); conf = gtk_text_iter_get_text(&start, &end); root_hints = g_strdup_printf("%s/etc/root.hints", CHROOT_PATH_BUF); if((fp=fopen(root_hints, "w+"))==NULL) { if( conf!=NULL ) g_free(conf); if( utf8!=NULL ) g_free(utf8); g_free(root_hints); return; } fputs(conf, fp); fclose(fp); g_free(root_hints); if( conf!=NULL ) g_free(conf); if( utf8!=NULL ) g_free(utf8); populate_root_servers_tab(widgets); } gadmin-bind-0.2.5/src/select_first_resource.c0000644000000000000000000000436311350705003017715 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" extern char global_resource_type[1024]; extern char global_resource_hostname[1024]; extern char global_resource_address[1024]; void select_first_resource(struct w *widgets) { GtkTreePath *path; GtkTreeIter iter; GtkTreeModel *list_store; gchar *type=NULL, *hostname=NULL, *address=NULL; path = gtk_tree_path_new_first(); list_store = gtk_tree_view_get_model(GTK_TREE_VIEW(widgets->resource_treeview)); if( ! gtk_tree_model_get_iter(list_store, &iter, path) ) { if( path!=NULL ) gtk_tree_path_free(path); return; } gtk_tree_model_get(list_store, &iter, 0, &type, -1); gtk_tree_model_get(list_store, &iter, 1, &hostname, -1); gtk_tree_model_get(list_store, &iter, 2, &address, -1); if( type==NULL || (hostname==NULL && address==NULL) ) { if( path!=NULL ) gtk_tree_path_free(path); return; } sprintf(global_resource_type, "%s", (gchar *)type?type:"none"); sprintf(global_resource_hostname, "%s", (gchar *)hostname?hostname:"none"); sprintf(global_resource_address, "%s", (gchar *)address?address:"none"); if( type!=NULL ) g_free(type); if( hostname!=NULL ) g_free(hostname); if( address!=NULL ) g_free(address); if( path!=NULL ) gtk_tree_path_free(path); } gadmin-bind-0.2.5/src/delete_resource_from_btn.h0000644000000000000000000000200311350705002020350 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef delete_resource_from_btn_H # define delete_resource_from_btn_H extern struct w *widgets; void delete_resource_from_btn(struct w *widgets); #endif gadmin-bind-0.2.5/src/new_rndc_key.h0000644000000000000000000000176511350705002015776 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_new_rndc_key_H # define GBINDADMIN_new_rndc_key_H extern struct w *widgets; void new_rndc_key(struct w *widgets); #endif gadmin-bind-0.2.5/src/reread_button_clicked.h0000644000000000000000000000176211350705002017637 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBiINDNiS_reread_button_clicked_H # define GBiINDNiS_reread_button_clicked_H void reread_button_clicked(struct w *widgets); #endif gadmin-bind-0.2.5/src/delete_domain.h0000644000000000000000000000176611350705002016121 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_delete_scope_H # define GBINDADMIN_delete_scope_H extern struct w *widgets; void delete_domain(struct w *widgets); #endif gadmin-bind-0.2.5/src/populate_resolvers.c0000644000000000000000000000364311350705002017254 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "widgets.h" #include "gettext.h" #include "allocate.h" extern char RESOLV_PATH_BUF[1024]; void populate_resolvers(struct w *widgets) { FILE *fp; long file_size = 0; char *line, *buffy; gchar *utf8=NULL; GtkTextBuffer *text_buffer; text_buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(widgets->resolvers_textview)); if((fp=fopen(RESOLV_PATH_BUF, "r"))==NULL) { printf("Couldnt open: %s\n", RESOLV_PATH_BUF); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); buffy = allocate(file_size+1); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) strcat(buffy, line); fclose(fp); free(line); utf8 = g_locale_to_utf8(buffy, strlen(buffy), NULL, NULL, NULL); free(buffy); if( utf8!=NULL ) { /* Strlen error on NULL, thats why.. */ gtk_text_buffer_set_text(text_buffer, utf8, strlen(utf8)); g_free(utf8); } } gadmin-bind-0.2.5/src/create_root_servers_tab.c0000644000000000000000000000536111350705002020223 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "populate_root_servers_tab.h" #include "update_root_servers.h" #include "save_root_servers.h" void create_root_servers_tab(struct w *widgets) { /* Create the leases textview in a scrolled window */ GtkWidget *rs_hbox, *rs_scrolled_window; GtkWidget *rs_hbuttonbox, *rs_tab_save_button, *rs_tab_update_button; rs_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox2), rs_hbox, TRUE, TRUE, 0); rs_scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start(GTK_BOX(rs_hbox), rs_scrolled_window, TRUE, TRUE, 0); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(rs_scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); /* Must set a larger size or it wont scroll */ gtk_widget_set_size_request(rs_scrolled_window, -1, 140); widgets->rs_textview = gtk_text_view_new(); gtk_container_add (GTK_CONTAINER (rs_scrolled_window), widgets->rs_textview); /* The leases clear and update buttons */ rs_hbuttonbox = gtk_hbutton_box_new(); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox2), rs_hbuttonbox, FALSE, TRUE, 0); gtk_button_box_set_layout(GTK_BUTTON_BOX(rs_hbuttonbox), GTK_BUTTONBOX_SPREAD); rs_tab_save_button = gtk_button_new_from_stock(GTK_STOCK_SAVE); gtk_container_add(GTK_CONTAINER(rs_hbuttonbox), rs_tab_save_button); g_signal_connect_swapped(G_OBJECT(rs_tab_save_button), "clicked", G_CALLBACK(save_root_servers), widgets); rs_tab_update_button = gtk_button_new_from_stock(GTK_STOCK_REFRESH); gtk_container_add(GTK_CONTAINER(rs_hbuttonbox), rs_tab_update_button); g_signal_connect_swapped(G_OBJECT(rs_tab_update_button), "clicked", G_CALLBACK(update_root_servers), widgets); } gadmin-bind-0.2.5/src/commands.h0000644000000000000000000000221711350705002015121 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef commands_H # define commands_H int run_command(gchar *command); void run_command_show_err(gchar *command); void show_info(char *content); int file_exists(char *infile); char * isolate_setting(char *input); char * remove_semicolon(char *input); void add_missing_values(gchar *conf); #endif gadmin-bind-0.2.5/src/make_settings_buttons.h0000644000000000000000000000230411350705002017730 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef make_settings_buttons_H # define make_settings_buttons_H //extern struct w *widgets; GtkWidget *make_gen_key_button_with_entry(GtkTable *table, GtkWidget *entry, gint left_attach, gint right_attach, gint top_attach, gint bottom_attach, gint button_length); #endif gadmin-bind-0.2.5/src/reread_button_clicked.c0000644000000000000000000000206311350705002017625 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "reread_conf.h" void reread_button_clicked(struct w *widgets) { reread_conf(widgets); } gadmin-bind-0.2.5/src/save_settings.h0000644000000000000000000000174211350705003016201 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef save_settings_H # define save_settings_H extern struct w *widgets; void save_settings(struct w *widgets); #endif gadmin-bind-0.2.5/src/run_verify_cmd.h0000644000000000000000000000174511350705003016341 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef run_verify_cmd_H # define run_verify_cmd_H extern struct w *widgets; void run_verify_cmd(struct w *widgets); #endif gadmin-bind-0.2.5/src/create_log_tab.c0000644000000000000000000000532211350705002016245 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "populate_log_tab.h" #include "clear_log_tab.h" void create_log_tab(struct w *widgets) { /* Create the leases textview in a scrolled window */ GtkWidget *log_hbox, *log_scrolled_window; GtkWidget *log_hbuttonbox, *log_tab_clear_button, *log_tab_update_button; log_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox4), log_hbox, TRUE, TRUE, 0); log_scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start(GTK_BOX(log_hbox), log_scrolled_window, TRUE, TRUE, 0); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(log_scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); /* Must set a larger size or it wont scroll */ gtk_widget_set_size_request(log_scrolled_window, -1, 140); widgets->log_textview = gtk_text_view_new(); gtk_container_add (GTK_CONTAINER (log_scrolled_window), widgets->log_textview); /* The leases clear and update buttons */ log_hbuttonbox = gtk_hbutton_box_new(); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox4), log_hbuttonbox, FALSE, TRUE, 0); gtk_button_box_set_layout(GTK_BUTTON_BOX(log_hbuttonbox), GTK_BUTTONBOX_SPREAD); log_tab_clear_button = gtk_button_new_from_stock(GTK_STOCK_DELETE); gtk_container_add(GTK_CONTAINER(log_hbuttonbox), log_tab_clear_button); g_signal_connect_swapped(G_OBJECT(log_tab_clear_button), "clicked", G_CALLBACK(clear_log_tab), widgets); log_tab_update_button = gtk_button_new_from_stock(GTK_STOCK_REFRESH); gtk_container_add(GTK_CONTAINER(log_hbuttonbox), log_tab_update_button); g_signal_connect_swapped(G_OBJECT(log_tab_update_button), "clicked", G_CALLBACK(populate_log_tab), widgets); } gadmin-bind-0.2.5/src/settings_window.c0000644000000000000000000001743311350705003016551 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include "allocate.h" #include "gettext.h" #include "widgets.h" #include "commands.h" #include "make_settings_entries.h" #include "make_settings_combos.h" #include "make_settings_buttons.h" #include "populate_domain_treeview.h" #include "populate_resource_treeview.h" #include "populate_log_tab.h" #include "reread_conf.h" #include "new_rndc_key.h" #include "commented.h" #include "save_settings.h" #include "settings_window.h" #define MAX_CONF_LINE 1000 extern char global_domain_name[1024]; extern char global_domain_ipv4_address[1024]; extern char global_domain_ipv6_address[1024]; extern char global_domain_type[1024]; extern char SYSLOG_PATH_BUF[1024]; extern char RESOLV_PATH_BUF[1024]; extern char CHROOT_PATH_BUF[1024]; gchar *get_secret_key(); /* Get the secret key */ gchar *get_secret_key() { FILE *fp; long file_size; char *line, *key_line, *tmp; int x, z, found_key = 0; gchar *key=NULL; if((fp=fopen(RNDC_CONF, "r"))==NULL) { key = g_strdup_printf(_("Secret key not found.")); return key; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); key_line = allocate(1024); tmp = allocate(1024); while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "secret") && strstr(line, "\"") && strstr(line, ";") && ! commented(line) && strlen(line) < 1000 ) { found_key = 1; /* Get the beginning of the key */ for(x=0; x<1000; x++) if( line[x]=='"' ) break; snprintf(key_line, 1000, "%s", &line[x+1]); /* Get the end of the key */ for(z=strlen(key_line)-2; z>0; z--) if( key_line[z]=='"' ) break; key_line[z]='\0'; key = g_strdup_printf("%s", key_line); break; } } fclose(fp); free(line); free(key_line); free(tmp); if( ! found_key ) key = g_strdup_printf(_("Secret key not found.")); return key; } void show_settings_window(struct w *widgets) { GtkWidget *frame; GtkWidget *table; GtkWidget *settings_vbox; GtkTooltips *tooltips; gchar *secret_key, *info, *utf8=NULL; widgets->settings_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_position(GTK_WINDOW (widgets->settings_window), GTK_WIN_POS_CENTER); gtk_widget_set_size_request(widgets->settings_window, -1, -1); /* Set window information */ info = g_strdup_printf(_("GAdmin-BIND %s settings"), VERSION); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_window_set_title(GTK_WINDOW(widgets->settings_window), utf8); g_free(info); g_signal_connect(GTK_WINDOW(widgets->settings_window), "delete_event", G_CALLBACK (gtk_widget_destroy), NULL); settings_vbox = gtk_vbox_new(FALSE, 0); gtk_container_add (GTK_CONTAINER (widgets->settings_window), settings_vbox); tooltips = gtk_tooltips_new(); info = g_strdup_printf(_("Settings:")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); frame = gtk_frame_new(utf8); g_free(info); /* A table with 6 settings and 2 columns */ table = gtk_table_new(6, 2, FALSE); gtk_box_pack_start(GTK_BOX(settings_vbox), frame, TRUE, TRUE, 1); gtk_container_add(GTK_CONTAINER(frame), table); /* Max length and input 350 chars */ /* Path to the chroot */ info = g_strdup_printf(_(" Path to the chroot directory: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->settings_entry[0] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,2,3,350); g_free(info); utf8 = g_locale_to_utf8(CHROOT_PATH_BUF, strlen(CHROOT_PATH_BUF), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->settings_entry[0]), utf8); /* Path to resolv.conf */ info = g_strdup_printf(_(" Path to resolv.conf: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->settings_entry[1] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,3,4,350); g_free(info); utf8 = g_locale_to_utf8(RESOLV_PATH_BUF, strlen(RESOLV_PATH_BUF), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->settings_entry[1]), utf8); /* Path to syslog */ info = g_strdup_printf(_(" Path to the system log: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->settings_entry[2] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,4,5,350); g_free(info); utf8 = g_locale_to_utf8(SYSLOG_PATH_BUF, strlen(SYSLOG_PATH_BUF), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->settings_entry[2]), utf8); /* Button and entry for generating the rndc key */ widgets->settings_entry[3] = gtk_entry_new(); /* Insert secret key if any, otherwise insert: key not found */ secret_key = get_secret_key(); utf8 = g_locale_to_utf8(secret_key, strlen(secret_key), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->settings_entry[3]), utf8); g_free(secret_key); GtkWidget *gen_key_button = make_gen_key_button_with_entry(GTK_TABLE(table), widgets->settings_entry[3], 0,1,5,6,350); g_signal_connect_swapped(G_OBJECT(gen_key_button), "clicked", G_CALLBACK(new_rndc_key), widgets); GtkWidget *settings_hbuttonbox = gtk_hbutton_box_new(); gtk_box_pack_start(GTK_BOX(settings_vbox), settings_hbuttonbox, FALSE, FALSE, 0); gtk_button_box_set_layout(GTK_BUTTON_BOX(settings_hbuttonbox), GTK_BUTTONBOX_SPREAD); GtkWidget *apply_settings_button = gtk_button_new_from_stock(GTK_STOCK_APPLY); gtk_container_add(GTK_CONTAINER(settings_hbuttonbox), apply_settings_button); g_signal_connect_swapped(G_OBJECT(apply_settings_button), "clicked", G_CALLBACK(apply_settings_button_clicked), widgets); GtkWidget *cancel_settings_button = gtk_button_new_from_stock(GTK_STOCK_CANCEL); gtk_container_add(GTK_CONTAINER(settings_hbuttonbox), cancel_settings_button); g_signal_connect_swapped(G_OBJECT(cancel_settings_button), "clicked", G_CALLBACK(cancel_settings_button_clicked), widgets); if( utf8!=NULL ) g_free(utf8); gtk_widget_show_all(widgets->settings_window); } void cancel_settings_button_clicked(struct w *widgets) { gtk_widget_destroy(widgets->settings_window); } void apply_settings_button_clicked(struct w *widgets) { /* The apply button in the settings window */ save_settings(widgets); /* Repopulate the gui */ populate_domain_treeview(widgets); populate_resource_treeview(widgets); populate_log_tab(widgets); gtk_widget_destroy(widgets->settings_window); } gadmin-bind-0.2.5/src/add_configuration.c0000644000000000000000000002251111350705002016771 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include "widgets.h" #include "gettext.h" #include "add_configuration.h" #include "add_configuration_canceled.h" #include "populate_root_servers_tab.h" #include "commands.h" #include "show_info.h" extern char CHROOT_PATH_BUF[1024]; void add_configuration(struct w *widgets) { FILE *fp; gchar *command=NULL, *info=NULL; gchar *dir, *file, *conf; /* This code creates as much of the named chroot as possible. In order to do so it does not return on any failures. Popup windows describing any problem(s) are shown */ gtk_widget_destroy(widgets->add_configuration_window); /* Make the directories if they dont exist */ dir = g_strdup_printf("%s/dev", CHROOT_PATH_BUF); if( ! file_exists(dir) ) { command = g_strdup_printf("mkdir -p %s/dev", CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); } g_free(dir); dir = g_strdup_printf("%s/etc/sites", CHROOT_PATH_BUF); if( ! file_exists(dir) ) { command = g_strdup_printf("mkdir -p %s/etc/sites", CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); } g_free(dir); dir = g_strdup_printf("%s/var/run", CHROOT_PATH_BUF); if( ! file_exists(dir) ) { command = g_strdup_printf("mkdir -p %s/var/run", CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); } g_free(dir); /* Add /var/named/etc/named.conf if it doesnt exist */ file = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); if( ! file_exists(file) ) { if((fp=fopen(file, "w+"))==NULL) { info = g_strdup_printf(_("Error: could not write named.conf here:\n%s\n"), file); show_info(info); g_free(info); g_free(file); return; } conf = g_strconcat("options {\n", " directory \"/etc\";\n", " pid-file \"/var/run/named.pid\";\n", " statistics-file \"/var/run/named.stats\";\n", " version \"Surely you must be joking\";\n", " listen-on port 53 { any; };\n", " listen-on-v6 port 53 { any; };\n", "};\n\n", "controls {\n", " inet 127.0.0.1 allow { localhost; } keys { rndc_key; };\n", "};\n\n", "key \"rndc_key\" {\n", " algorithm hmac-md5;\n", " secret \"\";\n", "};\n\n", "logging {\n", " category default { default_syslog; default_debug; };\n", " category unmatched { null; };\n\n", " channel default_syslog {\n", " syslog daemon;\n", " severity info;\n", " };\n\n", " channel default_debug {\n", " file \"named.run\";\n", " severity dynamic;\n", " };\n\n", " channel default_stderr {\n", " stderr;\n", " severity info;\n", " };\n\n", " channel null {\n", " null;\n", " };\n", "};\n\n" "zone \".\" {\n", " type hint;\n", " file \"/etc/root.hints\";\n", "};\n\n", "zone \"localhost\" {\n", " type master;\n", " file \"/etc/localhost\";\n", "};\n\n", "zone \"0.0.127.in-addr.arpa\" {\n", " type master;\n", " file \"/etc/127.0.0\";\n", "};\n\n", "", NULL); fputs(conf, fp); fclose(fp); g_free(conf); } g_free(file); /* Add /var/named/etc/root.hints if it doesnt exist */ file = g_strdup_printf("%s/etc/root.hints", CHROOT_PATH_BUF); if( ! file_exists(file) ) { if((fp=fopen(file, "w+"))==NULL) { info = g_strdup_printf(_("Error: couldnt write file root.hints here:\n%s\n"), file); show_info(info); g_free(info); g_free(file); return; } conf = g_strconcat(_("; This configuration is old. A working DNS resolver is required to update.\n\n"), NULL); fputs(conf, fp); fclose(fp); g_free(conf); } g_free(file); /* Add /var/named/etc/localhost if it doesnt exist */ file = g_strdup_printf("%s/etc/localhost", CHROOT_PATH_BUF); if( ! file_exists(file) ) { if((fp=fopen(file, "w+"))==NULL) { info = g_strdup_printf(_("Error: couldnt write file localhost here:\n%s\n"), file); show_info(info); g_free(info); g_free(file); return; } conf = g_strconcat("$TTL 3D\n", "@ IN SOA @ root (\n", " 1 ; serial\n", " 3600 ; refresh\n", " 1800 ; retry\n", " 604800 ; expiration\n", " 3600 ) ; minimum\n\n", " IN NS @\n", " IN A 127.0.0.1\n", " IN AAAA ::1\n\n" "", NULL); fputs(conf, fp); fclose(fp); g_free(conf); } g_free(file); /* Add /var/named/etc/127.0.0 if it doesnt exist */ file = g_strdup_printf("%s/etc/127.0.0", CHROOT_PATH_BUF); if( ! file_exists(file) ) { if((fp=fopen(file, "w+"))==NULL) { info = g_strdup_printf(_("Error: couldnt write file 127.0.0 here:\n%s\n"), file); show_info(info); g_free(info); g_free(file); return; } conf = g_strconcat("$TTL 3D\n", "@ IN SOA localhost. root.localhost. (\n", " 01 ; Serial\n", " 8H ; Refresh\n", " 2H ; Retry\n", " 4W ; Expire\n", " 3D) ; Minimum TTL\n\n", " IN NS localhost.\n", "1 IN PTR localhost.\n", "", NULL); fputs(conf, fp); fclose(fp); g_free(conf); } g_free(file); /* Copy /etc/localtime from /etc to /var/named/etc/localtime if it doesnt exist */ file = g_strdup_printf("%s/etc/localtime", CHROOT_PATH_BUF); if( ! file_exists(file) ) { g_free(file); file = g_strdup_printf("/etc/localtime"); if( ! file_exists(file) ) { info = g_strdup_printf(_("Error copying /etc/localtime, the file doesnt exist\n")); show_info(info); g_free(info); } else { command = g_strdup_printf("cp /etc/localtime %s/etc/", CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); } g_free(file); } else g_free(file); /* Chown nobody:nobody on all files and dirs created so far but not directory "named" (to allow for ddns updates etc) */ command = g_strdup_printf("chown -R %s:%s %s/*", NAMED_USER, NAMED_USER, CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); /* Chown the CHROOT to root:NAMED_USER (in many cases bind rpms uses the "named" user) so make sure that the NAMED_USER IE: "nobody" has write permissions there */ command = g_strdup_printf("chown root:%s %s", NAMED_USER, CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); /* Make dev/null and random if they dont exist */ file = g_strdup_printf("%s/dev/null", CHROOT_PATH_BUF); if( ! file_exists(file) ) { command = g_strdup_printf("mknod %s/dev/null c 1 3", CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); } file = g_strdup_printf("%s/dev/random", CHROOT_PATH_BUF); if( ! file_exists(file) ) { command = g_strdup_printf("mknod %s/dev/random c 1 8", CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); } /* Chmod the nodes */ command = g_strdup_printf("chmod 666 %s/dev/null", CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); command = g_strdup_printf("chmod 666 %s/dev/random", CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); /* Populate the root servers tab. No other tabs need to be repopulated. */ populate_root_servers_tab(widgets); } gadmin-bind-0.2.5/src/rndc_reload.h0000644000000000000000000000176211350705003015601 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_rndc_reload_H # define GBINDADMIN_rndc_reload_H extern struct w *widgets; void rndc_reload(struct w *widgets); #endif gadmin-bind-0.2.5/src/Makefile0000644000000000000000000005403711350705555014633 0ustar rootroot# Makefile.in generated by automake 1.11.1 from Makefile.am. # src/Makefile. Generated from Makefile.in by configure. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # Inc. # This Makefile.in 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. pkgdatadir = $(datadir)/gadmin-bind pkgincludedir = $(includedir)/gadmin-bind pkglibdir = $(libdir)/gadmin-bind pkglibexecdir = $(libexecdir)/gadmin-bind am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = i686-pc-linux-gnu host_triplet = i686-pc-linux-gnu sbin_PROGRAMS = gadmin-bind$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(sbindir)" PROGRAMS = $(sbin_PROGRAMS) am_gadmin_bind_OBJECTS = widgets.$(OBJEXT) gadmin-bind.$(OBJEXT) \ create_main_window.$(OBJEXT) create_domain_tab.$(OBJEXT) \ populate_domain_treeview.$(OBJEXT) \ domain_treeview_row_clicked.$(OBJEXT) add_domain.$(OBJEXT) \ delete_domain.$(OBJEXT) delete_domain_from_btn.$(OBJEXT) \ populate_resource_treeview.$(OBJEXT) \ resource_treeview_row_clicked.$(OBJEXT) \ resource_combo_changed.$(OBJEXT) add_resource.$(OBJEXT) \ delete_resource.$(OBJEXT) delete_resource_from_btn.$(OBJEXT) \ domain_settings_window.$(OBJEXT) \ domain_settings_type_combo_changed.$(OBJEXT) \ settings_window.$(OBJEXT) credits_window.$(OBJEXT) \ activate_button_clicked.$(OBJEXT) \ dialog_if_files_missing.$(OBJEXT) functions.$(OBJEXT) \ ip_handling.$(OBJEXT) reverse_address.$(OBJEXT) \ commented.$(OBJEXT) add_standard_user.$(OBJEXT) \ add_configuration_dialog.$(OBJEXT) add_configuration.$(OBJEXT) \ add_configuration_canceled.$(OBJEXT) clear_log_tab.$(OBJEXT) \ create_log_tab.$(OBJEXT) create_verify_tab.$(OBJEXT) \ run_verify_cmd.$(OBJEXT) create_root_servers_tab.$(OBJEXT) \ create_resolvers_tab.$(OBJEXT) populate_resolvers.$(OBJEXT) \ save_resolvers.$(OBJEXT) populate_root_servers_tab.$(OBJEXT) \ update_root_servers.$(OBJEXT) save_root_servers.$(OBJEXT) \ select_first_domain.$(OBJEXT) select_first_resource.$(OBJEXT) \ deactivate_button_clicked.$(OBJEXT) populate_log_tab.$(OBJEXT) \ reread_button_clicked.$(OBJEXT) reread_conf.$(OBJEXT) \ set_version.$(OBJEXT) show_help.$(OBJEXT) show_info.$(OBJEXT) \ status_update.$(OBJEXT) new_rndc_key.$(OBJEXT) \ load_settings.$(OBJEXT) save_settings.$(OBJEXT) \ locate_icons.$(OBJEXT) commands.$(OBJEXT) \ rndc_reload.$(OBJEXT) allocate.$(OBJEXT) \ chars_are_digits.$(OBJEXT) make_settings_entries.$(OBJEXT) \ make_settings_combos.$(OBJEXT) make_settings_buttons.$(OBJEXT) gadmin_bind_OBJECTS = $(am_gadmin_bind_OBJECTS) gadmin_bind_DEPENDENCIES = DEFAULT_INCLUDES = -I. -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(gadmin_bind_SOURCES) DIST_SOURCES = $(gadmin_bind_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = ${SHELL} /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5/missing --run aclocal-1.11 AMTAR = ${SHELL} /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5/missing --run tar AUTOCONF = ${SHELL} /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5/missing --run autoconf AUTOHEADER = ${SHELL} /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5/missing --run autoheader AUTOMAKE = ${SHELL} /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5/missing --run automake-1.11 AWK = gawk CATALOGS = sv.gmo CATOBJEXT = .gmo CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -Wall CPP = gcc -E CPPFLAGS = CYGPATH_W = echo DATADIRNAME = share DEFS = -DHAVE_CONFIG_H DEPDIR = .deps ECHO_C = ECHO_N = -n ECHO_T = EGREP = /bin/grep -E EXEEXT = GETTEXT_PACKAGE = gadmin-bind GMOFILES = sv.gmo GMSGFMT = /usr/bin/msgfmt GREP = /bin/grep INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s INSTOBJEXT = .mo INTLLIBS = LDFLAGS = LIBOBJS = LIBS = LOCALSTATEDIR = /var LTLIBOBJS = MAINT = # MAKEINFO = ${SHELL} /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5/missing --run makeinfo MKDIR_P = /bin/mkdir -p MKINSTALLDIRS = ./mkinstalldirs MSGFMT = /usr/bin/msgfmt MSGFMT_OPTS = -c OBJEXT = o PACKAGE = gadmin-bind PACKAGE_BUGREPORT = PACKAGE_CFLAGS = -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 PACKAGE_LIBS = -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 PACKAGE_NAME = PACKAGE_STRING = PACKAGE_TARNAME = PACKAGE_VERSION = PATH_SEPARATOR = : PKG_CONFIG = /usr/bin/pkg-config POFILES = sv.po POSUB = po PO_IN_DATADIR_FALSE = PO_IN_DATADIR_TRUE = SBINDIR = /usr/sbin SET_MAKE = SHELL = /bin/sh STRIP = SYSCONFDIR = /etc USE_NLS = yes VERSION = 0.2.5 XGETTEXT = /usr/bin/xgettext abs_builddir = /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5/src abs_srcdir = /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5/src abs_top_builddir = /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5 abs_top_srcdir = /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5 ac_ct_CC = gcc am__include = include am__leading_dot = . am__quote = am__tar = ${AMTAR} chof - "$$tardir" am__untar = ${AMTAR} xf - bindir = ${exec_prefix}/bin build = i686-pc-linux-gnu build_alias = build_cpu = i686 build_os = linux-gnu build_vendor = pc builddir = . datadir = ${datarootdir} datarootdir = ${prefix}/share docdir = ${datarootdir}/doc/${PACKAGE} dvidir = ${docdir} exec_prefix = ${prefix} host = i686-pc-linux-gnu host_alias = host_cpu = i686 host_os = linux-gnu host_vendor = pc htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info install_sh = ${SHELL} /root/PROJEKT/gadmin-bind/gadmin-bind-0.2.5/install-sh libdir = ${exec_prefix}/lib libexecdir = ${exec_prefix}/libexec localedir = ${datarootdir}/locale localstatedir = /var mandir = ${datarootdir}/man mkdir_p = /bin/mkdir -p oldincludedir = /usr/include pdfdir = ${docdir} prefix = /usr program_transform_name = s,x,x, psdir = ${docdir} sbindir = /usr/sbin sharedstatedir = ${prefix}/com srcdir = . sysconfdir = /etc target_alias = top_build_prefix = ../ top_builddir = .. top_srcdir = .. INCLUDES = \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 gadmin_bind_SOURCES = \ widgets.c widgets.h \ gadmin-bind.c gadmin-bind.h \ create_main_window.c create_main_window.h \ create_domain_tab.c create_domain_tab.h \ populate_domain_treeview.c populate_domain_treeview.h \ domain_treeview_row_clicked.c domain_treeview_row_clicked.h \ add_domain.c add_domain.h \ delete_domain.c delete_domain.h \ delete_domain_from_btn.c delete_domain_from_btn.h \ populate_resource_treeview.c populate_resource_treeview.h \ resource_treeview_row_clicked.c resource_treeview_row_clicked.h \ resource_combo_changed.c resource_combo_changed.h \ add_resource.c add_resource.h \ delete_resource.c delete_resource.h \ delete_resource_from_btn.c delete_resource_from_btn.h \ domain_settings_window.c domain_settings_window.h \ domain_settings_type_combo_changed.c domain_settings_type_combo_changed.h \ settings_window.c settings_window.h \ credits_window.c credits_window.h \ activate_button_clicked.c activate_button_clicked.h \ dialog_if_files_missing.c dialog_if_files_missing.h \ functions.c functions.h \ ip_handling.c ip_handling.h \ reverse_address.c reverse_address.h \ commented.c commented.h \ add_standard_user.c add_standard_user.h \ add_configuration_dialog.c add_configuration_dialog.h \ add_configuration.c add_configuration.h \ add_configuration_canceled.c add_configuration_canceled.h \ clear_log_tab.c clear_log_tab.h \ create_log_tab.c create_log_tab.h \ create_verify_tab.c create_verify_tab.h \ run_verify_cmd.c run_verify_cmd.h \ create_root_servers_tab.c create_root_servers_tab.h \ create_resolvers_tab.c create_resolvers_tab.h \ populate_resolvers.c populate_resolvers.h \ save_resolvers.c save_resolvers.h \ populate_root_servers_tab.c populate_root_servers_tab.h \ update_root_servers.c update_root_servers.h \ save_root_servers.c save_root_servers.h \ select_first_domain.c select_first_domain.h \ select_first_resource.c select_first_resource.h \ deactivate_button_clicked.c deactivate_button_clicked.h \ populate_log_tab.c populate_log_tab.h \ reread_button_clicked.c reread_button_clicked.h \ reread_conf.c reread_conf.h \ set_version.c set_version.h \ show_help.c show_help.h \ show_info.c show_info.h \ status_update.c status_update.h \ new_rndc_key.c new_rndc_key.h \ load_settings.c load_settings.h \ save_settings.c save_settings.h \ locate_icons.c locate_icons.h \ commands.c commands.h \ rndc_reload.c rndc_reload.h \ allocate.c allocate.h \ chars_are_digits.c chars_are_digits.h \ make_settings_entries.c make_settings_entries.h \ make_settings_combos.c make_settings_combos.h \ make_settings_buttons.c make_settings_buttons.h gadmin_bind_LDADD = -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: # $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): # $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-sbinPROGRAMS: $(sbin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)" @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \ } \ ; done uninstall-sbinPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(sbindir)" && rm -f $$files clean-sbinPROGRAMS: -test -z "$(sbin_PROGRAMS)" || rm -f $(sbin_PROGRAMS) gadmin-bind$(EXEEXT): $(gadmin_bind_OBJECTS) $(gadmin_bind_DEPENDENCIES) @rm -f gadmin-bind$(EXEEXT) $(LINK) $(gadmin_bind_OBJECTS) $(gadmin_bind_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c include ./$(DEPDIR)/activate_button_clicked.Po include ./$(DEPDIR)/add_configuration.Po include ./$(DEPDIR)/add_configuration_canceled.Po include ./$(DEPDIR)/add_configuration_dialog.Po include ./$(DEPDIR)/add_domain.Po include ./$(DEPDIR)/add_resource.Po include ./$(DEPDIR)/add_standard_user.Po include ./$(DEPDIR)/allocate.Po include ./$(DEPDIR)/chars_are_digits.Po include ./$(DEPDIR)/clear_log_tab.Po include ./$(DEPDIR)/commands.Po include ./$(DEPDIR)/commented.Po include ./$(DEPDIR)/create_domain_tab.Po include ./$(DEPDIR)/create_log_tab.Po include ./$(DEPDIR)/create_main_window.Po include ./$(DEPDIR)/create_resolvers_tab.Po include ./$(DEPDIR)/create_root_servers_tab.Po include ./$(DEPDIR)/create_verify_tab.Po include ./$(DEPDIR)/credits_window.Po include ./$(DEPDIR)/deactivate_button_clicked.Po include ./$(DEPDIR)/delete_domain.Po include ./$(DEPDIR)/delete_domain_from_btn.Po include ./$(DEPDIR)/delete_resource.Po include ./$(DEPDIR)/delete_resource_from_btn.Po include ./$(DEPDIR)/dialog_if_files_missing.Po include ./$(DEPDIR)/domain_settings_type_combo_changed.Po include ./$(DEPDIR)/domain_settings_window.Po include ./$(DEPDIR)/domain_treeview_row_clicked.Po include ./$(DEPDIR)/functions.Po include ./$(DEPDIR)/gadmin-bind.Po include ./$(DEPDIR)/ip_handling.Po include ./$(DEPDIR)/load_settings.Po include ./$(DEPDIR)/locate_icons.Po include ./$(DEPDIR)/make_settings_buttons.Po include ./$(DEPDIR)/make_settings_combos.Po include ./$(DEPDIR)/make_settings_entries.Po include ./$(DEPDIR)/new_rndc_key.Po include ./$(DEPDIR)/populate_domain_treeview.Po include ./$(DEPDIR)/populate_log_tab.Po include ./$(DEPDIR)/populate_resolvers.Po include ./$(DEPDIR)/populate_resource_treeview.Po include ./$(DEPDIR)/populate_root_servers_tab.Po include ./$(DEPDIR)/reread_button_clicked.Po include ./$(DEPDIR)/reread_conf.Po include ./$(DEPDIR)/resource_combo_changed.Po include ./$(DEPDIR)/resource_treeview_row_clicked.Po include ./$(DEPDIR)/reverse_address.Po include ./$(DEPDIR)/rndc_reload.Po include ./$(DEPDIR)/run_verify_cmd.Po include ./$(DEPDIR)/save_resolvers.Po include ./$(DEPDIR)/save_root_servers.Po include ./$(DEPDIR)/save_settings.Po include ./$(DEPDIR)/select_first_domain.Po include ./$(DEPDIR)/select_first_resource.Po include ./$(DEPDIR)/set_version.Po include ./$(DEPDIR)/settings_window.Po include ./$(DEPDIR)/show_help.Po include ./$(DEPDIR)/show_info.Po include ./$(DEPDIR)/status_update.Po include ./$(DEPDIR)/update_root_servers.Po include ./$(DEPDIR)/widgets.Po .c.o: $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po # source='$<' object='$@' libtool=no \ # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ # $(COMPILE) -c $< .c.obj: $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po # source='$<' object='$@' libtool=no \ # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ # $(COMPILE) -c `$(CYGPATH_W) '$<'` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(sbindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-sbinPROGRAMS mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-sbinPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-sbinPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-sbinPROGRAMS ctags distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-sbinPROGRAMS install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ uninstall-am uninstall-sbinPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gadmin-bind-0.2.5/src/functions.c0000644000000000000000000001052211350705002015321 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include "allocate.h" #include "functions.h" int user_exists(G_CONST_RETURN gchar *username) { /* Checks if the system user exists */ FILE *fp; long file_size; int x, user_exists = 0; char tempname[4096]=""; char *check_buffer; /* Checks if the user exists in passwd */ if((fp=fopen(PASSWD_FILE,"r"))==NULL) { /* Dont show anything */ } else { fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); check_buffer = allocate(file_size); if( file_size > 1 ) while(fgets(check_buffer, file_size, fp)!=NULL) { for(x=0; check_buffer[x]; x++) { if(check_buffer[x]==':') { sprintf(tempname, "%s", check_buffer); tempname[x]='\0'; if( ! strcmp(username, tempname) ) { user_exists = 1; break; } } if( check_buffer[x]=='\0' || check_buffer[x]=='\n' ) break; } } free(check_buffer); } fclose(fp); /* Checks if the user exists in shadow */ if((fp=fopen(SHADOW_FILE,"r"))==NULL) { /* Dont show anything */ } else { fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); check_buffer = allocate(file_size); if( file_size > 1 ) while(fgets(check_buffer, file_size, fp)!=NULL) { for(x=0; check_buffer[x]; x++) { if(check_buffer[x]==':') { sprintf(tempname, "%s", check_buffer); tempname[x]='\0'; if( strstr(username, tempname) && strlen(username) == strlen(tempname) ) { user_exists = 1; break; } } if( check_buffer[x]=='\0' || check_buffer[x]=='\n' ) break; } } free(check_buffer); fclose(fp); } return user_exists; } int group_exists(G_CONST_RETURN gchar *groupname) { /* Checks if the system group already exists */ FILE *fp; long file_size; int x, group_exists=0; char tempname[4096]=""; char *check_buffer; /* Checks if the group exists in group */ if((fp=fopen(GROUP_FILE,"r"))==NULL) { /* Dont show anything */ } else { fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); check_buffer = allocate(file_size); if( file_size > 1 ) while(fgets(check_buffer, file_size, fp)!=NULL) { for(x=0; check_buffer[x]; x++) { if(check_buffer[x]==':') { sprintf(tempname, "%s", check_buffer); tempname[x]='\0'; if( ! strcmp(groupname, tempname) ) { group_exists = 1; break; } } if( check_buffer[x]=='\0' || check_buffer[x]=='\n' ) break; } } free(check_buffer); fclose(fp); } /* Checks if the group exists in gshadow */ if((fp = fopen(GSHADOW_FILE,"r"))==NULL) { /* Dont show anything */ } else { fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); check_buffer = allocate(file_size); if( file_size > 1 ) while(fgets(check_buffer, file_size, fp)!=NULL) { for(x=0; check_buffer[x]; x++) { if(check_buffer[x]==':') { sprintf(tempname, "%s", check_buffer); tempname[x]='\0'; if( strstr(groupname, tempname) && strlen(groupname)==strlen(tempname) ) { group_exists = 1; break; } } if( check_buffer[x]=='\0' || check_buffer[x]=='\n' ) break; } } free(check_buffer); fclose(fp); } return group_exists; } gadmin-bind-0.2.5/src/make_settings_combos.c0000644000000000000000000000356011350705002017514 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include "make_settings_combos.h" GtkWidget *make_combo_with_label(GtkTable *table, const gchar *label_text, gint left_attach, gint right_attach, gint top_attach, gint bottom_attach, gint combo_length) { GtkWidget *combo; GtkWidget *label; label = gtk_label_new(label_text); combo = gtk_combo_box_new_text(); gtk_table_attach(table, label, left_attach, right_attach, top_attach, bottom_attach, GTK_FILL, GTK_EXPAND, 5, 5); gtk_table_attach(table, combo, left_attach + 1, right_attach + 1, top_attach, bottom_attach, GTK_FILL, GTK_EXPAND, 5, 5); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); gtk_misc_set_padding(GTK_MISC(label), 2, 2); gtk_widget_set_size_request(combo, combo_length, -1); gtk_widget_show(combo); gtk_widget_show(label); return combo; } gadmin-bind-0.2.5/src/delete_domain_from_btn.c0000644000000000000000000000254111350705002017772 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "delete_domain.h" #include "populate_domain_treeview.h" #include "select_first_domain.h" #include "select_first_resource.h" #include "populate_resource_treeview.h" void delete_domain_from_btn(struct w *widgets) { delete_domain(widgets); populate_domain_treeview(widgets); select_first_domain(widgets); populate_resource_treeview(widgets); select_first_resource(widgets); } gadmin-bind-0.2.5/src/resource_combo_changed.c0000644000000000000000000001020511350705002017766 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "show_info.h" #include "gettext.h" #include "resource_combo_changed.h" void resource_combo_changed(struct w *widgets) { gint active_index = 0; gchar *info, *utf8 = NULL; active_index = gtk_combo_box_get_active(GTK_COMBO_BOX(widgets->add_resource_type_combo)); if( active_index <= 0 ) { info = g_strdup_printf(_("A DNS Server: dns1.example.org")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_hostname_tooltip, widgets->add_resource_hostname_entry, utf8, NULL); g_free(info); info = g_strdup_printf(_("An IPv4 or IPv6 address: 192.168.0.30 or fe80::213:8fff:feea:9b79/64")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_address_tooltip, widgets->add_resource_address_entry, utf8, NULL); g_free(info); } if( active_index == 1 ) { info = g_strdup_printf(_("A mail server: mail1.example.org")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_hostname_tooltip, widgets->add_resource_hostname_entry, utf8, NULL); g_free(info); info = g_strdup_printf(_("The priority of this mail server: 10 or 20 etc, 10 beeing the highest priority of these.")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_address_tooltip, widgets->add_resource_address_entry, utf8, NULL); g_free(info); } if( active_index == 2 ) { info = g_strdup_printf(_("The hostname of some host: router.example.org")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_hostname_tooltip, widgets->add_resource_hostname_entry, utf8, NULL); g_free(info); info = g_strdup_printf(_("The IPv4 address of this host: 192.168.0.100")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_address_tooltip, widgets->add_resource_address_entry, utf8, NULL); g_free(info); } if( active_index == 3 ) { info = g_strdup_printf(_("The hostname of some host: router.example.org")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_hostname_tooltip, widgets->add_resource_hostname_entry, utf8, NULL); g_free(info); info = g_strdup_printf(_("The IPv6 address of this host: fe80::213:8fff:feea:9b79/64")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_address_tooltip, widgets->add_resource_address_entry, utf8, NULL); g_free(info); } if( active_index == 4 ) { info = g_strdup_printf(_("The hostname of some host that already has an A record but not the name server: router.example.org")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_hostname_tooltip, widgets->add_resource_hostname_entry, utf8, NULL); g_free(info); info = g_strdup_printf(_("The alias of the host: router.example.org")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_address_tooltip, widgets->add_resource_address_entry, utf8, NULL); g_free(info); } if( utf8!=NULL ) g_free(utf8); } gadmin-bind-0.2.5/src/make_settings_buttons.c0000644000000000000000000000466111350705002017733 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include "gettext.h" #include "widgets.h" #include "make_settings_buttons.h" GtkWidget *make_gen_key_button_with_entry(GtkTable *table, GtkWidget *entry, gint left_attach, gint right_attach, gint top_attach, gint bottom_attach, gint button_length) { GtkWidget *button = gtk_button_new(); GtkTooltips *tooltips = gtk_tooltips_new(); GtkWidget *alignment = gtk_alignment_new(0.5, 0.5, 0, 0); gtk_container_add(GTK_CONTAINER(button), alignment); GtkWidget *hbox = gtk_hbox_new(FALSE, 2); gtk_container_add(GTK_CONTAINER(alignment), hbox); GtkWidget *image = gtk_image_new_from_stock("gtk-refresh", GTK_ICON_SIZE_BUTTON); gtk_box_pack_start(GTK_BOX(hbox), image, FALSE, FALSE, 0); GtkWidget *label = gtk_label_new_with_mnemonic(_("Generate secret key")); gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); gtk_tooltips_set_tip(tooltips, button, _("Generate secret rndc key. The server has to be restarted afterwards to update its secret key."), NULL); gtk_table_attach(table, button, left_attach, right_attach, top_attach, bottom_attach, GTK_FILL, GTK_EXPAND, 5, 5); gtk_table_attach(table, entry, 1, 2, top_attach, bottom_attach, GTK_FILL|GTK_EXPAND, GTK_FILL|GTK_EXPAND, 5, 5); gtk_widget_show(button); gtk_widget_show(entry); return button; } gadmin-bind-0.2.5/src/deactivate_button_clicked.c0000644000000000000000000000325511350705002020500 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include "widgets.h" #include "gettext.h" #include "commands.h" #include "show_info.h" extern int activated; void deactivate_button_clicked(struct w *widgets) { gchar *stop, *info; if( ! activated ) return; stop = g_strdup_printf("killall -9 %s", NAMED_BINARY); if( ! run_command(stop) ) { info = g_strdup_printf("Stopping named failed with this command:\n%s\n", stop); show_info(info); g_free(info); } g_free(stop); /* Do not start the server at boot */ if( ! strstr(SYSINIT_STOP_CMD, "none") ) { if( ! run_command(SYSINIT_STOP_CMD) ) { // Fixme, not translated... info = g_strdup_printf(_("Error: Could not run SYSINIT_STOP_CMD.\n")); show_info(info); g_free(info); } } } gadmin-bind-0.2.5/src/add_domain.c0000644000000000000000000003135411350705164015407 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #define _XOPEN_SOURCE /* glibc2 needs this */ #include #include #include #include #include #include "widgets.h" #include "gettext.h" #include "show_info.h" #include "populate_domain_treeview.h" #include "populate_resource_treeview.h" #include "reread_conf.h" #include "allocate.h" #include "reverse_address.h" #include "commands.h" extern char CHROOT_PATH_BUF[1024]; int zone_exists(gchar *zone) { FILE *fp; long file_size; int ret = 0; char *line; gchar *named_conf, *info; gchar *match_zone = g_strdup_printf("\"%s\"", zone); /* Open named.conf in this chroot and check if the domain exists */ named_conf = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); if((fp=fopen(named_conf, "r"))==NULL) { info = g_strdup_printf(_("Domain not added. Could not find named.conf here:\n%s\n"), named_conf); show_info(info); g_free(info); g_free(named_conf); return 1; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "zone") && strstr(line, "{") && strstr(line, match_zone) ) { ret = 1; break; } } fclose(fp); free(line); g_free(named_conf); g_free(match_zone); return ret; } void add_domain(struct w *widgets) { FILE *fp, *date_fp, *new_zone_fp; int have_ipv6 = 0; int have_ipv4 = 0; G_CONST_RETURN gchar *domain_name, *ipv4_address, *ipv6_address; gchar *command, *named_conf, *zone_file; char *rev_ipv4_address=NULL, *rev_ipv6_address=NULL; gchar *zone_data; char *date_string; gint active_index; gchar *mask=NULL; int i = 0; gchar *info; domain_name = gtk_entry_get_text(GTK_ENTRY(widgets->add_domain_name_entry)); ipv4_address = gtk_entry_get_text(GTK_ENTRY(widgets->add_domain_ipv4_address_entry)); ipv6_address = gtk_entry_get_text(GTK_ENTRY(widgets->add_domain_ipv6_address_entry)); /* Domain type combo */ active_index = gtk_combo_box_get_active(GTK_COMBO_BOX(widgets->add_domain_type_combo)); if( strlen(domain_name) < 3 ) { info = g_strdup_printf(_("The domain name is too short, the domain was not added.\n")); show_info(info); g_free(info); return; } if( strlen(ipv4_address) > 4 /* Shortest ipv4 network address: "1.0.0" */ && strstr(ipv4_address, ".") && ! strstr(ipv4_address, ":") ) { have_ipv4 = 1; } if( strlen(ipv6_address) > 6 /* Shortest network address: "::1/128" */ && strstr(ipv6_address, ":") && ! strstr(ipv6_address, ".") ) { have_ipv6 = 1; } if( ! have_ipv4 && ! have_ipv6 ) { info = g_strdup_printf(_("Missing valid network address, the domain was not added.\n")); show_info(info); g_free(info); return; } /* IPv6 network address, get the mask if any */ if( have_ipv6 ) { for(i=0; ipv6_address[i]!='\0'; i++) if( ipv6_address[i]=='/' ) { mask = g_strdup_printf("%s", &ipv6_address[i+1]); // printf("Mask: %s\n", mask); break; } } /* Reverse the network address(es) from the gui and sanitycheck */ if( have_ipv4 ) { rev_ipv4_address = reverse_address((char *)ipv4_address); // FIXME, sanity check. } if( have_ipv6 ) { rev_ipv6_address = reverse_address((char *)ipv6_address); // printf("Add_Domain: Rev IPv6: %s\n", rev_ipv6_address); if( strlen(rev_ipv6_address) < 10 ) { info = g_strdup_printf(_("The IPv6 network address is not valid, the domain was not added.\n")); show_info(info); g_free(info); if( mask!=NULL ) g_free(mask); if( rev_ipv4_address!=NULL ) free(rev_ipv4_address); if( rev_ipv6_address!=NULL ) free(rev_ipv6_address); return; } } /* Write the forward and reverse zones to named.conf */ named_conf = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); if((fp=fopen(named_conf, "a"))==NULL) { info = g_strdup_printf(_("Domain not added. Could not find named.conf here:\n%s\n"), named_conf); show_info(info); g_free(info); if( mask!=NULL ) g_free(mask); if( rev_ipv4_address!=NULL ) free(rev_ipv4_address); if( rev_ipv6_address!=NULL ) free(rev_ipv6_address); return; } rev_ipv4_address = reverse_address((char *)ipv4_address); /* Create the directory CHROOT/etc/sites/DomainName */ command = g_strdup_printf("mkdir -p %s/etc/sites/%s", CHROOT_PATH_BUF, domain_name); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); /* Get todays date or use an old one */ date_string = allocate(20); if((date_fp=popen("date +%Y%m%d", "r"))==NULL) strcpy(date_string, "20100319"); else { fgets(date_string, 9, date_fp); pclose(date_fp); } /* Add the incremental serial */ strcat(date_string, "01"); /* Add the forward zone */ if( ! zone_exists((gchar *)domain_name) ) { /* Add the named.conf zones */ if( active_index <= 0 ) { zone_data = g_strconcat( "zone \"", domain_name, "\" IN {\n", "\ttype master;\n", "\tfile \"sites/", domain_name, "/forward.zone\";\n", "\tallow-transfer { 127.0.0.1; };\n", "\tallow-update { none; };\n", "\tallow-query { any; };\n", "\tzone-statistics yes;\n", "\tnotify no;\n", "\talso-notify { };\n", "};\n", NULL); fputs(zone_data, fp); g_free(zone_data); } if( active_index == 1 ) { zone_data = g_strconcat( "zone \"", domain_name, "\" IN {\n", "\ttype slave;\n", "\tfile \"sites/", domain_name, "/forward.zone\";\n", "\tallow-transfer { 127.0.0.1; };\n", "\tallow-query { any; };\n", "\tmasters { 127.0.0.1; };\n", "\tzone-statistics yes;\n", "\tnotify no;\n", "\talso-notify { };\n", "\tallow-notify { };\n", "};\n", NULL); fputs(zone_data, fp); g_free(zone_data); } /* Add the forward zone file */ zone_file = g_strdup_printf("%s/etc/sites/%s/forward.zone", CHROOT_PATH_BUF, domain_name); if((new_zone_fp=fopen(zone_file, "w+"))==NULL) { info = g_strdup_printf(_("Couldnt write the forward zone file here:\n%s\n"), zone_file); show_info(info); g_free(info); g_free(zone_file); free(date_string); if( mask!=NULL ) g_free(mask); if( rev_ipv4_address!=NULL ) free(rev_ipv4_address); if( rev_ipv6_address!=NULL ) free(rev_ipv6_address); return; } zone_data = g_strconcat( "$TTL 3D; Forward zone DNS->IP\n", "@\tIN\tSOA\t", domain_name, ".\thostmaster.", domain_name, ". (\n" "\t\t\t", date_string, "\t;\n", "\t\t\t8H\t\t;\n", "\t\t\t2H\t\t;\n", "\t\t\t1W\t\t;\n", "\t\t\t1D )\t\t;\n\n", NULL); fputs(zone_data, new_zone_fp); g_free(zone_data); fclose(new_zone_fp); g_free(zone_file); } /* Add the reverse IPv4 zone */ if( have_ipv4 && ! zone_exists(rev_ipv4_address) ) { if( active_index <= 0 ) { // dumped mask. zone_data = g_strconcat( "\nzone \"", rev_ipv4_address, ".in-addr.arpa\" {\n", "\ttype master;\n" "\tfile \"sites/", domain_name, "/reverse.zone.ipv4\";\n", "\tallow-transfer { 127.0.0.1; };\n", "\tallow-update { none; };\n", "\tallow-query { any; };\n", "\tzone-statistics yes;\n", "\tnotify no;\n", "\talso-notify { };\n", "};\n", NULL); fputs(zone_data, fp); g_free(zone_data); } if( active_index == 1 ) { // dumped mask zone_data = g_strconcat( "\nzone \"", rev_ipv4_address, ".in-addr.arpa\" {\n", "\ttype slave;\n" "\tfile \"sites/", domain_name, "/reverse.zone.ipv4\";\n", "\tallow-transfer { 127.0.0.1; };\n", "\tallow-query { any; };\n", "\tmasters { 127.0.0.1; };\n", "\tzone-statistics yes;\n", "\tnotify no;\n", "\talso-notify { };\n", "};\n", NULL); fputs(zone_data, fp); g_free(zone_data); } /* Add the reverse IPv4 zone file */ zone_file = g_strdup_printf("%s/etc/sites/%s/reverse.zone.ipv4", CHROOT_PATH_BUF, domain_name); if((new_zone_fp=fopen(zone_file, "w+"))==NULL) { info = g_strdup_printf(_("Couldnt write the forward zone file here:\n%s\n"), zone_file); show_info(info); g_free(info); g_free(zone_file); free(date_string); if( mask!=NULL ) g_free(mask); if( rev_ipv4_address!=NULL ) free(rev_ipv4_address); if( rev_ipv6_address!=NULL ) free(rev_ipv6_address); return; } zone_data = g_strconcat( "$TTL 3D; Reverse zone IPv4->DNS\n", "@\tIN\tSOA\t", domain_name, ".\thostmaster.", domain_name, ". (\n" "\t\t\t", date_string, "\t;\n", "\t\t\t8H\t\t;\n", "\t\t\t2H\t\t;\n", "\t\t\t1W\t\t;\n", "\t\t\t1D )\t\t;\n\n", NULL); fputs(zone_data, new_zone_fp); g_free(zone_data); fclose(new_zone_fp); g_free(zone_file); } /* Add the reverse IPv6 zone */ if( have_ipv6 && ! zone_exists(rev_ipv6_address) ) { if( active_index <= 0 ) { // dumped mask zone_data = g_strconcat( "\nzone \"", rev_ipv6_address, ".ip6.arpa\" {\n", "\ttype master;\n" "\tfile \"sites/", domain_name, "/reverse.zone.ipv6\";\n", "\tallow-transfer { 127.0.0.1; };\n", "\tallow-update { none; };\n", "\tallow-query { any; };\n", "\tzone-statistics yes;\n", "\tnotify no;\n", "\talso-notify { };\n", "};\n", NULL); fputs(zone_data, fp); g_free(zone_data); } if( active_index == 1 ) { // dumped mask zone_data = g_strconcat( "\nzone \"", rev_ipv6_address, ".ip6.arpa\" {\n", "\ttype slave;\n" "\tfile \"sites/", domain_name, "/reverse.zone.ipv6\";\n", "\tallow-transfer { 127.0.0.1; };\n", "\tallow-query { any; };\n", "\tmasters { 127.0.0.1; };\n", "\tzone-statistics yes;\n", "\tnotify no;\n", "\talso-notify { };\n", "};\n", NULL); fputs(zone_data, fp); g_free(zone_data); } /* Add the reverse IPv6 zone file */ zone_file = g_strdup_printf("%s/etc/sites/%s/reverse.zone.ipv6", CHROOT_PATH_BUF, domain_name); if((new_zone_fp=fopen(zone_file, "w+"))==NULL) { info = g_strdup_printf(_("Couldnt write the reverse IPv6 zone file here:\n%s\n"), zone_file); show_info(info); g_free(info); g_free(zone_file); free(date_string); if( mask!=NULL ) g_free(mask); if( rev_ipv4_address!=NULL ) free(rev_ipv4_address); if( rev_ipv6_address!=NULL ) free(rev_ipv6_address); return; } zone_data = g_strconcat( "$TTL 3D; Reverse zone IPv6->DNS\n", "@\tIN\tSOA\t", domain_name, ".\thostmaster.", domain_name, ". (\n" "\t\t\t", date_string, "\t;\n", "\t\t\t8H\t\t;\n", "\t\t\t2H\t\t;\n", "\t\t\t1W\t\t;\n", "\t\t\t1D )\t\t;\n\n", NULL); fputs(zone_data, new_zone_fp); g_free(zone_data); fclose(new_zone_fp); g_free(zone_file); } fclose(fp); free(date_string); if( have_ipv4 ) free(rev_ipv4_address); if( have_ipv6 ) free(rev_ipv6_address); if( mask!=NULL ) g_free(mask); // if( rev_ipv4_address!=NULL ) // free(rev_ipv4_address); // if( rev_ipv6_address!=NULL ) // free(rev_ipv6_address); /* Chown -R NAMED_USER:NAMED_USER /var/named/etc/sites/ so that named can write a journal (.jnl) etc */ command = g_strdup_printf("chown -R %s:%s %s/etc/sites/*", NAMED_USER, NAMED_USER, CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); /* Populate the relevant gui sections */ populate_domain_treeview(widgets); populate_resource_treeview(widgets); /* FIXME set this as the selected domain, the first domain is selected as is. */ // Select_last_domain(); } gadmin-bind-0.2.5/src/activate_button_clicked.c0000644000000000000000000001037311350705002020166 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include #include "widgets.h" #include "gettext.h" #include "commands.h" #include "chars_are_digits.h" #include "clear_log_tab.h" #include "populate_log_tab.h" #include "activate_button_clicked.h" extern int activated; extern char CHROOT_PATH_BUF[1024]; void write_sysinit_script() { FILE *fp; gchar *cmd, *script, *script_path; script_path = g_strdup_printf("%s/%s", SYSINIT_SCRIPTS_DIR, SYSINIT_SCRIPT_NAME); if((fp=fopen(script_path, "w+"))==NULL) { printf("Could not write the sysinit script here: %s\n", script_path); g_free(script_path); return; } script = g_strconcat( "#!/bin/bash\n", "#\n", "#\n", "# chkconfig: 2345 10 30\n", "#\n", "# processname: gadmin-bind\n", "# description: This shell script takes care of starting and stopping \\n", "# gadmin-bind.\n", "#\n", "### BEGIN INIT INFO\n", "# Provides: gadmin-bind\n", "# Required-Start: network NetworkManager\n", "# Required-Stop: NetworkManager\n", "# Default-Start: 2 3 4 5\n", "# Default-Stop: 0 1 6\n", "# Short-Description: start and stop gadmin-bind\n", "# Description: GAdmin-BIND starts and stops bind.\n", "### END INIT INFO\n", "\n", "\n", "case \"$1\" in\n", " start)\n", "\n", NAMED_BINARY, " -u ", NAMED_USER, " -t ", CHROOT_PATH_BUF, " -c /etc/named.conf\n", "\n", ";;\n", "\n", " stop)\n", "\n", "killall -9 named\n", "\n", ";;\n", " *)\n", "echo \"usage gadmin-bind {start|stop}\"\n", "exit 1\n", ";;\n", "esac\n", "\n", "exit 0\n", "\n", NULL); fputs(script, fp); fclose(fp); g_free(script); /* Chmod the script to 755 */ cmd = g_strdup_printf("chmod 755 %s", script_path); if( ! run_command(cmd) ) { printf("Error chmodding the sysinit script.\n"); } g_free(cmd); g_free(script_path); } void activate_button_clicked(struct w *widgets) { gchar *start, *test, *info; if( activated ) return; clear_log_tab(widgets); start = g_strdup_printf("%s -u %s -t %s -c /etc/named.conf", NAMED_BINARY, NAMED_USER, CHROOT_PATH_BUF); if( ! run_command(start) ) { /* Shows any errors QA:d */ test = g_strdup_printf("%s -fg -u %s -t %s -c /etc/named.conf 2>&1", NAMED_BINARY, NAMED_USER, CHROOT_PATH_BUF); run_command_show_err(test); g_free(test); activated = 0; return; } g_free(start); activated = 1; if( ! chars_are_digits(CMD_SLEEP_LOG_SECS) ) { info = g_strdup_printf(_("CMD_SLEEP_LOG_SECS should be in seconds, please reinstall the program.\n")); show_info(info); g_free(info); return; } if( strlen(CMD_SLEEP_LOG_SECS) > 2 ) /* 99 seconds max */ { info = g_strdup_printf(_("CMD_SLEEP_LOG_SECS max length is > 2 chars, please reinstall the program.\n")); show_info(info); g_free(info); return; } sleep(atoi(CMD_SLEEP_LOG_SECS)); populate_log_tab(widgets); /* Write the sysinit script */ write_sysinit_script(); /* Start the server at boot */ if( ! strstr(SYSINIT_START_CMD, "none") ) { if( ! run_command(SYSINIT_START_CMD) ) { // Fixme, not translated... info = g_strdup_printf(_("Error: Could not make the server start at boot.\n")); show_info(info); g_free(info); } } } gadmin-bind-0.2.5/src/create_main_window.h0000644000000000000000000000200711350705002017153 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_create_main_window_H # define GBINDADMIN_create_main_window_H extern struct w *widgets; void create_main_window(struct w *widgets); #endif gadmin-bind-0.2.5/src/show_help.c0000644000000000000000000000754211350705003015312 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "show_info.h" void show_help(struct w *widgets) { gchar *text; text = g_strconcat(_("\n\n1. Adding master domains:\n"), _(" To add a master domain you will need a static IP-address range.\n"), _(" Supply the 2 entries with domain specific information.\n"), _(" Select master in the third box.\n"), _(" Click the add button to add this domain.\n"), _(" Now click on the domain and then add a name server in the resource manager.\n"), _("\n"), _(" When the domain and its resources is set up and functional you call the ISP.\n"), _(" The ISP will then delegate control over your domain name to you.\n"), _(" This may or may not be true depending on how your ISP does things.\n"), _(" Make sure its sending notifies for all zones in the system log tab.\n"), _("\n"), _("\n"), _("2. Adding slave domains:\n"), _(" To add a slave domain you will need a static IP-address.\n"), _(" Supply the 2 entries with domain specific information.\n"), _(" Select slave in the third box.\n"), _(" Click the add button to add this domain.\n"), _(" Now click on the domain and then add a name server in the resource manager.\n"), _(" Add more resources as you like and when youre satisfied you can activate the server.\n"), _("\n"), _("\n"), _("3. Adding forward caching domains: (Not completed)\n"), _("\n"), _("\n"), _("4. Adding stub domains: (Not completed)\n"), _("\n"), _("\n"), _("5. Altering domains:\n"), _(" Altering a domain is done by selecting a domain in the domain tab.\n"), _(" Now click the change button and a domain settings window will pop up.\n"), _(" In this window you can select how the server will function.\n"), _("\n"), _(" If the domain name is changed then all references to \"new.domain.se\" will\n"), _(" also be altered using sed so first make sure this is what you want to do.\n"), _(" IE: dont do this if you want to change a domain called hello.se and another domain\n"), _(" is called hello.se.happy.se this site will then be called new.domain.se.happy.se.\n"), _("\n"), _(" If the domain type is changed the server will automatically transform to this type.\n"), _("\n"), _(" Any changes must be confirmed by clicking the apply button and requires a reload.\n"), _("\n"), _("\n"), _("6. Zone reloads and key generation:\n"), _(" When using GAdmin-BIND for the first time you should go to the settings and generate a new key.\n"), _(" The key is used by rndc to connect to the server and configuring it.\n"), _(" If the current rndc.conf key and the chrooted named.conf's key differs then\n"), _(" rndc wont be able to connect to the server and you wont be able to reload the zones.\n"), _("\n"), "\n", NULL); show_info(text); g_free(text); } gadmin-bind-0.2.5/src/reverse_address.c0000644000000000000000000001562211350705002016477 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include "stdio.h" #include "stdlib.h" #include "string.h" #include "allocate.h" #include "reverse_address.h" #include "ip_handling.h" #define MAX_ADDR_LEN 1000 char * reverse_address(char *addr) { char *reverse, *temp, *dot1, *dot2, *dot3, *dot4; int num_dots = 0; int mask = 0; int i = 0; char *rev; int rev_length = 0; /* Reverse IPv6 address x.x.x.x.x.x.x.x.ip6.arpa */ if( strstr(addr, ".ip6.arpa") ) { reverse = reverse_to_forward(addr); return reverse; } reverse = allocate(MAX_ADDR_LEN+3); dot1 = allocate(MAX_ADDR_LEN); dot2 = allocate(MAX_ADDR_LEN); dot3 = allocate(MAX_ADDR_LEN); dot4 = allocate(MAX_ADDR_LEN); temp = allocate(MAX_ADDR_LEN); /* IPv4 - Add a dot in the beginning and one at the end before strtok */ if( strstr(addr, ".") && ! strstr(addr, ":") && ! strstr(addr, "ip6.arpa") ) { snprintf(reverse, MAX_ADDR_LEN-2, ".%s.", addr); temp = strtok(reverse, "."); while( temp != NULL ) { num_dots++; if( num_dots == 1 ) snprintf(dot1, MAX_ADDR_LEN-1, "%s", temp); if( num_dots == 2 ) snprintf(dot2, MAX_ADDR_LEN-1, "%s", temp); if( num_dots == 3 ) snprintf(dot3, MAX_ADDR_LEN-1, "%s", temp); if( num_dots == 4 ) snprintf(dot4, MAX_ADDR_LEN-1, "%s", temp); /* We pass NULL to get the next token */ temp = strtok(NULL, "."); } if( num_dots == 1 ) snprintf(reverse, MAX_ADDR_LEN-1, "%s", dot1); if( num_dots == 2 ) snprintf(reverse, MAX_ADDR_LEN-1, "%s.%s", dot2, dot1); if( num_dots == 3 ) snprintf(reverse, MAX_ADDR_LEN-1, "%s.%s.%s", dot3, dot2, dot1); if( num_dots == 4 ) snprintf(reverse, MAX_ADDR_LEN-1, "%s.%s.%s.%s", dot4, dot3, dot2, dot1); free(dot1); free(dot2); free(dot3); free(dot4); } else if( strstr(addr, ":") ) { /* IPv6 - Get the network address */ snprintf(temp, MAX_ADDR_LEN-1, "%s", addr); if( ! strstr(temp, "/") ) { // printf("Reverse_address.c: Error, no slash found.\n"); // printf("Missing network mask, IE: fe80::213:8fff:feea:9b79/64 <-\n\n"); snprintf(reverse, MAX_ADDR_LEN-1, "%s", "ADDRESS_ERROR"); } /* Split address and mask */ for(i=0; temp[i+1]!='\0'; i++) // added +1 if( temp[i]=='/') { /* 3 == max 128 mask */ mask = atoi(&temp[i+1]); temp[i]='\0'; } /* Build the host part of the IPv6 address */ rev = build_reverse_ip((char *)temp, mask, 0, 0); // IPv4 Range: start, end); if( rev ) { // printf("Reverse host part IPv6 address: %s\n", rev); // Here we must pass mask 0 to get the entire host address. // Then cut away the length of the host part rev_length = strlen(rev); free(rev); /* Build the entire ip of this host with mask 0 */ rev = build_reverse_ip((char *)temp, 0, 0, 0); // IPv4 Range: start, end); if( rev ) { // Snip ".ip6.arpa" at the end. rev[strlen(rev)-9]='\0'; // Reverse zone network address is the right part. snprintf(reverse, 1000, "%s", &rev[rev_length+1]); // printf("Reverse network part IPv6 address: %s\n", reverse); free(rev); } else { // printf("Reverse_address.c: Error, Build network address failed.\n"); snprintf(reverse, MAX_ADDR_LEN-1, "%s", "ADDRESS_ERROR"); } } else { // printf("Building reverse host part IPv6 address failed.\n"); snprintf(reverse, MAX_ADDR_LEN-1, "%s", "ADDRESS_ERROR"); } } else { printf("This is not a valid ipv4 or ipv6 address\n"); snprintf(reverse, MAX_ADDR_LEN-1, "%s", "ADDRESS_ERROR"); } free(temp); return reverse; } /* Converts a forward IP address to a PTR host part address */ char * get_ptr_addr_from_forward_address(char *forward_address) { gchar **split_addr, **p; gchar *last_octets=NULL; char *address, *rev; int i, mask = 0; int is_ipv4 = 0; int is_ipv6 = 0; if( forward_address==NULL || strlen(forward_address) < 5 ) return NULL; if( strstr(forward_address, ":") ) is_ipv6 = 1; else is_ipv4 = 1; address = allocate(1024); snprintf(address, 1000, "%s", forward_address); /* Get the host part for an IPv4 address. This is used in the reverse IPv4 zone like this: 50 IN PTR dns1.example.org */ if( is_ipv4 ) { p = split_addr = g_strsplit(address, ".", 0); /* 0 = split all tokens */ while( *p ) { if( last_octets!=NULL ) g_free(last_octets); last_octets = g_strdup_printf("%s", *p); p++; } g_strfreev(split_addr); if( last_octets == NULL ) { printf("Adress splitting error.\n"); if( last_octets!=NULL ) g_free(last_octets); free(address); return NULL; } } /* Get the host part from an IPv6 address with mask. This is used in the reverse IPv6 zone like this: 9.7.b.9.a.e.e.f.f.f.f.8.3.1.2.0 IN PTR dns1.example.org */ if( is_ipv6 ) { if( ! strstr(address, "/") ) { mask = 0; // Doesnt matter if theres no mask } /* Split address and mask if any */ for(i=0; address[i]!='\0'; i++) if( address[i]=='/') { /* 3 == max 128 mask */ mask = atoi(&address[i+1]); address[i]='\0'; break; } /* Build the host part of the IPv6 address */ rev = build_reverse_ip((char *)address, mask, 0, 0); // IPv4 Range: start, end); if( rev ) { printf("Reverse host part IPv6 address: %s\n", rev); last_octets = g_strdup_printf("%s", rev); free(rev); } else { printf("Building reverse host part IPv6 address failed.\n"); free(address); return NULL; } } snprintf(address, 1000, "%s", last_octets); if( last_octets!=NULL ) g_free(last_octets); return address; } gadmin-bind-0.2.5/src/add_resource.h0000644000000000000000000000173711350705002015765 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef add_resource_H # define add_resource_H extern struct w *widgets; void add_resource(struct w *widgets); #endif gadmin-bind-0.2.5/src/create_resolvers_tab.c0000644000000000000000000000506511350705002017514 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "populate_resolvers.h" #include "save_resolvers.h" void create_resolvers_tab(struct w *widgets) { /* Create the leases textview in a scrolled window */ GtkWidget *resolvers_hbox, *resolvers_scrolled_window; GtkWidget *resolvers_hbuttonbox, *resolvers_tab_save_button; resolvers_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox3), resolvers_hbox, TRUE, TRUE, 0); resolvers_scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start(GTK_BOX(resolvers_hbox), resolvers_scrolled_window, TRUE, TRUE, 0); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(resolvers_scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); /* Must set a larger size or it wont scroll */ gtk_widget_set_size_request(resolvers_scrolled_window, -1, 140); widgets->resolvers_textview = gtk_text_view_new(); gtk_container_add (GTK_CONTAINER (resolvers_scrolled_window), widgets->resolvers_textview); /* The resolvers save and update buttons */ resolvers_hbuttonbox = gtk_hbutton_box_new(); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox3), resolvers_hbuttonbox, FALSE, TRUE, 0); gtk_button_box_set_layout(GTK_BUTTON_BOX(resolvers_hbuttonbox), GTK_BUTTONBOX_SPREAD); resolvers_tab_save_button = gtk_button_new_from_stock(GTK_STOCK_SAVE); gtk_container_add(GTK_CONTAINER(resolvers_hbuttonbox), resolvers_tab_save_button); g_signal_connect_swapped(G_OBJECT(resolvers_tab_save_button), "clicked", G_CALLBACK(save_resolvers), widgets); populate_resolvers(widgets); } gadmin-bind-0.2.5/src/set_version.h0000644000000000000000000000176211350705003015665 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_set_version_H # define GBINDADMIN_set_version_H extern struct w *widgets; void set_version(struct w *widgets); #endif gadmin-bind-0.2.5/src/delete_resource.c0000644000000000000000000002131111350705002016460 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "widgets.h" #include "gettext.h" #include "allocate.h" #include "show_info.h" #include "reread_conf.h" #include "commands.h" #include "reverse_address.h" #include "populate_resource_treeview.h" extern char global_domain_type[1024]; extern char global_domain_name[1024]; extern char global_domain_ipv4_address[1024]; extern char global_domain_ipv6_address[1024]; extern char global_resource_type[1024]; extern char global_resource_hostname[1024]; extern char global_resource_address[1024]; extern char CHROOT_PATH_BUF[1024]; extern int MAX_CONF_LINE; /* Deletes the selected resource in the forward and reverse zones */ void delete_resource(struct w *widgets) { FILE *fp; long file_size=0; char *new_conf; char *line; gchar *info; char *tmp1, *tmp2, *tmp3, *tmp4; gchar *forward_zone_file; gchar *reverse_zone_file; char *last_octets; if( strlen(global_domain_type)==0 ) { info = g_strdup_printf(_("Missing domain type, resource not deleted\n")); show_info(info); g_free(info); return; } if( strlen(global_domain_name)==0 ) { info = g_strdup_printf(_("Missing domain name, resource not deleted\n")); show_info(info); g_free(info); return; } if( strlen(global_domain_ipv4_address)==0 && strlen(global_domain_ipv6_address)==0 ) { info = g_strdup_printf(_("Missing forward domain address, resource not deleted\n")); show_info(info); g_free(info); return; } if( strlen(global_resource_type)==0 ) { info = g_strdup_printf(_("Missing resource type, resource not deleted\n")); show_info(info); g_free(info); return; } if( strlen(global_resource_hostname)==0 ) { info = g_strdup_printf(_("Missing resource hostname, resource not deleted\n")); show_info(info); g_free(info); return; } /* NS-Records without forward addresses should be deletable */ if( strlen(global_resource_address)==0 && ! strstr(global_resource_type, "NS-Record") ) { info = g_strdup_printf(_("Missing forward resource address, resource not deleted\n")); show_info(info); g_free(info); return; } /* Delete the selected resource from the forward zone */ forward_zone_file = g_strdup_printf("%s/etc/sites/%s/forward.zone", CHROOT_PATH_BUF, global_domain_name); if((fp=fopen(forward_zone_file, "r"))==NULL) { info = g_strdup_printf(_("Could not open the forward zone file here:\n%s\n"), forward_zone_file); show_info(info); g_free(info); g_free(forward_zone_file); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); new_conf = allocate(file_size+1); line = allocate(file_size+1); tmp1 = allocate(MAX_CONF_LINE); tmp2 = allocate(MAX_CONF_LINE); tmp3 = allocate(MAX_CONF_LINE); tmp4 = allocate(MAX_CONF_LINE); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > MAX_CONF_LINE-3 ) continue; if( strlen(line) < 2 ) continue; tmp1[0]='\0', tmp2[0]='\0', tmp3[0]='\0', tmp4[0]='\0'; sscanf(line, "%s %s %s %s", tmp1, tmp2, tmp3, tmp4); /* Skip entries that should be deleted */ if( !strcmp(global_resource_type, "NS-Record") && ( !strcmp(tmp2, global_resource_hostname) || !strcmp(tmp3, global_resource_hostname) ) && ( !strcmp(tmp1, "NS") || !strcmp(tmp2, "NS") ) ) { printf("Deleting Forward NS: %s\n", line); } else if( !strcmp(global_resource_type, "MX-Record") && ( !strcmp(tmp3, global_resource_hostname) || !strcmp(tmp4, global_resource_hostname) ) && ( !strcmp(tmp1, "MX") || !strcmp(tmp2, "MX") ) ) { printf("Deleting Forward MX: %s\n", line); } else if( !strcmp(global_resource_type, "A-Record") && !strcmp(tmp1, global_resource_hostname) && ( !strcmp(tmp3, global_resource_address) || !strcmp(tmp4, global_resource_address) ) && ( !strcmp(tmp2, "A") || !strcmp(tmp3, "A") ) ) { printf("Deleting Forward A: %s\n", line); } else if( !strcmp(global_resource_type, "AAAA-Record") && !strcmp(tmp1, global_resource_hostname) && ( !strcmp(tmp3, global_resource_address) || !strcmp(tmp4, global_resource_address) ) && ( !strcmp(tmp2, "AAAA") || !strcmp(tmp3, "AAAA") ) ) { printf("Deleting Forward AAAA: %s\n", line); } else if( !strcmp(global_resource_type, "CNAME-Record") && !strcmp(tmp1, global_resource_address) && ( !strcmp(tmp3, global_resource_hostname) || !strcmp(tmp4, global_resource_hostname) ) && ( !strcmp(tmp2, "CNAME") || !strcmp(tmp3, "CNAME") ) ) { printf("Deleting Forward CNAME: %s\n", line); } else strcat(new_conf, line); } fclose(fp); /* Write the new forward zone */ if((fp=fopen(forward_zone_file, "w+"))==NULL) { info = g_strdup_printf(_("Could not write the forward zone file here:\n%s\n"), forward_zone_file); show_info(info); g_free(info); free(new_conf); free(line); free(tmp1); free(tmp2); free(tmp3); free(tmp4); g_free(forward_zone_file); return; } fputs(new_conf, fp); free(new_conf); free(line); free(tmp1); free(tmp2); free(tmp3); free(tmp4); g_free(forward_zone_file); fclose(fp); /* Reverse IPv4 zone resource deletion Begin! */ /* Return if there should be no PTR for this record type */ if( strcmp(global_resource_type, "NS-Record") && strcmp(global_resource_type, "A-Record") && strcmp(global_resource_type, "AAAA-Record") ) { return; } /* Delete the selected resource from the reverse IPv4 zone */ reverse_zone_file = g_strdup_printf("%s/etc/sites/%s/reverse.zone.ipv4", CHROOT_PATH_BUF, global_domain_name); if((fp=fopen(reverse_zone_file, "r"))==NULL) { info = g_strdup_printf(_("Could not open the reverse IPv4 zone file here:\n%s\n"), reverse_zone_file); show_info(info); g_free(info); g_free(reverse_zone_file); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); new_conf = allocate(file_size+1); line = allocate(file_size+1); tmp1 = allocate(MAX_CONF_LINE); tmp2 = allocate(MAX_CONF_LINE); tmp3 = allocate(MAX_CONF_LINE); tmp4 = allocate(MAX_CONF_LINE); /* Get the last octets for the IP address or NULL (Wont match any address) */ last_octets = get_ptr_addr_from_forward_address((char *)global_resource_address); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > MAX_CONF_LINE-3 ) continue; if( strlen(line) < 2 ) continue; tmp1[0]='\0', tmp2[0]='\0', tmp3[0]='\0', tmp4[0]='\0'; sscanf(line, "%s %s %s %s", tmp1, tmp2, tmp3, tmp4); /* Skip lines that should be deleted */ if( !strcmp(global_resource_type, "NS-Record") && ( !strcmp(tmp2, global_resource_hostname) || !strcmp(tmp3, global_resource_hostname) ) && ( !strcmp(tmp1, "NS") || !strcmp(tmp2, "NS") ) ) { printf("Deleting Reverse IPv4 NS: %s\n", line); } else if( !strcmp(global_resource_type, "A-Record") && !strcmp(tmp1, last_octets) && ( !strcmp(tmp3, global_resource_hostname) || !strcmp(tmp4, global_resource_hostname) ) && ( !strcmp(tmp2, "PTR") || !strcmp(tmp3, "PTR") ) ) { printf("Deleting Reverse IPv4 PTR: %s\n", line); } else strcat(new_conf, line); } fclose(fp); /* Write the new conf */ if((fp=fopen(reverse_zone_file, "w+"))==NULL) { info = g_strdup_printf(_("Could not write the reverse IPv4 zone file here:\n%s\n"), reverse_zone_file); show_info(info); g_free(info); free(new_conf); g_free(reverse_zone_file); g_free(last_octets); return; } fputs(new_conf, fp); free(new_conf); g_free(reverse_zone_file); fclose(fp); if( last_octets!=NULL ) free(last_octets); } gadmin-bind-0.2.5/src/save_root_servers.h0000644000000000000000000000175411350705003017100 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef save_root_servers_H # define save_root_servers_H extern struct w *widgets; void save_root_servers(struct w *widgets); #endif gadmin-bind-0.2.5/src/create_main_window.c0000644000000000000000000003027711350705002017160 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "locate_icons.h" #include "activate_button_clicked.h" #include "deactivate_button_clicked.h" #include "reread_button_clicked.h" #include "settings_window.h" #include "show_help.h" #include "credits_window.h" #include "set_version.h" #include "rndc_reload.h" void create_main_window(struct w *widgets) { gchar *info, *pixmap_directory; GtkCellRenderer *pixbuf_cell_renderer; GdkPixbuf *pixbuf; gchar *utf8=NULL; /* Create the main window */ widgets->main_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_position(GTK_WINDOW (widgets->main_window), GTK_WIN_POS_CENTER); /* Only set the vertical size */ gtk_widget_set_size_request(widgets->main_window, -1, 500); /* Set window information */ info = g_strdup_printf("GADMIN-BIND %s", VERSION); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_window_set_title(GTK_WINDOW(widgets->main_window), utf8); g_free(info); /* Set the main window icon */ pixmap_directory = g_strdup_printf("%s/pixmaps/gadmin-bind", PACKAGE_DATA_DIR); add_pixmap_directory(pixmap_directory); g_free(pixmap_directory); pixbuf_cell_renderer = gtk_cell_renderer_pixbuf_new(); pixbuf = create_pixbuf("gadmin-bind.png"); g_object_set(pixbuf_cell_renderer, "pixbuf", pixbuf, NULL); gtk_window_set_icon(GTK_WINDOW(widgets->main_window), pixbuf); gdk_pixbuf_unref(pixbuf); widgets->main_vbox = gtk_vbox_new(FALSE, 0); gtk_container_add (GTK_CONTAINER (widgets->main_window), widgets->main_vbox); /* Hboxes (down) */ GtkWidget *toolbar_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(widgets->main_vbox), toolbar_hbox, FALSE, FALSE, 0); GtkWidget *status_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(widgets->main_vbox), status_hbox, FALSE, FALSE, 0); GtkWidget *status_hsep_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->main_vbox), status_hsep_hbox, FALSE, TRUE, 0); GtkWidget *notebook_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->main_vbox), notebook_hbox, TRUE, TRUE, 0); /* Create the main toolbar */ GtkWidget *main_toolbar = gtk_toolbar_new(); gtk_box_pack_start(GTK_BOX(toolbar_hbox), main_toolbar, TRUE, TRUE, 0); gtk_toolbar_set_style(GTK_TOOLBAR(main_toolbar), GTK_TOOLBAR_BOTH); /* Activate button */ info = g_strdup_printf(_("Activate")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *toolbar_icon_yes = gtk_image_new_from_stock("gtk-yes", gtk_toolbar_get_icon_size(GTK_TOOLBAR(main_toolbar))); GtkWidget *activate_button = gtk_toolbar_append_element(GTK_TOOLBAR(main_toolbar), GTK_TOOLBAR_CHILD_BUTTON, NULL, utf8, NULL, NULL, toolbar_icon_yes, NULL, NULL); g_free(info); g_signal_connect_swapped(G_OBJECT(activate_button), "clicked", G_CALLBACK(activate_button_clicked), widgets); /* Deactivate button */ info = g_strdup_printf(_("Deactivate")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *toolbar_icon_no = gtk_image_new_from_stock("gtk-no", gtk_toolbar_get_icon_size(GTK_TOOLBAR(main_toolbar))); GtkWidget *deactivate_button = gtk_toolbar_append_element(GTK_TOOLBAR(main_toolbar), GTK_TOOLBAR_CHILD_BUTTON, NULL, utf8, NULL, NULL, toolbar_icon_no, NULL, NULL); g_free(info); g_signal_connect_swapped(G_OBJECT(deactivate_button), "clicked", G_CALLBACK(deactivate_button_clicked), widgets); /* Restart button */ info = g_strdup_printf(_("Restart")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *toolbar_icon_refresh = gtk_image_new_from_stock("gtk-refresh", gtk_toolbar_get_icon_size(GTK_TOOLBAR(main_toolbar))); GtkWidget *reread_button = gtk_toolbar_append_element(GTK_TOOLBAR(main_toolbar), GTK_TOOLBAR_CHILD_BUTTON, NULL, info, NULL, NULL, toolbar_icon_refresh, NULL, NULL); g_free(info); g_signal_connect_swapped(G_OBJECT(reread_button), "clicked", G_CALLBACK(reread_button_clicked), widgets); /* gtk_toolbar_append_space(GTK_TOOLBAR(main_toolbar)); */ /* Settings button */ info = g_strdup_printf(_("Settings")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *toolbar_icon_settings = gtk_image_new_from_stock("gtk-index", gtk_toolbar_get_icon_size(GTK_TOOLBAR(main_toolbar))); GtkWidget *settings_button = gtk_toolbar_append_element(GTK_TOOLBAR(main_toolbar), GTK_TOOLBAR_CHILD_BUTTON, NULL, utf8, NULL, NULL, toolbar_icon_settings, NULL, NULL); g_free(info); g_signal_connect_swapped(G_OBJECT(settings_button), "clicked", G_CALLBACK(show_settings_window), widgets); /* Reload zones button */ info = g_strdup_printf(_("Reload zones")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *toolbar_icon_reload = gtk_image_new_from_stock("gtk-refresh", gtk_toolbar_get_icon_size(GTK_TOOLBAR(main_toolbar))); GtkWidget *reload_button = gtk_toolbar_append_element(GTK_TOOLBAR(main_toolbar), GTK_TOOLBAR_CHILD_BUTTON, NULL, utf8, NULL, NULL, toolbar_icon_reload, NULL, NULL); g_free(info); g_signal_connect_swapped(G_OBJECT(reload_button), "clicked", G_CALLBACK(rndc_reload), widgets); /* Help button */ info = g_strdup_printf(_("Help")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *toolbar_icon_help = gtk_image_new_from_stock("gtk-help", gtk_toolbar_get_icon_size(GTK_TOOLBAR(main_toolbar))); GtkWidget *help_button = gtk_toolbar_append_element(GTK_TOOLBAR(main_toolbar), GTK_TOOLBAR_CHILD_BUTTON, NULL, utf8, NULL, NULL, toolbar_icon_help, NULL, NULL); g_free(info); g_signal_connect_swapped(G_OBJECT(help_button), "clicked", G_CALLBACK(show_help), widgets); /* Credits button */ info = g_strdup_printf(_("Credits")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *toolbar_icon_credits = gtk_image_new_from_stock("gtk-justify-center", gtk_toolbar_get_icon_size(GTK_TOOLBAR(main_toolbar))); GtkWidget *credits_button = gtk_toolbar_append_element(GTK_TOOLBAR(main_toolbar), GTK_TOOLBAR_CHILD_BUTTON, NULL, utf8, NULL, NULL, toolbar_icon_credits, NULL, NULL); g_free(info); g_signal_connect_swapped(G_OBJECT(credits_button), "clicked", G_CALLBACK(show_credits), widgets); /* Quit button */ info = g_strdup_printf(_("Quit")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *toolbar_icon_quit = gtk_image_new_from_stock("gtk-quit", gtk_toolbar_get_icon_size(GTK_TOOLBAR(main_toolbar))); GtkWidget *quit_button = gtk_toolbar_append_element(GTK_TOOLBAR(main_toolbar), GTK_TOOLBAR_CHILD_BUTTON, NULL, utf8, NULL, NULL, toolbar_icon_quit, NULL, NULL); g_free(info); g_signal_connect_swapped(G_OBJECT(quit_button), "clicked", G_CALLBACK(gtk_main_quit), NULL); /* The notebook */ GtkWidget *notebook_vbox = gtk_vbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(notebook_hbox), notebook_vbox, TRUE, TRUE, 0); widgets->notebook_vbox1 = gtk_vbox_new(FALSE, 0); widgets->notebook_vbox2 = gtk_vbox_new(FALSE, 0); widgets->notebook_vbox3 = gtk_vbox_new(FALSE, 0); widgets->notebook_vbox4 = gtk_vbox_new(FALSE, 0); widgets->notebook_vbox5 = gtk_vbox_new(FALSE, 0); GtkWidget *main_notebook = gtk_notebook_new(); gtk_box_pack_start(GTK_BOX(notebook_vbox), main_notebook, TRUE, TRUE, 0); gtk_notebook_set_show_border(GTK_NOTEBOOK(main_notebook), TRUE); gtk_widget_show(main_notebook); info = g_strdup_printf(_("Domains")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *domain_label = gtk_label_new(utf8); g_free(info); info = g_strdup_printf(_("Root servers")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *root_servers_label = gtk_label_new(utf8); g_free(info); info = g_strdup_printf(_("Resolvers")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *resolvers_label = gtk_label_new(utf8); g_free(info); info = g_strdup_printf(_("System log")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *system_log_label = gtk_label_new(utf8); g_free(info); info = g_strdup_printf(_("Verify domains")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); GtkWidget *verify_domain_label = gtk_label_new(utf8); g_free(info); gtk_notebook_insert_page(GTK_NOTEBOOK(main_notebook), widgets->notebook_vbox1, domain_label, 0); gtk_notebook_insert_page(GTK_NOTEBOOK(main_notebook), widgets->notebook_vbox2, root_servers_label, 1); gtk_notebook_insert_page(GTK_NOTEBOOK(main_notebook), widgets->notebook_vbox3, resolvers_label, 2); gtk_notebook_insert_page(GTK_NOTEBOOK(main_notebook), widgets->notebook_vbox4, system_log_label, 3); gtk_notebook_insert_page(GTK_NOTEBOOK(main_notebook), widgets->notebook_vbox5, verify_domain_label, 4); /* Set version and status labels */ info = g_strdup_printf(_("Information: cant read version")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->version_label = gtk_label_new(utf8); gtk_box_pack_start(GTK_BOX(status_hbox), widgets->version_label, FALSE, FALSE, 0); gtk_misc_set_alignment(GTK_MISC(widgets->version_label), 0, 0); g_free(info); /* Set dhcpd version */ set_version(widgets); GtkWidget *status_spacer_label = gtk_label_new(""); gtk_box_pack_start(GTK_BOX(status_hbox), status_spacer_label, TRUE, TRUE, 0); gtk_misc_set_alignment (GTK_MISC (status_spacer_label), 0, 0); info = g_strdup_printf(_("Status: unknown")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->status_label = gtk_label_new(utf8); gtk_box_pack_start(GTK_BOX(status_hbox), widgets->status_label, FALSE, FALSE, 0); gtk_misc_set_alignment (GTK_MISC (widgets->status_label), 0, 0); g_free(info); GtkWidget *status_hseparator = gtk_hseparator_new(); gtk_box_pack_start(GTK_BOX(status_hsep_hbox), status_hseparator, TRUE, TRUE, 0); gtk_widget_set_size_request(status_hseparator, 10, 10); if( utf8!=NULL ) g_free(utf8); } gadmin-bind-0.2.5/src/commented.c0000644000000000000000000000263611350705002015273 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "commented.h" int commented(char *line) { int i, ret = 0; if( line!=NULL && strlen(line) > 0 ) { for(i=0; line[i]!='\0'; i++) { if( i > 9000 ) { ret = 1; break; } /* Skip whitespace */ if( line[i]==' ' ) continue; /* If the first char thats not whitespace is '#' or ';' then the line is commented out */ if( line[i]=='#' || line[i]==';' ) ret = 1; else ret = 0; break; } } return ret; } gadmin-bind-0.2.5/src/resource_combo_changed.h0000644000000000000000000000177511350705002020007 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef resource_combo_changed_H # define resource_combo_changed_H extern struct w *widgets; void resource_combo_changed(struct w *widgets); #endif gadmin-bind-0.2.5/src/commands.c0000644000000000000000000000417611350705002015122 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include #include #include #include "widgets.h" #include "allocate.h" #include "show_info.h" extern int MAX_READ_POPEN; void run_command_show_err(gchar *command) { FILE *fp; char *line, *info; int once = 0; if((fp=popen(command, "r"))==NULL) { perror("popen"); return; } else { line = allocate(MAX_READ_POPEN+2); info = allocate(MAX_READ_POPEN+2); while(fgets(line, MAX_READ_POPEN, fp)!=NULL) { strcat(info, line); /* Show the error line a bit more clearly */ if( strstr(line, "visit") && ! once ) { once = 1; strcat(info, "\n"); } } pclose(fp); show_info(info); free(info); free(line); } } int run_command(gchar *command) { FILE *fp; int status=0, exit_status=0; if((fp=popen(command, "w"))==NULL) { perror("popen"); return 0; } status = pclose(fp); exit_status = WEXITSTATUS(status); if( exit_status == 1) exit_status = 0; else exit_status = 1; return exit_status; } int file_exists(char *infile) { FILE *fp; if((fp=fopen(infile, "r"))==NULL) return 0; fclose(fp); return 1; } gadmin-bind-0.2.5/src/populate_resource_treeview.c0000644000000000000000000003066111350705002020771 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "widgets.h" #include "gettext.h" #include "allocate.h" #include "show_info.h" #include "select_first_resource.h" #include "reverse_address.h" extern char CHROOT_PATH_BUF[1024]; extern int MAX_CONF_LINE; extern char global_domain_name[1024]; extern char global_domain_ipv4_address[1024]; extern char global_domain_ipv6_address[1024]; extern char global_domain_type[1024]; char *get_forward_ip_from_ns_name(char *hostname); char *get_forward_ip_from_ns_name(char *hostname) { FILE *fp; long file_size = 0; char *forward_ip; char *line, *tmp1, *tmp2, *tmp3, *tmp4; gchar *forward_zone_file; forward_zone_file = g_strdup_printf("%s/etc/sites/%s/forward.zone", CHROOT_PATH_BUF, global_domain_name); if((fp=fopen(forward_zone_file, "r"))==NULL) { printf("Could not read the forward zone file: \n%s\n", forward_zone_file); g_free(forward_zone_file); return "ENOFORWARDFILE"; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); forward_ip = allocate(MAX_CONF_LINE); tmp1 = allocate(MAX_CONF_LINE); tmp2 = allocate(MAX_CONF_LINE); tmp3 = allocate(MAX_CONF_LINE); tmp4 = allocate(MAX_CONF_LINE); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > MAX_CONF_LINE-3 ) continue; tmp1[0]='\0'; tmp2[0]='\0'; tmp3[0]='\0'; tmp4[0]='\0'; sscanf(line, "%s %s %s %s", tmp1, tmp2, tmp3, tmp4); /* Skip ';' comments */ if( strstr(tmp1, ";") ) continue; /* This is the line we where looking for */ if( !strcmp(tmp1, hostname) && (!strcmp(tmp2, "A") || !strcmp(tmp3, "A") ) ) { if( strlen(tmp4) > 6 && strlen(tmp4) < MAX_CONF_LINE-3 ) { snprintf(forward_ip, MAX_CONF_LINE-3, "%s", tmp4); } else if( strlen(tmp3) > 6 && strlen(tmp3) < MAX_CONF_LINE-3 ) { snprintf(forward_ip, MAX_CONF_LINE-3, "%s", tmp3); } } } free(line); free(tmp1); free(tmp2); free(tmp3); free(tmp4); fclose(fp); g_free(forward_zone_file); return forward_ip; } void populate_resource_treeview(struct w *widgets) { FILE *fp; GtkTreeIter iter; gchar *utf8=NULL; GtkTreePath *path; gboolean edit=0; int set_cursorpath=0; long file_size=0; char *line, *forward_ip; gchar *text, *info; gchar *forward_zone_file; gchar *reverse_zone_file; int i, nameservers = 0; char *tmp1, *tmp2, *tmp3, *tmp4; gtk_list_store_clear(widgets->resource_store); if( global_domain_name == NULL ) return; if( strlen(global_domain_name) < 3 ) return; /* List all resources for the selected domain */ forward_zone_file = g_strdup_printf("%s/etc/sites/%s/forward.zone", CHROOT_PATH_BUF, global_domain_name); reverse_zone_file = g_strdup_printf("%s/etc/sites/%s/reverse.zone", CHROOT_PATH_BUF, global_domain_name); if((fp=fopen(forward_zone_file, "r"))==NULL) { printf("Could not read the forward zone file: \n%s\n", forward_zone_file); g_free(forward_zone_file); g_free(reverse_zone_file); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); tmp1 = allocate(MAX_CONF_LINE); tmp2 = allocate(MAX_CONF_LINE); tmp3 = allocate(MAX_CONF_LINE); tmp4 = allocate(MAX_CONF_LINE); /* Read this file 4 times */ for(i=0; i < 5; i++) { if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > MAX_CONF_LINE-3 ) continue; tmp1[0]='\0'; tmp2[0]='\0'; tmp3[0]='\0'; tmp4[0]='\0'; sscanf(line, "%s %s %s %s", tmp1, tmp2, tmp3, tmp4); /* Skip ';' comments */ if( strstr(tmp1, ";") ) continue; if( i == 0 && !strcmp(tmp2, "NS") ) /* IN NS */ { nameservers++; text = g_strdup_printf("NS-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); /* Hostname */ utf8 = g_locale_to_utf8(tmp3, strlen(tmp3), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); /* Get the IP-Address from the forward zone's A-Record for this NS */ forward_ip = get_forward_ip_from_ns_name(tmp3); utf8 = g_locale_to_utf8(forward_ip, strlen(forward_ip), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); free(forward_ip); set_cursorpath = 1; } else if( i == 0 && !strcmp(tmp1, "NS") ) /* No(IN) NS */ { nameservers++; text = g_strdup_printf("NS-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); /* Hostname */ utf8 = g_locale_to_utf8(tmp2, strlen(tmp2), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); /* Get the IP-Address from the forward zone's A-Record for this NS */ forward_ip = get_forward_ip_from_ns_name(tmp2); utf8 = g_locale_to_utf8(forward_ip, strlen(forward_ip), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); free(forward_ip); set_cursorpath = 1; } else if( i == 1 && !strcmp(tmp3, "A") ) /* IN A */ { /* Record type */ text = g_strdup_printf("A-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); /* Hostname */ utf8 = g_locale_to_utf8(tmp1, strlen(tmp1), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); /* IP-Address */ utf8 = g_locale_to_utf8(tmp4, strlen(tmp4), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); set_cursorpath = 1; } else if( i == 1 && !strcmp(tmp2, "A") ) /* No(IN) A */ { /* Record type */ text = g_strdup_printf("A-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); /* Hostname */ utf8 = g_locale_to_utf8(tmp1, strlen(tmp1), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); /* IP-Address */ utf8 = g_locale_to_utf8(tmp3, strlen(tmp3), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); set_cursorpath = 1; } else if( i == 2 && !strcmp(tmp3, "AAAA") ) /* IN AAAA */ { /* Record type */ text = g_strdup_printf("AAAA-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); /* Hostname */ utf8 = g_locale_to_utf8(tmp1, strlen(tmp1), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); /* IP-Address */ utf8 = g_locale_to_utf8(tmp4, strlen(tmp4), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); set_cursorpath = 1; } else if( i == 2 && !strcmp(tmp2, "AAAA") ) /* No(IN) AAAA */ { /* Record type */ text = g_strdup_printf("AAAA-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); /* Hostname */ utf8 = g_locale_to_utf8(tmp1, strlen(tmp1), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); /* IP-Address */ utf8 = g_locale_to_utf8(tmp3, strlen(tmp3), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); set_cursorpath = 1; } else if( i == 3 && strstr(tmp3, "CNAME") ) /* IN CNAME */ { text = g_strdup_printf("CNAME-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); /* Point from */ utf8 = g_locale_to_utf8(tmp4, strlen(tmp4), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); /* Point to */ utf8 = g_locale_to_utf8(tmp1, strlen(tmp1), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); set_cursorpath = 1; } else if( i == 3 && strstr(tmp2, "CNAME") ) /* No(IN) CNAME */ { text = g_strdup_printf("CNAME-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); /* Point from */ utf8 = g_locale_to_utf8(tmp3, strlen(tmp3), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); /* Point to */ utf8 = g_locale_to_utf8(tmp1, strlen(tmp1), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); set_cursorpath = 1; } else if( i == 4 && strstr(tmp2, "MX") ) /* IN MX */ { text = g_strdup_printf("MX-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); utf8 = g_locale_to_utf8(tmp4, strlen(tmp4), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); utf8 = g_locale_to_utf8(tmp3, strlen(tmp3), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); set_cursorpath = 1; } else if( i == 4 && strstr(tmp1, "MX") ) /* No(IN) MX */ { text = g_strdup_printf("MX-Record"); gtk_list_store_append(GTK_LIST_STORE(widgets->resource_store), &iter); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 0, utf8, -1); utf8 = g_locale_to_utf8(tmp3, strlen(tmp3), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 1, utf8, -1); utf8 = g_locale_to_utf8(tmp2, strlen(tmp2), NULL, NULL, NULL); gtk_list_store_set(GTK_LIST_STORE(widgets->resource_store), &iter, 2, utf8, -1); set_cursorpath = 1; } } rewind(fp); } free(tmp1); free(tmp2); free(tmp3); free(line); g_free(forward_zone_file); g_free(reverse_zone_file); if( nameservers < 1 ) { info = g_strdup_printf(_("You must add a nameserver (NS-Record) for this domain now.\n")); show_info(info); g_free(info); } if( utf8!=NULL ) g_free(utf8); if( ! set_cursorpath ) return; /* FIXME.. Scroll to the correct global nic subnet and netmask (and if its set) set as curpath */ path = gtk_tree_path_new_first(); gtk_tree_view_set_cursor(GTK_TREE_VIEW(widgets->resource_treeview), path, NULL, edit); gtk_tree_path_free(path); select_first_resource(widgets); } gadmin-bind-0.2.5/src/populate_root_servers_tab.h0000644000000000000000000000201011350705002020602 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef _populate_root_servers_tab_H # define _populate_root_servers_tab_H extern struct w *widgets; void populate_root_servers_tab(struct w *widgets); #endif gadmin-bind-0.2.5/src/select_first_domain.h0000644000000000000000000000201411350705003017331 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GADMIN_BIND_select_first_domain_H # define GADMIN_BIND_select_first_domain_H extern struct w *widgets; void select_first_domain(struct w *widgets); #endif gadmin-bind-0.2.5/src/resource_treeview_row_clicked.c0000644000000000000000000000501311350705002021416 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" extern char global_resource_type[1024]; extern char global_resource_hostname[1024]; extern char global_resource_address[1024]; void resource_treeview_row_clicked(GtkTreeView *treeview, GdkEventButton *event, gpointer data) { gchar *type, *hostname, *address; GtkTreeIter iter; GtkTreePath *path; GtkTreeModel *list_store; GtkTreeSelection *selection; /* The left button is pressed */ if( ! event->type == GDK_BUTTON_PRESS || ! event->button == 1 ) return; selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)); if( gtk_tree_selection_count_selected_rows(selection) <= 1 ) { /* Get the treepath for the row that was clicked */ if( gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(treeview), event->x, event->y, &path, NULL, NULL, NULL)) { gtk_tree_selection_unselect_all(selection); gtk_tree_selection_select_path(selection, path); list_store = gtk_tree_view_get_model(GTK_TREE_VIEW(treeview)); gtk_tree_model_get_iter(list_store, &iter, path); gtk_tree_model_get(list_store, &iter, 0, &type, -1); gtk_tree_model_get(list_store, &iter, 1, &hostname, -1); gtk_tree_model_get(list_store, &iter, 2, &address, -1); sprintf(global_resource_type, "%s", type?type:"none"); sprintf(global_resource_hostname, "%s", hostname?hostname:"none"); sprintf(global_resource_address, "%s", address?address:"none"); g_free(type); g_free(hostname); g_free(address); gtk_tree_path_free(path); } } } gadmin-bind-0.2.5/src/gadmin-bind.c0000644000000000000000000001436311350705002015471 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include #include "gettext.h" #include "widgets.h" #include "show_info.h" #include "locate_icons.h" #include "commands.h" #include "allocate.h" #include "add_standard_user.h" #include "create_main_window.h" #include "create_domain_tab.h" #include "create_root_servers_tab.h" #include "create_resolvers_tab.h" #include "create_log_tab.h" #include "create_verify_tab.h" #include "populate_domain_treeview.h" #include "populate_root_servers_tab.h" #include "populate_resolvers.h" #include "populate_log_tab.h" #include "populate_resource_treeview.h" #include "dialog_if_files_missing.h" #include "select_first_domain.h" #include "select_first_resource.h" #include "status_update.h" #include "load_settings.h" #include "gadmin-bind.h" /* Used as externs */ char global_domain_name[1024]=""; char global_domain_ipv4_address[1024]=""; char global_domain_ipv6_address[1024]=""; char global_domain_type[1024]=""; char global_resource_type[1024]=""; char global_resource_hostname[1024]=""; char global_resource_address[1024]=""; int activated=0; int info_window_exit_main=0; int MAX_CONF_LINE=1024; int MAX_READ_POPEN=8192; char CHROOT_PATH_BUF[1024]=""; char SYSLOG_PATH_BUF[1024]=""; char RESOLV_PATH_BUF[1024]=""; int main(int argc, char *argv[]) { gchar *command, *info; int i=0; #ifdef ENABLE_NLS bindtextdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); textdomain(GETTEXT_PACKAGE); #endif gtk_set_locale(); gtk_init(&argc, &argv); wid *widgets = g_malloc (sizeof (wid)); /* Non root usage */ if( ! getuid() == 0 ) { /* For setting a different exit method in the info window */ info_window_exit_main = 1; info = g_strdup_printf("You must be root to run: %s\nThis window will close in 10 seconds.\n", PACKAGE); show_info(info); g_free(info); /* Users can close the info window earlier then the timeout */ for(i=0; i<10; i++) { while(gtk_events_pending()) gtk_main_iteration(); /* Set when close info window is clicked */ if( info_window_exit_main == 2 ) break; usleep(100000*10); } g_free(widgets); return 0; } /* Load the settings for paths etc */ load_settings(widgets); /* Use compiletime settings if there where no settings to load */ if( strlen(CHROOT_PATH_BUF) < 5 ) snprintf(CHROOT_PATH_BUF, 1000, "%s", CHROOT_PATH); if( strlen(SYSLOG_PATH_BUF) < 5 ) snprintf(SYSLOG_PATH_BUF, 1000, "%s", SYSLOG_PATH); if( strlen(RESOLV_PATH_BUF) < 5 ) snprintf(RESOLV_PATH_BUF, 1000, "%s", RESOLV_PATH); /* SELINUX can disallow named to use its conf or zone files so we make sure its ok */ if( file_exists("/sbin/restorecon") ) { command = allocate(1024); snprintf(command, 1000, "/sbin/restorecon -R %s", CHROOT_PATH_BUF); if( ! run_command(command) ) { printf("Error running SELINUX command: %s\n", command); printf("There could be file access troubles but we continue anyway and hope for the best.\n"); } free(command); } /* Add the NOBODY user if it doesnt exist. Shows detailed error information in the function */ if( ! add_standard_user() ) { while(gtk_events_pending()) gtk_main_iteration(); sleep(10); return 0; } if( file_exists(CHROOT_PATH_BUF) ) { /* Chown nobody:nobody on all files and dirs created so far but not directory "named" (to allow for ddns updates etc) */ command = g_strdup_printf("chown -R %s:%s %s/*", NAMED_USER, NAMED_USER, CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); /* Chown the CHROOT to root:NAMED_USER (in many cases bind rpms uses the "named" user) so make sure that our NAMED_USER has write permissions there */ command = g_strdup_printf("chown root:%s %s", NAMED_USER, CHROOT_PATH_BUF); if( ! run_command(command) ) { info = g_strdup_printf(_("Error running command:\n%s\n"), command); show_info(info); g_free(info); } g_free(command); } /* Create and show the various parts of the gui */ create_main_window(widgets); create_domain_tab(widgets); create_root_servers_tab(widgets); populate_root_servers_tab(widgets); create_resolvers_tab(widgets); populate_resolvers(widgets); create_log_tab(widgets); populate_log_tab(widgets); create_verify_tab(widgets); /* Populate the domain treeview */ populate_domain_treeview(widgets); select_first_domain(widgets); /* Populate the resource treeview */ populate_resource_treeview(widgets); select_first_resource(widgets); gtk_widget_show_all(widgets->main_window); /* Start the online/offline timer */ gtk_timeout_add(1000, (GtkFunction) status_update, widgets); /* If we dont have all the required directories and files, show a dialog */ dialog_if_files_missing(widgets); /* Window (x) close button */ g_signal_connect(GTK_OBJECT(widgets->main_window), "destroy", GTK_SIGNAL_FUNC(gtk_main_quit), NULL); /* Start the main loop */ gtk_main(); g_free(widgets); return 0; } gadmin-bind-0.2.5/src/populate_domain_treeview.h0000644000000000000000000000202711350705002020411 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_populate_scope_treeview_H # define GBINDADMIN_populate_scope_treeview_H extern struct w *widgets; void populate_domain_treeview(struct w *widgets); #endif gadmin-bind-0.2.5/src/make_settings_entries.c0000644000000000000000000000366411350705002017710 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include "make_settings_entries.h" GtkWidget *make_entry_with_label(GtkTable *table, const gchar *label_text, gint left_attach, gint right_attach, gint top_attach, gint bottom_attach, gint entry_length) { GtkWidget *entry; GtkWidget *label; label = gtk_label_new(label_text); entry = gtk_entry_new(); gtk_table_attach(table, label, left_attach, right_attach, top_attach, bottom_attach, GTK_FILL, GTK_FILL, 5, 5); gtk_table_attach(table, entry, left_attach + 1, right_attach + 1, top_attach, bottom_attach, GTK_FILL|GTK_EXPAND, GTK_FILL|GTK_EXPAND, 5, 5); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); gtk_misc_set_padding(GTK_MISC(label), 2, 2); gtk_entry_set_max_length(GTK_ENTRY(entry), entry_length); gtk_widget_set_size_request(entry, entry_length, -1); gtk_widget_show(entry); gtk_widget_show(label); return entry; } gadmin-bind-0.2.5/src/run_verify_cmd.c0000644000000000000000000000440411350705003016327 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "allocate.h" #include "widgets.h" #include "gettext.h" #include "show_info.h" #include "populate_log_tab.h" #define MAX_READ_POPEN 16384 /* FIXME: Start a timer to break long running operations */ void run_verify_cmd(struct w *widgets) { /* Shows command output in the verify tab */ FILE *fp; char *line, *buffy; gchar *info, *utf8=NULL; gchar *cmd; GtkTextBuffer *text_buffer=NULL; G_CONST_RETURN gchar *entry_text; text_buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(widgets->verify_textview)); entry_text = gtk_entry_get_text(GTK_ENTRY(widgets->verify_run_cmd_entry)); cmd = g_strdup_printf("%s", entry_text); if((fp=popen(cmd, "r"))==NULL) { info = g_strdup_printf(_("Could not run command: %s\n"), cmd); show_info(info); g_free(info); g_free(cmd); return; } buffy = allocate(MAX_READ_POPEN+1); line = allocate(MAX_READ_POPEN+1); while(fgets(line, MAX_READ_POPEN, fp)!=NULL) strcat(buffy, line); fclose(fp); g_free(cmd); free(line); utf8 = g_locale_to_utf8(buffy, strlen(buffy), NULL, NULL, NULL); free(buffy); if( utf8!=NULL ) { gtk_text_buffer_set_text(text_buffer, utf8, strlen(utf8)); g_free(utf8); } } gadmin-bind-0.2.5/src/Makefile.in0000644000000000000000000005744311350705232015234 0ustar rootroot# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # Inc. # This Makefile.in 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. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ sbin_PROGRAMS = gadmin-bind$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(sbindir)" PROGRAMS = $(sbin_PROGRAMS) am_gadmin_bind_OBJECTS = widgets.$(OBJEXT) gadmin-bind.$(OBJEXT) \ create_main_window.$(OBJEXT) create_domain_tab.$(OBJEXT) \ populate_domain_treeview.$(OBJEXT) \ domain_treeview_row_clicked.$(OBJEXT) add_domain.$(OBJEXT) \ delete_domain.$(OBJEXT) delete_domain_from_btn.$(OBJEXT) \ populate_resource_treeview.$(OBJEXT) \ resource_treeview_row_clicked.$(OBJEXT) \ resource_combo_changed.$(OBJEXT) add_resource.$(OBJEXT) \ delete_resource.$(OBJEXT) delete_resource_from_btn.$(OBJEXT) \ domain_settings_window.$(OBJEXT) \ domain_settings_type_combo_changed.$(OBJEXT) \ settings_window.$(OBJEXT) credits_window.$(OBJEXT) \ activate_button_clicked.$(OBJEXT) \ dialog_if_files_missing.$(OBJEXT) functions.$(OBJEXT) \ ip_handling.$(OBJEXT) reverse_address.$(OBJEXT) \ commented.$(OBJEXT) add_standard_user.$(OBJEXT) \ add_configuration_dialog.$(OBJEXT) add_configuration.$(OBJEXT) \ add_configuration_canceled.$(OBJEXT) clear_log_tab.$(OBJEXT) \ create_log_tab.$(OBJEXT) create_verify_tab.$(OBJEXT) \ run_verify_cmd.$(OBJEXT) create_root_servers_tab.$(OBJEXT) \ create_resolvers_tab.$(OBJEXT) populate_resolvers.$(OBJEXT) \ save_resolvers.$(OBJEXT) populate_root_servers_tab.$(OBJEXT) \ update_root_servers.$(OBJEXT) save_root_servers.$(OBJEXT) \ select_first_domain.$(OBJEXT) select_first_resource.$(OBJEXT) \ deactivate_button_clicked.$(OBJEXT) populate_log_tab.$(OBJEXT) \ reread_button_clicked.$(OBJEXT) reread_conf.$(OBJEXT) \ set_version.$(OBJEXT) show_help.$(OBJEXT) show_info.$(OBJEXT) \ status_update.$(OBJEXT) new_rndc_key.$(OBJEXT) \ load_settings.$(OBJEXT) save_settings.$(OBJEXT) \ locate_icons.$(OBJEXT) commands.$(OBJEXT) \ rndc_reload.$(OBJEXT) allocate.$(OBJEXT) \ chars_are_digits.$(OBJEXT) make_settings_entries.$(OBJEXT) \ make_settings_combos.$(OBJEXT) make_settings_buttons.$(OBJEXT) gadmin_bind_OBJECTS = $(am_gadmin_bind_OBJECTS) gadmin_bind_DEPENDENCIES = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(gadmin_bind_SOURCES) DIST_SOURCES = $(gadmin_bind_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LOCALSTATEDIR = @LOCALSTATEDIR@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SBINDIR = @SBINDIR@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SYSCONFDIR = @SYSCONFDIR@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ INCLUDES = \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ @PACKAGE_CFLAGS@ gadmin_bind_SOURCES = \ widgets.c widgets.h \ gadmin-bind.c gadmin-bind.h \ create_main_window.c create_main_window.h \ create_domain_tab.c create_domain_tab.h \ populate_domain_treeview.c populate_domain_treeview.h \ domain_treeview_row_clicked.c domain_treeview_row_clicked.h \ add_domain.c add_domain.h \ delete_domain.c delete_domain.h \ delete_domain_from_btn.c delete_domain_from_btn.h \ populate_resource_treeview.c populate_resource_treeview.h \ resource_treeview_row_clicked.c resource_treeview_row_clicked.h \ resource_combo_changed.c resource_combo_changed.h \ add_resource.c add_resource.h \ delete_resource.c delete_resource.h \ delete_resource_from_btn.c delete_resource_from_btn.h \ domain_settings_window.c domain_settings_window.h \ domain_settings_type_combo_changed.c domain_settings_type_combo_changed.h \ settings_window.c settings_window.h \ credits_window.c credits_window.h \ activate_button_clicked.c activate_button_clicked.h \ dialog_if_files_missing.c dialog_if_files_missing.h \ functions.c functions.h \ ip_handling.c ip_handling.h \ reverse_address.c reverse_address.h \ commented.c commented.h \ add_standard_user.c add_standard_user.h \ add_configuration_dialog.c add_configuration_dialog.h \ add_configuration.c add_configuration.h \ add_configuration_canceled.c add_configuration_canceled.h \ clear_log_tab.c clear_log_tab.h \ create_log_tab.c create_log_tab.h \ create_verify_tab.c create_verify_tab.h \ run_verify_cmd.c run_verify_cmd.h \ create_root_servers_tab.c create_root_servers_tab.h \ create_resolvers_tab.c create_resolvers_tab.h \ populate_resolvers.c populate_resolvers.h \ save_resolvers.c save_resolvers.h \ populate_root_servers_tab.c populate_root_servers_tab.h \ update_root_servers.c update_root_servers.h \ save_root_servers.c save_root_servers.h \ select_first_domain.c select_first_domain.h \ select_first_resource.c select_first_resource.h \ deactivate_button_clicked.c deactivate_button_clicked.h \ populate_log_tab.c populate_log_tab.h \ reread_button_clicked.c reread_button_clicked.h \ reread_conf.c reread_conf.h \ set_version.c set_version.h \ show_help.c show_help.h \ show_info.c show_info.h \ status_update.c status_update.h \ new_rndc_key.c new_rndc_key.h \ load_settings.c load_settings.h \ save_settings.c save_settings.h \ locate_icons.c locate_icons.h \ commands.c commands.h \ rndc_reload.c rndc_reload.h \ allocate.c allocate.h \ chars_are_digits.c chars_are_digits.h \ make_settings_entries.c make_settings_entries.h \ make_settings_combos.c make_settings_combos.h \ make_settings_buttons.c make_settings_buttons.h gadmin_bind_LDADD = @PACKAGE_LIBS@ all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-sbinPROGRAMS: $(sbin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)" @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \ } \ ; done uninstall-sbinPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(sbindir)" && rm -f $$files clean-sbinPROGRAMS: -test -z "$(sbin_PROGRAMS)" || rm -f $(sbin_PROGRAMS) gadmin-bind$(EXEEXT): $(gadmin_bind_OBJECTS) $(gadmin_bind_DEPENDENCIES) @rm -f gadmin-bind$(EXEEXT) $(LINK) $(gadmin_bind_OBJECTS) $(gadmin_bind_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/activate_button_clicked.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_configuration.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_configuration_canceled.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_configuration_dialog.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_domain.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_resource.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_standard_user.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/allocate.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chars_are_digits.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clear_log_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/commands.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/commented.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/create_domain_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/create_log_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/create_main_window.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/create_resolvers_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/create_root_servers_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/create_verify_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/credits_window.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/deactivate_button_clicked.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/delete_domain.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/delete_domain_from_btn.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/delete_resource.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/delete_resource_from_btn.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dialog_if_files_missing.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/domain_settings_type_combo_changed.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/domain_settings_window.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/domain_treeview_row_clicked.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/functions.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gadmin-bind.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ip_handling.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/load_settings.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/locate_icons.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/make_settings_buttons.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/make_settings_combos.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/make_settings_entries.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/new_rndc_key.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/populate_domain_treeview.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/populate_log_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/populate_resolvers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/populate_resource_treeview.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/populate_root_servers_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reread_button_clicked.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reread_conf.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/resource_combo_changed.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/resource_treeview_row_clicked.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_address.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rndc_reload.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/run_verify_cmd.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/save_resolvers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/save_root_servers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/save_settings.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/select_first_domain.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/select_first_resource.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/set_version.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/settings_window.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/show_help.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/show_info.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/status_update.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/update_root_servers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/widgets.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(sbindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-sbinPROGRAMS mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-sbinPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-sbinPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-sbinPROGRAMS ctags distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-sbinPROGRAMS install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ uninstall-am uninstall-sbinPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gadmin-bind-0.2.5/src/domain_settings_window.c0000644000000000000000000013323311350705526020107 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include "allocate.h" #include "gettext.h" #include "widgets.h" #include "show_info.h" #include "commands.h" #include "make_settings_entries.h" #include "make_settings_combos.h" #include "populate_domain_treeview.h" #include "populate_resource_treeview.h" #include "populate_log_tab.h" #include "reread_conf.h" #include "domain_settings_type_combo_changed.h" #include "domain_settings_window.h" #define MAX_CONF_LINE 1000 extern char SYSLOG_PATH_BUF[1024]; extern char CHROOT_PATH_BUF[1024]; extern char global_domain_name[1024]; extern char global_domain_ipv4_address[1024]; extern char global_domain_ipv6_address[1024]; extern char global_domain_type[1024]; gchar * make_soa_header(const gchar *a, gchar *b, gchar *c, gchar *d, gchar *e, gchar *f, gchar *g, gchar *h) { /* Constructs a SOA header like this... */ /* $TTL 3D; @ IN SOA example.org. hostmaster.example.org. ( 2008021201 ; Serial 8H ; Refresh 2H ; Retry 1W ; Expire 1D ) ; Min TTL */ gchar *header = g_strconcat( "$TTL ", a, ";\n", "@\tIN\tSOA\t", b, ".\t", c, ". (\n", "\t\t\t", d, "\t; Serial\n", "\t\t\t", e, "\t\t; Refresh\n", "\t\t\t", f, "\t\t; Retry\n", "\t\t\t", g, "\t\t; Expire\n", "\t\t\t", h, " )\t\t; Min TTL\n", NULL); return header; } void change_soa_header_in_file(gchar *soa_header, gchar *zone_file) { FILE *fp; long file_size; int have_soa_end = 0; char *line, *new_zone; gchar *info; if((fp=fopen(zone_file, "r"))==NULL) { info = g_strdup_printf(_("Error: Could not change SOA header in zone file:\n%s\n"), zone_file); show_info(info); g_free(info); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, ")") ) { have_soa_end = 1; break; } } /* No valid soa header found, add it at the top of the file */ if( ! have_soa_end ) { rewind(fp); } /* This will contain our SOA header and the rest of the zone data */ new_zone = allocate(file_size+1024); strcat(new_zone, soa_header); /* Collect all lines starting after the soa header */ if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { strcat(new_zone, line); } fclose(fp); free(line); /* Write the new zone */ if((fp=fopen(zone_file, "w+"))==NULL) { info = g_strdup_printf(_("Error: Could not change SOA header in zone file:\n%s\n"), zone_file); show_info(info); g_free(info); free(new_zone); return; } fputs(new_zone, fp); fclose(fp); free(new_zone); } void show_domain_settings_window(struct w *widgets) { FILE *fp; long file_size; GtkWidget *domain_settings_vbox; GtkWidget *scrolled_window; GtkWidget *frame; GtkWidget *table; GtkTooltips *tooltips; gchar *utf8=NULL; gchar *info, *fwd_zone_path, *domain_line, *named_conf; int a=0, b=1; char *line, *tmp; int i, domain_found = 0; int soa_found = 0; tooltips = gtk_tooltips_new(); widgets->domain_settings_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_position(GTK_WINDOW (widgets->domain_settings_window), GTK_WIN_POS_CENTER); gtk_widget_set_size_request(widgets->domain_settings_window, -1, -1); /* Set window information */ info = g_strdup_printf(_("GADMIN-BIND %s domain settings"), VERSION); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_window_set_title(GTK_WINDOW(widgets->domain_settings_window), utf8); g_free(info); g_signal_connect(GTK_WINDOW(widgets->domain_settings_window), "delete_event", G_CALLBACK (gtk_widget_destroy), NULL); /* Add a vbox to the window */ domain_settings_vbox = gtk_vbox_new(FALSE, 0); gtk_container_add(GTK_CONTAINER(widgets->domain_settings_window), domain_settings_vbox); /* Add a scrolled window to the vbox */ scrolled_window = gtk_scrolled_window_new(NULL, NULL); gtk_box_pack_start(GTK_BOX(domain_settings_vbox), scrolled_window, TRUE, TRUE, 0); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); /* Set a larger vertical size */ gtk_widget_set_size_request(scrolled_window, -1, 400); /* Add a frame with a table to the scrolled window */ info = g_strdup_printf(_("Domain settings:")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); g_free(info); frame = gtk_frame_new(utf8); /* A table with 19 settings and 2 columns */ table = gtk_table_new(19, 2, FALSE); /* Add a table to the frame */ gtk_container_add(GTK_CONTAINER(frame), table); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), frame); /* Domain name */ info = g_strdup_printf(_(" Domain name: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[0] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); utf8 = g_locale_to_utf8(global_domain_name, strlen(global_domain_name), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[0]), utf8); info = g_strdup_printf(_("If you change domain name and hit apply the entire domain will be transformed.")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[0], utf8, NULL); g_free(info); a++; b++; /* IPv4 Network address */ info = g_strdup_printf(_(" IPv4 network address: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[1] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); utf8 = g_locale_to_utf8(global_domain_ipv4_address, strlen(global_domain_ipv4_address), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[1]), utf8); info = g_strdup_printf(_("192.168.0 or 192.168.0.1-254")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[1], utf8, NULL); g_free(info); a++; b++; /* IPv6 Network address */ info = g_strdup_printf(_(" IPv6 network address: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[2] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); utf8 = g_locale_to_utf8(global_domain_ipv6_address, strlen(global_domain_ipv6_address), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[2]), utf8); info = g_strdup_printf(_("fe80::250:daff:fe4d:e6c7/64")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[2], utf8, NULL); g_free(info); a++; b++; /* Domain type combo */ info = g_strdup_printf(_(" Domain type: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_combo[0] = make_combo_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("master")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->domain_settings_combo[0]), utf8); g_free(info); info = g_strdup_printf(_("slave")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->domain_settings_combo[0]), utf8); g_free(info); a++; b++; if( strstr(global_domain_type, "master") ) gtk_combo_box_set_active(GTK_COMBO_BOX(widgets->domain_settings_combo[0]), 0); if( strstr(global_domain_type, "slave") ) gtk_combo_box_set_active(GTK_COMBO_BOX(widgets->domain_settings_combo[0]), 1); /* Different widgets are visible depending on whats selected in the type combo */ g_signal_connect_swapped(G_OBJECT(widgets->domain_settings_combo[0]), "changed", G_CALLBACK(domain_settings_type_combo_changed), widgets); /* Administrator email */ info = g_strdup_printf(_(" Administrator email: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[3] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("hostmaster@example.org")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[3], utf8, NULL); g_free(info); a++; b++; /* Domain serial */ info = g_strdup_printf(_(" Domain serial: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[4] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Year+Month+Day+2-digit serial, IE: 2008021204")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[4], utf8, NULL); g_free(info); a++; b++; /* Default TTL */ info = g_strdup_printf(_(" Default TTL: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[5] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Default time to live, IE: 3D (for 3 days)")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[5], utf8, NULL); g_free(info); a++; b++; /* Refresh */ info = g_strdup_printf(_(" Refresh: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[6] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Refresh interval, IE: 8H (for 8 hours)")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[6], utf8, NULL); g_free(info); a++; b++; /* Retry */ info = g_strdup_printf(_(" Retry: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[7] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Retry interval, IE: 2H (for 2 hours)")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[7], utf8, NULL); g_free(info); a++; b++; /* Expire */ info = g_strdup_printf(_(" Expire: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[8] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Expire, IE: 4W (for 4 weeks after not beeing able to update)")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[8], utf8, NULL); g_free(info); a++; b++; /* Min TTL */ info = g_strdup_printf(_(" Minimum TTL: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[9] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Minimum TTL, IE: 1D (for 1 day)")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[9], utf8, NULL); g_free(info); a++; b++; /* allow-update */ info = g_strdup_printf(_(" Allow update: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[10] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Hosts allowed to submit dynamic DNS updates (DDNS) delimited with a \";\" IE: 127.0.0.1; 192.168.0.0/24; any; or none;")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[10], utf8, NULL); g_free(info); a++; b++; /* allow-transfer */ info = g_strdup_printf(_(" Allow transfer: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[11] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Hosts that are allowed to make zone transfers (copy the entire zone) delimited with a \";\" IE: 127.0.0.1; 192.168.0.0/24; any; or none;")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[11], utf8, NULL); g_free(info); a++; b++; /* allow-query */ info = g_strdup_printf(_(" Allow query: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[12] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Hosts allowed to query this DNS, delimited with a \";\" IE: 127.0.0.1; 192.168.0.0/24; any; or none;")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[12], utf8, NULL); g_free(info); a++; b++; /* Notify combo */ info = g_strdup_printf(_(" Send notifications: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_combo[2] = make_combo_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("yes")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->domain_settings_combo[2]), utf8); g_free(info); info = g_strdup_printf(_("no")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->domain_settings_combo[2]), utf8); g_free(info); info = g_strdup_printf(_("explicit")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->domain_settings_combo[2]), utf8); g_free(info); a++; b++; /* Also-notify (for masters only) */ info = g_strdup_printf(_(" Also notify: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[13] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Servers that should recieve zone update notifications delimited with a \";\" IE: 127.0.0.1; 192.168.0.100;")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[13], utf8, NULL); g_free(info); a++; b++; /* Allow-notify (for slaves only) */ info = g_strdup_printf(_(" Allow notify: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[14] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("Servers allowed to notify this server for zone updates delimited with a \";\" IE: 127.0.0.1; 192.168.0.100; any; or none;")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[14], utf8, NULL); g_free(info); a++; b++; /* Statistics combo */ info = g_strdup_printf(_(" Domain statistics: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_combo[1] = make_combo_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("yes")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->domain_settings_combo[1]), utf8); g_free(info); info = g_strdup_printf(_("no")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->domain_settings_combo[1]), utf8); g_free(info); a++; b++; /* Masters (Only for slave domains) */ info = g_strdup_printf(_(" Master domains: ")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); widgets->domain_settings_entry[15] = make_entry_with_label(GTK_TABLE(table), utf8, 0,1,a,b,350); g_free(info); info = g_strdup_printf(_("IP-addresses of the master domains delimited with a \";\" IE: 127.0.0.1; 192.168.0.100; none;")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->domain_settings_entry[15], utf8, NULL); g_free(info); a++; b++; if( utf8!=NULL ) g_free(utf8); /* Populations begin... */ /* Insert SOA data from the selected domains forward zone */ fwd_zone_path = g_strdup_printf("%s/etc/sites/%s/forward.zone", CHROOT_PATH_BUF, global_domain_name); if((fp=fopen(fwd_zone_path, "r"))==NULL) { info = g_strdup_printf(_("Error: could not find the domains forward zone here:\n%s\n"), fwd_zone_path); show_info(info); g_free(info); g_free(fwd_zone_path); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); tmp = allocate(1024); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "#") || strlen(line) > 1000 ) continue; /* Get default TTL */ if( strstr(line, "$TTL") ) { sscanf(line, "%*s %s", tmp); /* Compensate for semicolon */ if( strstr(tmp, ";") ) utf8 = g_locale_to_utf8(tmp, strlen(tmp)-1, NULL, NULL, NULL); else utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[5]), utf8); } /* Administrator email */ if( strstr(line, "SOA") ) { soa_found = 1; /* Admin Email */ sscanf(line, "%*s %*s %*s %*s %s", tmp); /* -1 for the ending dot */ utf8 = g_locale_to_utf8(tmp, strlen(tmp)-1, NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[3]), utf8); /* Domain Serial */ while(fgets(line, file_size, fp)!=NULL) if( strlen(line) < 1000 && strlen(line) > 1 ) break; sscanf(line, "%s", tmp); utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[4]), utf8); /* Refresh */ while(fgets(line, file_size, fp)!=NULL) if( strlen(line) < 1000 && strlen(line) > 1 ) break; sscanf(line, "%s", tmp); utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[6]), utf8); /* Retry */ while(fgets(line, file_size, fp)!=NULL) if( strlen(line) < 1000 && strlen(line) > 1 ) break; sscanf(line, "%s", tmp); utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[7]), utf8); /* Expire */ while(fgets(line, file_size, fp)!=NULL) if( strlen(line) < 1000 && strlen(line) > 1 ) break; sscanf(line, "%s", tmp); utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[8]), utf8); /* Min TTL */ while(fgets(line, file_size, fp)!=NULL) if( strlen(line) < 1000 && strlen(line) > 1 ) break; sscanf(line, "%s", tmp); utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[9]), utf8); } if( soa_found ) break; } free(line); free(tmp); fclose(fp); /* Insert all other values from this chroots named.conf */ named_conf = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); if((fp=fopen(named_conf, "r"))==NULL) { info = g_strdup_printf(_("Error: could not open named.conf here:\n%s\n"), named_conf); show_info(info); g_free(info); g_free(named_conf); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); tmp = allocate(1024); domain_line = g_strdup_printf("zone \"%s\" IN", global_domain_name); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "#") ) continue; if( strstr(line, domain_line) ) { domain_found = 1; while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "#") ) continue; /* Stop when the correct zone has been read */ if( strstr(line, "zone \"") && domain_found ) break; if( strstr(line, "allow-update") && strstr(line, "{") ) { for(i=0; i<1000; i++) if( line[i]=='{' ) break; snprintf(tmp, 1000, "%s", &line[i+2]); tmp[strlen(tmp)-4]='\0'; utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[10]), utf8); } if( strstr(line, "allow-transfer") && strstr(line, "{") ) { for(i=0; i<1000; i++) if( line[i]=='{' ) break; snprintf(tmp, 1000, "%s", &line[i+2]); tmp[strlen(tmp)-4]='\0'; utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[11]), utf8); } if( strstr(line, "allow-query") && strstr(line, "{") ) { for(i=0; i<1000; i++) if( line[i]=='{' ) break; snprintf(tmp, 1000, "%s", &line[i+2]); tmp[strlen(tmp)-4]='\0'; utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[12]), utf8); } if( strstr(line, "also-notify") && strstr(line, "{") ) { for(i=0; i<1000; i++) if( line[i]=='{' ) break; snprintf(tmp, 1000, "%s", &line[i+2]); tmp[strlen(tmp)-4]='\0'; if( strlen(tmp) > 5 ) { utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[13]), utf8); } } if( strstr(line, "allow-notify") && strstr(line, "{") ) { for(i=0; i<1000; i++) if( line[i]=='{' ) break; snprintf(tmp, 1000, "%s", &line[i+2]); tmp[strlen(tmp)-4]='\0'; if( strlen(tmp) > 3 ) { utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[14]), utf8); } } if( strstr(line, "masters") && strstr(line, "{") ) { for(i=0; i<1000; i++) if( line[i]=='{' ) break; snprintf(tmp, 1000, "%s", &line[i+2]); tmp[strlen(tmp)-4]='\0'; utf8 = g_locale_to_utf8(tmp, strlen(tmp), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->domain_settings_entry[15]), utf8); } if( strstr(line, "zone-statistics") && strstr(line, ";") ) { snprintf(tmp, 1000, "%s", &line[16]); tmp[strlen(tmp)-2]='\0'; if( strstr(tmp, "yes") ) gtk_combo_box_set_active(GTK_COMBO_BOX(widgets->domain_settings_combo[1]), 0); else if( strstr(tmp, "no") ) gtk_combo_box_set_active(GTK_COMBO_BOX(widgets->domain_settings_combo[1]), 1); } if( strstr(line, "notify") && ! strstr(line, "also-notify") && ! strstr(line, "allow-notify") && strstr(line, ";") ) { snprintf(tmp, 1000, "%s", &line[8]); tmp[strlen(tmp)-2]='\0'; if( strstr(tmp, "yes") ) gtk_combo_box_set_active(GTK_COMBO_BOX(widgets->domain_settings_combo[2]), 0); else if( strstr(tmp, "no") ) gtk_combo_box_set_active(GTK_COMBO_BOX(widgets->domain_settings_combo[2]), 1); else if( strstr(tmp, "explicit") ) gtk_combo_box_set_active(GTK_COMBO_BOX(widgets->domain_settings_combo[2]), 2); } } if( domain_found ) break; } } fclose(fp); free(line); free(tmp); g_free(named_conf); if( utf8!=NULL ) g_free(utf8); GtkWidget *domain_settings_hbuttonbox = gtk_hbutton_box_new(); gtk_box_pack_start(GTK_BOX(domain_settings_vbox), domain_settings_hbuttonbox, FALSE, FALSE, 0); gtk_button_box_set_layout(GTK_BUTTON_BOX(domain_settings_hbuttonbox), GTK_BUTTONBOX_SPREAD); GtkWidget *apply_domain_settings_button = gtk_button_new_from_stock(GTK_STOCK_APPLY); gtk_container_add(GTK_CONTAINER(domain_settings_hbuttonbox), apply_domain_settings_button); g_signal_connect_swapped(G_OBJECT(apply_domain_settings_button), "clicked", G_CALLBACK(apply_domain_settings_button_clicked), widgets); GtkWidget *cancel_domain_settings_button = gtk_button_new_from_stock(GTK_STOCK_CANCEL); gtk_container_add(GTK_CONTAINER(domain_settings_hbuttonbox), cancel_domain_settings_button); g_signal_connect_swapped(G_OBJECT(cancel_domain_settings_button), "clicked", G_CALLBACK(cancel_domain_settings_button_clicked), widgets); gtk_widget_show_all(widgets->domain_settings_window); /* Domain type determines what entries are visible */ domain_settings_type_combo_changed(widgets); } void cancel_domain_settings_button_clicked(struct w *widgets) { gtk_widget_destroy(widgets->domain_settings_window); } /* FIXME: Uses sed... */ void apply_domain_settings_button_clicked(struct w *widgets) { /* The apply button in the domain settings window */ FILE *fp; long file_size, type_pos=0; int new_domain_name=0, domain_type_slave=0; char *line, *new_conf, *tmp; gint active_index = 0; gchar *cmd, *info, *named_conf, *utf8=NULL; char *forward, *reverse_file; int found_rew_zone = 0; int found_fwd_zone = 0; G_CONST_RETURN gchar *domain_name = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[0])); /* FIXME: All matching A, AAAA and PTR records must be changed (if used) */ // G_CONST_RETURN gchar *ipv4_network_address = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[1])); // G_CONST_RETURN gchar *ipv6_network_address = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[2])); G_CONST_RETURN gchar *admin_email = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[3])); G_CONST_RETURN gchar *domain_serial = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[4])); G_CONST_RETURN gchar *def_ttl = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[5])); G_CONST_RETURN gchar *refresh = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[6])); G_CONST_RETURN gchar *retry = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[7])); G_CONST_RETURN gchar *expire = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[8])); G_CONST_RETURN gchar *min_ttl = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[9])); G_CONST_RETURN gchar *allow_update = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[10])); G_CONST_RETURN gchar *allow_transfer = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[11])); G_CONST_RETURN gchar *allow_query = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[12])); G_CONST_RETURN gchar *also_notify = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[13])); G_CONST_RETURN gchar *allow_notify = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[14])); G_CONST_RETURN gchar *masters = gtk_entry_get_text(GTK_ENTRY(widgets->domain_settings_entry[15])); /* Setup the zone paths */ gchar *fwd_zone_path = g_strdup_printf("%s/etc/sites/%s/forward.zone", CHROOT_PATH_BUF, global_domain_name); gchar *rev_ipv4_zone_path = g_strdup_printf("%s/etc/sites/%s/reverse.zone.ipv4", CHROOT_PATH_BUF, global_domain_name); gchar *rev_ipv6_zone_path = g_strdup_printf("%s/etc/sites/%s/reverse.zone.ipv6", CHROOT_PATH_BUF, global_domain_name); /* Update SOA headers in all zone files for the selected domain */ gchar *soa_header = make_soa_header((gchar *)def_ttl, (gchar *)domain_name, (gchar *)admin_email, (gchar *)domain_serial, (gchar *)refresh, (gchar *)retry, (gchar *)expire, (gchar *)min_ttl); change_soa_header_in_file(soa_header, fwd_zone_path); if( file_exists(rev_ipv4_zone_path) ) change_soa_header_in_file(soa_header, rev_ipv4_zone_path); if( file_exists(rev_ipv6_zone_path) ) change_soa_header_in_file(soa_header, rev_ipv6_zone_path); g_free(soa_header); named_conf = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); /* Check that we have a complete domain with all required files */ if( ! file_exists(named_conf) ) { info = g_strdup_printf(_("Error: named.conf does not exist here:\n%s\n"), named_conf); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); show_info(info); g_free(info); if( utf8!=NULL ) g_free(utf8); g_free(fwd_zone_path); g_free(rev_ipv4_zone_path); g_free(rev_ipv6_zone_path); g_free(named_conf); return; } if( ! file_exists(fwd_zone_path) ) { info = g_strdup_printf(_("Error: Forward zone does not exist here:\n%s\n"), fwd_zone_path); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); show_info(info); g_free(info); if( utf8!=NULL ) g_free(utf8); g_free(fwd_zone_path); g_free(rev_ipv4_zone_path); g_free(rev_ipv6_zone_path); g_free(named_conf); return; } /* Atleast one of the 2 reverse zones (IPv4/IPv6) are required */ if( ! file_exists(rev_ipv4_zone_path) && ! file_exists(rev_ipv6_zone_path) ) { info = g_strdup_printf(_("Error: No reverse zones not found.\n")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); show_info(info); g_free(info); if( utf8!=NULL ) g_free(utf8); g_free(fwd_zone_path); g_free(rev_ipv4_zone_path); g_free(rev_ipv6_zone_path); g_free(named_conf); return; } /* DNS type (combo) */ gchar *domain_type = NULL; /* DNS statistics (combo) */ gchar *domain_statistics = NULL; /* DNS Notify (combo) */ gchar *domain_notify = NULL; /* DNS Type */ active_index = gtk_combo_box_get_active(GTK_COMBO_BOX(widgets->domain_settings_combo[0])); if( active_index <= 0 ) domain_type = g_strdup_printf("master"); else if( active_index == 1 ) domain_type = g_strdup_printf("slave"); else { info = g_strdup_printf(_("DNS Type not set, no changes made.\n")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); show_info(info); g_free(info); if( utf8!=NULL ) g_free(utf8); g_free(fwd_zone_path); g_free(rev_ipv4_zone_path); g_free(rev_ipv6_zone_path); g_free(named_conf); return; } /* DNS Statistics */ active_index = gtk_combo_box_get_active(GTK_COMBO_BOX(widgets->domain_settings_combo[1])); if( active_index <= 0 ) domain_statistics = g_strdup_printf("yes"); else if( active_index == 1 ) domain_statistics = g_strdup_printf("no"); else { domain_statistics = g_strdup_printf("yes"); info = g_strdup_printf(_("DNS statistics not set, setting it to yes\n")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); show_info(info); g_free(info); if( utf8!=NULL ) g_free(utf8); /* Dont return. */ } /* DNS Notify */ active_index = gtk_combo_box_get_active(GTK_COMBO_BOX(widgets->domain_settings_combo[2])); if( active_index <= 0 ) domain_notify = g_strdup_printf("yes"); else if( active_index == 1 ) domain_notify = g_strdup_printf("no"); else if( active_index == 2 ) domain_notify = g_strdup_printf("explicit"); else { domain_notify = g_strdup_printf("no"); info = g_strdup_printf(_("DNS notification not set, setting it to no.\n")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); show_info(info); g_free(info); if( utf8!=NULL ) g_free(utf8); /* Dont return. */ } /* Some configuration values cant be used in slave mode */ if( strstr(domain_type, "slave") ) domain_type_slave = 1; else domain_type_slave = 0; /* If slave domain is selected it must have atleast one master domain server */ if( domain_type_slave && strlen(masters) < 3 ) { info = g_strdup_printf(_("Error: Slave domains requires atleast one master domain server.\n")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); show_info(info); g_free(info); if( utf8!=NULL ) g_free(utf8); g_free(fwd_zone_path); g_free(rev_ipv4_zone_path); g_free(rev_ipv6_zone_path); g_free(domain_type); g_free(domain_statistics); g_free(named_conf); return; } /* Sanity check in teh pirkinning */ /* Domain names differ, set this domain name as the selected domain */ if( strcmp(global_domain_name, domain_name) ) { new_domain_name = 1; } /* Use sed to change the domain name in the forward zone */ if( new_domain_name && file_exists(fwd_zone_path) ) { /* sed -e s/drum.se/bbb.se/g CHROOT/etc/sites/forward.zone > CHROOT/etc/sites/forward.zone.tmp */ cmd = g_strdup_printf("%s -e s/%s/%s/g %s > %s.tmp", SED_BINARY, global_domain_name, domain_name, fwd_zone_path, fwd_zone_path); if( ! run_command(cmd) ) { printf("Error running command:\n%s\n", cmd); } g_free(cmd); /* mv CHROOT/etc/sites/SITENAME/forward.zone.tmp CHROOT/etc/sites/SITENAME/forward.zone */ cmd = g_strdup_printf("mv %s.tmp %s", fwd_zone_path, fwd_zone_path); if( ! run_command(cmd) ) { printf("Error running command:\n%s\n", cmd); } g_free(cmd); } /* Use sed to change the domain name in the reverse IPv4 zone */ if( new_domain_name && file_exists(rev_ipv4_zone_path) ) { /* sed -e s/drum.se/bbb.se/g filepath > filepath.tmp */ cmd = g_strdup_printf("%s -e s/%s/%s/g %s > %s.tmp", SED_BINARY, global_domain_name, domain_name, rev_ipv4_zone_path, rev_ipv4_zone_path); if( ! run_command(cmd) ) { printf("Error running command:\n%s\n", cmd); } g_free(cmd); /* mv /path/to/zonefile.tmp path/to/zonefile */ cmd = g_strdup_printf("mv %s.tmp %s", rev_ipv4_zone_path, rev_ipv4_zone_path); if( ! run_command(cmd) ) { printf("Error running command:\n%s\n", cmd); } g_free(cmd); } /* Use sed to change the domain name in the reverse IPv6 zone */ if( new_domain_name && file_exists(rev_ipv6_zone_path) ) { /* sed -e s/drum.se/bbb.se/g filepath > filepath.tmp */ cmd = g_strdup_printf("%s -e s/%s/%s/g %s > %s.tmp", SED_BINARY, global_domain_name, domain_name, rev_ipv6_zone_path, rev_ipv6_zone_path); if( ! run_command(cmd) ) { printf("Error running command:\n%s\n", cmd); } g_free(cmd); /* mv /path/to/zonefile.tmp path/to/zonefile */ cmd = g_strdup_printf("mv %s.tmp %s", rev_ipv6_zone_path, rev_ipv6_zone_path); if( ! run_command(cmd) ) { printf("Error running command:\n%s\n", cmd); } g_free(cmd); } g_free(fwd_zone_path); g_free(rev_ipv4_zone_path); g_free(rev_ipv6_zone_path); /* Rename this domains directory */ /* mv CHROOT/etc/sites/Domain.org CHROOT/etc/sites/NewDomain.org */ if( new_domain_name ) { cmd = g_strdup_printf("mv %s/etc/sites/%s %s/etc/sites/%s", CHROOT_PATH_BUF, global_domain_name, CHROOT_PATH_BUF, domain_name); if( ! run_command(cmd) ) { printf("Error running command:\n%s\n", cmd); if( utf8!=NULL ) g_free(utf8); g_free(domain_statistics); g_free(domain_type); g_free(named_conf); return; } g_free(cmd); } /* Change this domains options in named.conf */ if((fp=fopen(named_conf, "r"))==NULL) { /* Sanity checked in teh pirkinning */ printf("Couldnt find:\n%s\n", named_conf); if( utf8!=NULL ) g_free(utf8); g_free(domain_statistics); g_free(domain_type); g_free(named_conf); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); forward = allocate(MAX_CONF_LINE+1); reverse_file = allocate(MAX_CONF_LINE+1); tmp = allocate(MAX_CONF_LINE+1); new_conf = allocate(file_size+16384); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > MAX_CONF_LINE-3 ) continue; /* Skip comments */ if( strstr(line, "/*") ) { while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "*/") ) break; } } /* Skip comments */ if( strstr(line, "//") ) continue; /* Forward zone begin */ if( strstr(line, "zone \"") && strstr(line, global_domain_name) && ! found_fwd_zone ) { found_fwd_zone = 1; strcat(new_conf, line); /* For matching against the reverse zone file */ sscanf(line, "%*s %s", forward); snprintf(tmp, MAX_CONF_LINE-1, "%s", &forward[1]); snprintf(forward, strlen(tmp), "%s", tmp); tmp[strlen(tmp)-1]='\0'; snprintf(reverse_file, strlen(tmp)+3, "/%s/", tmp); /* Handle the options */ while(fgets(line, file_size, fp)!=NULL) { /* Remove allow-update line */ if( strstr(line, "allow-update") && strstr(line, "{") ) continue; /* Remove masters line */ if( strstr(line, "masters") && strstr(line, "{") ) continue; /* Remove allow-notify line */ if( strstr(line, "allow-notify") && strstr(line, "{") ) continue; /* The allow-transfer line must exist, also handles other options */ if( strstr(line, "type ") && strstr(line, ";") ) { snprintf(tmp, 1000, "\ttype %s;\n", domain_type); strcat(new_conf, tmp); } else if( strstr(line, "allow-transfer") && strstr(line, "{") ) { snprintf(tmp, 1000, "\tallow-transfer { %s };\n", allow_transfer); strcat(new_conf, tmp); /* If the domain type is master, we can have allow-update */ if( ! domain_type_slave ) { snprintf(tmp, 1000, "\tallow-update { %s };\n", allow_update); strcat(new_conf, tmp); } if( domain_type_slave ) { snprintf(tmp, 1000, "\tmasters { %s };\n", masters); strcat(new_conf, tmp); if( strlen(allow_notify) > 3 ) { snprintf(tmp, 1000, "\tallow-notify { %s };\n", allow_notify); strcat(new_conf, tmp); } } } else if( strstr(line, "allow-query") && strstr(line, "{") ) { snprintf(tmp, 1000, "\tallow-query { %s };\n", allow_query); strcat(new_conf, tmp); } else if( strstr(line, "zone-statistics") && strstr(line, ";") ) { snprintf(tmp, 1000, "\tzone-statistics %s;\n", domain_statistics); strcat(new_conf, tmp); } else if( strstr(line, "notify") && ! strstr(line, "also-notify") && ! strstr(line, "allow-notify") && strstr(line, ";") ) { snprintf(tmp, 1000, "\tnotify %s;\n", domain_notify); strcat(new_conf, tmp); } else if( strstr(line, "also-notify") && strstr(line, ";") ) { snprintf(tmp, 1000, "\talso-notify { %s };\n", also_notify); strcat(new_conf, tmp); } else strcat(new_conf, line); if( strstr(line, "zone \"") && ! strstr(line, "forward.zone") ) break; } } else strcat(new_conf, line); /* Reverse zone begin (the first zone after the fwd one) */ if( strstr(line, "zone ") && found_fwd_zone && ! found_rew_zone && strstr(line, "in-addr.arpa") ) { /* Dont handle root.hints or the local zone */ if( ! strcmp(forward, ".") || ! strcmp(forward, "0.0.127") ) { strcat(new_conf, line); continue; } while(fgets(line, file_size, fp)!=NULL) if( strstr(line, "type ") && strstr(line, ";") ) { /* Store position of the "type" line */ type_pos = ftell(fp); } else /* The correct reverse zone has been found */ if( strstr(line, reverse_file) && strlen(line) < MAX_CONF_LINE-3 ) { /* We have found the correct reverse zone's "file" line */ found_rew_zone = 1; /* Scroll back to the stored "type" position */ fseek(fp, type_pos, SEEK_SET); snprintf(tmp, 1000, "\ttype %s;\n", domain_type); strcat(new_conf, tmp); /* Skip comments */ if( strstr(line, "/*") ) { while(fgets(line, file_size, fp)!=NULL) { strcat(new_conf, line); if( strstr(line, "*/") ) break; } } /* Skip comments */ if( strstr(line, "//") ) continue; /* Handle the options */ while(fgets(line, file_size, fp)!=NULL) { /* Remove any allow-update lines */ if( strstr(line, "allow-update") && strstr(line, "{") ) continue; /* Remove any masters lines */ if( strstr(line, "masters") && strstr(line, "{") ) continue; /* Remove any allow-update lines */ if( strstr(line, "allow-notify") && strstr(line, "{") ) continue; /* The allow-transfer line must exist, also handles other options */ if( strstr(line, "allow-transfer") && strstr(line, "{") ) { snprintf(tmp, 1000, "\tallow-transfer { %s };\n", allow_transfer); strcat(new_conf, tmp); /* If the domain type is master, we can have allow-update */ if( ! domain_type_slave ) { snprintf(tmp, 1000, "\tallow-update { %s };\n", allow_update); strcat(new_conf, tmp); } if( domain_type_slave ) { snprintf(tmp, 1000, "\tmasters { %s };\n", masters); strcat(new_conf, tmp); if( strlen(allow_notify) > 3 ) { snprintf(tmp, 1000, "\tallow-notify { %s };\n", allow_notify); strcat(new_conf, tmp); } } } else if( strstr(line, "allow-query") && strstr(line, "{") ) { snprintf(tmp, 1000, "\tallow-query { %s };\n", allow_query); strcat(new_conf, tmp); } else if( strstr(line, "zone-statistics") && strstr(line, ";") ) { snprintf(tmp, 1000, "\tzone-statistics %s;\n", domain_statistics); strcat(new_conf, tmp); } else if( strstr(line, "notify") && ! strstr(line, "also-notify") && ! strstr(line, "allow-notify") && strstr(line, ";") ) { snprintf(tmp, 1000, "\tnotify %s;\n", domain_notify); strcat(new_conf, tmp); } else if( strstr(line, "also-notify") && strstr(line, ";") ) { snprintf(tmp, 1000, "\talso-notify { %s };\n", also_notify); strcat(new_conf, tmp); } else strcat(new_conf, line); if( strstr(line, "zone \"") && ! strstr(line, "zone-statistics") ) break; } break; } else strcat(new_conf, line); } } fclose(fp); free(line); free(forward); free(reverse_file); free(tmp); // FIXME: change named.conf reverse IPv6 zone options too /* Write the new named.conf */ if((fp=fopen(named_conf, "w+"))==NULL) { info = g_strdup_printf(_("Error: Cannot write named.conf here:\n%s\n"), named_conf); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); show_info(info); g_free(info); if( utf8!=NULL ) g_free(utf8); g_free(domain_statistics); g_free(domain_type); g_free(named_conf); return; } fputs(new_conf, fp); fclose(fp); free(new_conf); /* Domain name changed. Use sed to change domain name in named.conf */ if( new_domain_name ) { /* sed -e s/drum.se/bbb.se/g filepath > filepath.tmp */ cmd = g_strdup_printf("%s -e s/%s/%s/g %s > %s.tmp", SED_BINARY, global_domain_name, domain_name, named_conf, named_conf); if( ! run_command(cmd) ) { printf("Error running command:\n%s\n", cmd); if( utf8!=NULL ) g_free(utf8); g_free(domain_statistics); g_free(domain_type); g_free(named_conf); return; } g_free(cmd); /* mv /path/to/named.conf.tmp path/to/named.conf */ cmd = g_strdup_printf("mv %s.tmp %s", named_conf, named_conf); if( ! run_command(cmd) ) { printf("Error running command:\n%s\n", cmd); if( utf8!=NULL ) g_free(utf8); g_free(domain_statistics); g_free(domain_type); g_free(named_conf); return; } g_free(cmd); } /* Show some info */ if( strcmp(global_domain_type, domain_type) ) { if( strstr(domain_type, "master") ) printf("Domain type changed to master.\n"); if( strstr(domain_type, "slave") ) printf("Domain type changed to slave.\n"); if( domain_type_slave ) info = g_strdup_printf(_("Domain type changed to slave.\n")); else info = g_strdup_printf(_("Domain type changed to master.\n")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); show_info(info); g_free(info); } if( utf8!=NULL ) g_free(utf8); g_free(domain_statistics); g_free(domain_type); g_free(named_conf); /* Repopulate the gui */ populate_domain_treeview(widgets); populate_resource_treeview(widgets); populate_log_tab(widgets); gtk_widget_destroy(widgets->domain_settings_window); } gadmin-bind-0.2.5/src/domain_treeview_row_clicked.h0000644000000000000000000000207611350705002021051 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef domain_treeview_row_clicked_H # define domain_treeview_row_clicked_H extern struct w *widgets; void domain_treeview_row_clicked(GtkTreeView *treeview, GdkEventButton *event, gpointer data); #endif gadmin-bind-0.2.5/src/domain_settings_type_combo_changed.c0000644000000000000000000000365011350705002022375 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include "widgets.h" #include "gettext.h" #include "domain_settings_type_combo_changed.h" void domain_settings_type_combo_changed(struct w *widgets) { gint active_index = 0; active_index = gtk_combo_box_get_active(GTK_COMBO_BOX(widgets->domain_settings_combo[0])); /* Domain type master selected */ if( active_index <= 0 ) { /* Allow-update widget is visible */ gtk_widget_show(widgets->domain_settings_entry[10]); /* Allow-notify widget is not visible */ gtk_widget_hide(widgets->domain_settings_entry[14]); /* Master servers widget is not visible */ gtk_widget_hide(widgets->domain_settings_entry[15]); } /* Domain type slave selected */ if( active_index == 1 ) { /* Allow-update widget is not visible */ gtk_widget_hide(widgets->domain_settings_entry[10]); /* Allow-notify widget is visible */ gtk_widget_show(widgets->domain_settings_entry[14]); /* Master servers widget is visible */ gtk_widget_show(widgets->domain_settings_entry[15]); } } gadmin-bind-0.2.5/src/domain_settings_type_combo_changed.h0000644000000000000000000000204111350705002022373 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef domain_settings_type_combo_changed_H # define domain_settings_type_combo_changed_H extern struct w *widgets; void domain_settings_type_combo_changed(struct w *widgets); #endif gadmin-bind-0.2.5/src/ip_handling.c0000644000000000000000000004265411350705002015600 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef and * Jean-Jacques Sarton * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ /************************************************************************* * * Handling of IP addresses * * Content: * check_ip() check if the given IPv[46] is in a valid format * build_reverse_ip() build the reverse ip according to arguments * reverse_to_forward() construct the (partial) ip for the given * reverse ip address *.in-addr.arpa or *.ip6.arpa * ************************************************************************* */ #include #include #include #include #include #include "ip_handling.h" #ifndef BUF_SIZE # define BUF_SIZE 1024 #endif #define IPV6_SIZE 40 /* (4+1)*8) */ #define REV_SIZE 73 /* ((128/4)*2) + 8 + 1 */ extern char *build_reverse_ip(char *addr, int mask, int start, int end); extern int check_ip(char *ip, int range); extern char *reverse_to_forward(char *ip); /************************************************* * * Function zone_from_range() * * input: char *range ef 1.2.3.0/24 * * Return: NULL on error, reverse zone name if OK * ************************************************/ char *zone_from_range(char *range) { int start = 0; int end = 0; int bits = 0; if ( set_range(range, &start, &end, &bits) == 1 ) { return build_reverse_ip(range, -bits, start, end); } return NULL; } /************************************************* * * Function expandIPv6() * * input: char *ipi the IPv4 or IPv6 Address * * Output: char *ipo pointer to a buffer with a size * of at least IPV6_SIZE bytes * * Return: 0 on error, 1 if all is OK ************************************************/ static int expandIPv6(char *ipi, char *ipo) { char *s, *n, *p; unsigned int a[8] = { -1,-1,-1,-1,-1,-1,-1,-1}; int seg = 0; long v; int i = 0; int hasIPv4 = strchr(ipi, '.')?1:0; memset(ipo, 0, IPV6_SIZE); if ( ipi == NULL ) return 0; if ( !isxdigit(*ipi) ) { if ( *ipi != ':' ) { return 0; } } s = ipi; seg = 0; do { if ( *s == ':' ) { s++; break; } v = strtol(s, &n, 16); if ( n && *n == '.' ) break; else a[seg++] = v; if ( n && *n == ':') n++; s = n; if ( s && *s == ':' ) break; } while ( seg < 8 ); if ( seg < 8 ) { if ( s && *s == ':' ) { /* a lot of 0 */ s++; i = 0; n = p = s; while ( (n = strchr(p, ':')) ) { n++; p = n; i++; } if ( p && isxdigit(*p) && ! hasIPv4 ) { i++; } } /* fill fields with 0 */ while ( seg < 8 - i - hasIPv4?2:0) { a[seg++] = 0; } while ( seg < 8 - hasIPv4?2:0 ) { a[seg++] = strtol(s, &n, 16); if ( n && *n == ':' ) s = n+1; else break; } } /* ipv6 with ipv4 part at the end */ s = strchr(ipi, '.'); if ( s ) { int x1, x2, x3, x4; while ( s > ipi && *s != ':') s--; if ( sscanf(s, ":%d.%d.%d.%d", &x1,&x2,&x3,&x4) != 4 ) { return 0; } a[6] = x1 << 8 |x2; a[7] = x3 << 8 |x4; } /* end check */ for (i=0; i < 8; i++ ) { if ( a[i] < 0 || a[i] > 0xffff ) return 0; } /* all is OK */ sprintf(ipo, "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x", a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7]); return 1; } /************************************************* * * Function check_ip() * * input: char *ip the IPv4 or IPv6 Address * to check * * int range if set don'ckeck the last * ipv4 address part * * Return: 0 on error, Version 5/6 for valid IP ************************************************/ int check_ip(char *ip, int range) { char ipv6[IPV6_SIZE]; int ver = 0; if ( strchr(ip, ':') ) { /* IPv6 */ /* allowed chars 0-9, 1-f ':' and possibly at the end * IPv4 like */ ver = 6; if ( !expandIPv6(ip, ipv6) ) { return 0; } } else { /* iPv4 Check */ int a,b,c,d; a = b = c = 0; d = 1; ver = 4; if ( !range && sscanf(ip, "%d.%d.%d.%d", &a,&b,&c,&d) != 4 ) { return 0; } else if ( range && sscanf(ip, "%d.%d.%d", &a,&b,&c) < 1 ) { return 0; } if ( a > 255 || a < 1 ) return 0; if ( b > 255 || b < 0 ) return 0; if ( c > 255 || c < 0 ) return 0; if ( d > 255 || d < 1 ) return 0; /* we nust have 3 dots check that */ d = 0; if ( !range ) { while(*ip) { if ( *ip == '.' ) d++; ip++; } if ( d != 3 ) ver = 0; } } return ver; /* a valid IP */ } /************************************************* * * Function buildRevAddr() * * Input: char *ip the IPv4 or IPv6 Address * to print out * Output char *rev pointer to buffer of length * REV_SIZE * * Return: - * ************************************************/ static void buildRevAddr(char *ip, char *rev) { int a,b,c,d; char ipv6[IPV6_SIZE]; a=b=c=d=0; if ( strchr(ip, ':' ) == NULL ) { sscanf(ip, "%d.%d.%d.%d", &a,&b,&c,&d); sprintf(rev, "%d.%d.%d.%d.in-addr.arpa",d,c,b,a); } else { expandIPv6(ip, ipv6); for(a=IPV6_SIZE-2, b=0; a >=0; a-- ) { if ( ipv6[a] != ':' ) { rev[b++] = ipv6[a]; rev[b++] = '.'; rev[b] = '\0'; } } strcat(rev,"ip6.arpa"); } } /************************************************* * * Function build_reverse_ip() * * Input: char *addr the IPv4 or IPv6 Address * which is to be transformed * * int mask for building the zone name/ * entry part of the address * if < 0 generate zone name * if > 0 gerenare entry * if 0 generate full reverse * IP * * int start \ If both are non 0 generate * int end / a reverse zone name for range * * * Return: allocated char buffer to be freed by * caller * ************************************************/ char *build_reverse_ip(char *addr, int mask, int start, int end) { char *s; int pos; char rev[REV_SIZE]; char obuf[REV_SIZE]; /* build full reverse entry */ buildRevAddr(addr, rev); *obuf = '\0'; if ( mask == 0 ) { return strdup(rev); } else if ( strstr(rev, "ip6" ) == NULL ) { pos = mask / 8; if ( pos < 0 ) pos = -pos; s = rev; while( pos < 4 ) { if ( *s == '.') { pos++; } s++; } if ( mask < 0 ) { if ( start && end ) { if ( start > end || start < 1 || start > 254 || end > 2554 ) { return NULL; } snprintf(obuf,REV_SIZE ,"%d-%d.%s",start,end, s); } else { snprintf(obuf,REV_SIZE ,"%s",s); } } else { s--; *s = '\0'; snprintf(obuf,REV_SIZE, "%s",rev); *s = '.'; } } else /* IPv6 Address */ { if ( mask > 0 ) { pos = (mask / 2) - 1; } else { pos = (-mask / 2) - 1; } if ( mask < 0 ) { snprintf(obuf,REV_SIZE,"%s",rev+pos+1); } else { rev[pos] = '\0'; snprintf(obuf,REV_SIZE,"%s",rev); rev[pos] = '.'; } } if ( *obuf ) { return strdup(obuf); } else { return NULL; } } /************************************************* * * Function reverseToForward() * * input: char *rip reverse zone address * * Output: char *ip pointer to a buffer with a size * of a least IPV6_SIZE bytes * * Return: 0 on error, 1 if all is OK ************************************************/ static int reverseToForward(char *rip, char *ip) { char *s; char *t = ip; long val; unsigned int part[9] = { 0,0,0,0, 0,0,0,0 }; int colons; int cnt; int first = -1; int second = -1; if ( (s = strstr(rip, ".ip6.arpa")) ) { s--; cnt = 0; val = 0; colons = 0; /* preliminary checks */ if ( strlen(rip) > 72 ) { return 0; } /* read all values */ while (s >= rip ) { if ( isxdigit(*s) ) { if ( isdigit(*s) ) { val = (val << 4) + (*s - '0' ); } else if ( *s >= 'A' && *s <= 'F' ) { val = (val << 4) + (*s - 'A' + 10 ); } else { val = (val << 4) + (*s - 'a' + 10 ); } } if ( *s == '.' || s == rip ) { cnt++; if ( s > rip && s[-1] == '.' ) { /* ".." -> error */ return 0; } if ( cnt == 4 ) { part[colons] = val; colons++; if ( colons > 8 ) { return 0; } val = 0; cnt = 0; } } /* unallowed characters -> error */ if ( ! (isxdigit(*s) || *s == '.') ) { return 0; } s--; } /* look for the longest count of consecutive 0 */ colons = 0; val = 0; first = -1; second = -1; for ( val = 0; val < 8; ) { if ( part[val] == 0 ) { first = val; cnt=1; val++; for ( ; val < 8; ) { if ( part[val] == 0 ) { cnt++; } if ( cnt > colons ) { colons = cnt; } if ( part[val] ) { val++; break; } val++; } break; } else { if ( first > -1 ) { val++; break; } } val++; } /* if there is a second area of 0, this take precedence */ for ( cnt=0; val < 8; ) { if ( part[val] == 0 ) { if ( second == -1 ) { second = val; cnt=1; val++; for ( ; val < 8; ) { if ( part[val] == 0 ) { cnt++; } if ( cnt >= colons ) { colons = cnt; if ( second ) { first = second; } } if ( part[val] ) break; val++; } break; } } else if ( second > 0 ) { break; } val++; } /* print out */ if ( first == 0) { *t++ = ':'; if ( colons == 8 ) { *t++ = ':'; *t++ = '\0'; } for ( val = colons; val < 8; val++ ) { sprintf(t, ":%x",part[val]); t += strlen(t); } } else if ( first > 0 ) { sprintf(t, "%x",part[0]); t += strlen(t); if ( 1 + colons == 8 ) *t++ = ':'; for ( val = 1; val < first; val++ ) { sprintf(t, ":%x",part[val]); t += strlen(t); } *t++=':'; if ( first + colons == 8 ) *t++ = ':'; for ( val += colons ; val < 8; val++ ) { sprintf(t, ":%x",part[val]); t += strlen(t); } } else { sprintf(t, "%x",part[0]); t += strlen(t); for ( val = 1; val < 8; val++ ) { sprintf(t, ":%x",part[val]); t += strlen(t); } } *t = '\0'; return 1; } else if ( (s = strstr(rip, ".in-addr.arpa")) ) { val = 0; cnt = 1; colons = 0; s--; if ( *s == '.' ) return 0; while ( s >= rip ) { if ( isdigit(*s) ) { val += (*s - '0') * cnt; cnt *= 10; } if ( *s == '.' || s == rip ) { if ( val > 255 || val < 0 ) { return 0; } else { if ( t != ip ) { *t++ = '.'; colons++; if ( colons > 3 ) return 0; } sprintf(t,"%d",(int)val); t += strlen(t); val = 0; cnt = 1; } if ( s > rip && s[-1] == '.' ) return 0; } s--; } return 1; } return 0; } /************************************************* * * Function set_range() * * input: char *ipr iprange eg 10.1.1.1-254 * or 192.168 * or 192.168/16 * or 2001:2:3:4/64 * * output: int *start start of range if appl. * int *end end of range if appl. * * int *bits bit mask if applicable * * Return: 1 if OK -1 on error else 0 ( not range * syntax) ************************************************/ int set_range(char *ipr, int *start, int *end, int *bits) { char *s; int cnt; int val; if ( (s = strchr(ipr, '/')) ) { *bits = atoi(s+1); if ( strstr(ipr, ":") ) { s -=2; if ( s < ipr ) return -1; if ( *s++ != ':' ) return -1; if ( *s != ':' ) return -1; if ( *bits & 15 || *bits < 16 || *bits > 112 ) return -1; return 1; } else { if (*bits < 8 || *bits > 24 ) return -1; s = ipr; cnt = 1; do { s = strchr(s, '.'); if ( s ) { cnt++; s++; } } while(s && *s != '/'); if ( cnt != 4 ) return -1; return 1; } } else if ( (s = strchr(ipr, '-')) ) { if ( strchr(ipr, ':') ) return -1; *end = atoi(s+1); if ( *end > 254 || *end < 1) return -1; while ( s > ipr && *s != '.' ) s--; if ( s == ipr ) return -1; *start = atoi(s+1); if ( *start >= *end || *start > 254 || *start < 1) return .1; s = ipr; cnt = 0; do { s = strchr(s, '.'); if ( s ) { cnt++; s++; } } while(s); if ( cnt != 3 ) return -1; *bits = 24; return 1; } else { if ( strchr(ipr, ':') ) return -1; cnt = 32; s = ipr; do { val = strtol(s, &s, 10); if ( cnt == 32 && (val < 1 || val > 254) ) return -1; else if ( val < 0 || val > 255 ) return -1; cnt -= 8; if ( *s == '.' ) s++; else if ( *s ) return -1; } while(*s); if ( cnt < 0 ) return -1; *bits = cnt; if ( cnt ) return 1; } return 0; } /************************************************* * * Function reverse_to_forward() * * input: char *ip reverse zone address * * Return:allocated buffer with content or NULL ************************************************/ char *reverse_to_forward(char *ip) { char rev[REV_SIZE]; if ( reverseToForward(ip, rev) ) return strdup(rev); else return NULL; } gadmin-bind-0.2.5/src/activate_button_clicked.h0000644000000000000000000000200111350705002020160 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef activate_button_clicked_H # define activate_button_clicked_H extern struct w *widgets; void activate_button_clicked(struct w *widgets); #endif gadmin-bind-0.2.5/src/save_resolvers.c0000644000000000000000000000337611350705003016365 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include #include "widgets.h" #include "gettext.h" #include "show_info.h" extern char RESOLV_PATH_BUF[1024]; void save_resolvers(struct w *widgets) { /* Save the resolvers. */ FILE *fp; GtkTextBuffer *resolvers_textbuffer; GtkTextIter start, end; gchar *info = NULL; gchar *conf = NULL; if((fp=fopen(RESOLV_PATH_BUF, "w+"))==NULL) { info = g_strdup_printf(_("Error: can not write resolv.conf here: %s\n"), RESOLV_PATH_BUF); show_info(info); g_free(info); return; } resolvers_textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(widgets->resolvers_textview)); gtk_text_buffer_get_bounds(resolvers_textbuffer, &start, &end); conf = gtk_text_iter_get_text(&start, &end); fputs(conf, fp); fclose(fp); if( conf!=NULL ) g_free(conf); } gadmin-bind-0.2.5/src/show_info.c0000644000000000000000000000745511350705003015320 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" extern int info_window_exit_main; void info_set_exit(gchar *content) { /* 2 means break the non-root wait loop in main() */ info_window_exit_main = 2; } void show_info(gchar *content) { gchar *utf8=NULL; GtkTextBuffer *text_buffer; gchar *info; GtkWidget *info_window, *info_vbox, *info_textview; GtkWidget *info_viewport, *scrolled_info_window; if( content == NULL ) { printf("show_info recieved null content\n"); return; } if( strlen(content) < 5 ) { printf("show_info recieved < 5 chars of content\n"); return; } info_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_widget_set_size_request(info_window, 630, 350); gtk_window_set_position(GTK_WINDOW (info_window), GTK_WIN_POS_CENTER); /* Set window information */ info = g_strdup_printf(_("GAdmin-BIND %s information"), VERSION); gtk_window_set_title(GTK_WINDOW(info_window), info); g_free(info); info_vbox = gtk_vbox_new(FALSE, 0); gtk_container_add (GTK_CONTAINER (info_window), info_vbox); /* Put a scrolled window in the vbox */ scrolled_info_window = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start(GTK_BOX(info_vbox), scrolled_info_window, TRUE, TRUE, 0); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_info_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); info_viewport = gtk_viewport_new(NULL, NULL); gtk_container_add(GTK_CONTAINER(scrolled_info_window), info_viewport); info_textview = gtk_text_view_new(); gtk_container_add(GTK_CONTAINER(info_viewport), info_textview); gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(info_textview), GTK_WRAP_WORD); GtkWidget *close_info_button = gtk_button_new_from_stock(GTK_STOCK_CLOSE); gtk_box_pack_start(GTK_BOX(info_vbox), close_info_button, FALSE, TRUE, 0); /* Used with main() and closing the non-root timer */ if( info_window_exit_main ) { g_signal_connect_swapped((gpointer) close_info_button, "clicked", G_CALLBACK(info_set_exit), info_window); g_signal_connect(GTK_WINDOW(info_window), "delete_event", GTK_SIGNAL_FUNC(info_set_exit), info_window); } /* Regular close info window hookups */ if( ! info_window_exit_main ) { g_signal_connect_swapped((gpointer) close_info_button, "clicked", G_CALLBACK(gtk_widget_destroy), GTK_OBJECT(info_window)); g_signal_connect(GTK_WINDOW(info_window), "delete_event", G_CALLBACK(gtk_widget_destroy), NULL); } text_buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(info_textview)); utf8 = g_locale_to_utf8(content, strlen(content), NULL, NULL, NULL); if( utf8!=NULL ) { gtk_text_buffer_set_text(text_buffer, utf8, strlen(utf8)); g_free(utf8); } gtk_widget_show_all(info_window); } gadmin-bind-0.2.5/src/load_settings.h0000644000000000000000000000174211350705002016161 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef load_settings_H # define load_settings_H extern struct w *widgets; void load_settings(struct w *widgets); #endif gadmin-bind-0.2.5/src/chars_are_digits.h0000644000000000000000000000170711350705002016615 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef chars_are_digits_H # define chars_are_digits_H int chars_are_digits(char *buf); #endif gadmin-bind-0.2.5/src/new_rndc_key.c0000644000000000000000000001604311350705002015764 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include "widgets.h" #include "gettext.h" #include "allocate.h" #include "show_info.h" #include "commands.h" #include "new_rndc_key.h" #define MAX_CONF_LINE 1000 extern int MAX_READ_POPEN; extern char CHROOT_PATH_BUF[1024]; void new_rndc_key(struct w *widgets) { FILE *fp; long file_size=0; char *line, *new_conf, *confgen_output, *key_line, *key; int i=0, key_found=0, key_changed=0; gchar *command, *info, *named_conf, *utf8=NULL; /* We use /dev/urandom because it contains alot of random data */ if( ! file_exists("/dev/urandom") ) { info = g_strdup_printf(_("The randomized file does not exist here: /dev/urandom\n")); show_info(info); g_free(info); return; } /* Read input from the rndc-confgen program, get the secret key */ command = g_strdup_printf("%s -b 512 -r /dev/urandom 2>&1", RNDC_CONFGEN_BINARY); if((fp=popen(command, "r"))==NULL) { info = g_strdup_printf(_("Updating rndc key with rndc-confgen failed with command:\n%s\n"), command); show_info(info); g_free(info); g_free(command); return; } g_free(command); line = allocate(MAX_READ_POPEN+1); confgen_output = allocate(MAX_READ_POPEN+1); key = allocate(1024); while(fgets(line, MAX_READ_POPEN, fp)!=NULL) { /* The output is saved and used later if theres no "secret" line in /etc/rndc.conf */ strcat(confgen_output, line); if( strstr(line, "secret \"") && strlen(line) < 1000 && ! key_found ) { /* Scroll to the first '"' */ for(i=0; line[i]!='\0'; i++) if( line[i]=='"' ) break; snprintf(key, 999, "%s", &line[i+1]); if( key!=NULL && strlen(key) > 5 ) key[strlen(key)-3]='\0'; key_found = 1; } } pclose(fp); free(line); if( ! key_found ) { info = g_strdup_printf(_("Error: New key not generated, rndc-confgen failed.\n")); show_info(info); g_free(info); free(confgen_output); free(key); return; } /* Insert the new key into named.conf */ named_conf = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); if((fp=fopen(named_conf, "r"))==NULL) { info = g_strdup_printf(_("Error: cannot open file:\n%s\n"), named_conf); show_info(info); g_free(info); g_free(named_conf); free(confgen_output); free(key); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); new_conf = allocate(file_size+16384); key_line = allocate(1024); snprintf(key_line, 1024, "\tsecret \"%s\";\n", key); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "secret") && strstr(line, "\"") && strstr(line, ";") && strlen(line) < 1000 && ! key_changed ) { strcat(new_conf, key_line); key_changed = 1; } else strcat(new_conf, line); } fclose(fp); free(line); /* Insert the new key into the key settings entry */ utf8 = g_locale_to_utf8(key, strlen(key), NULL, NULL, NULL); gtk_entry_set_text(GTK_ENTRY(widgets->settings_entry[3]), utf8); if( utf8!=NULL ) g_free(utf8); free(key); if( ! key_changed ) { info = g_strdup_printf(_("Error: could not find the secret key line in:\n%s\n"), named_conf); show_info(info); g_free(info); free(new_conf); free(key_line); free(confgen_output); g_free(named_conf); return; } /* Write the new named.conf */ if((fp=fopen(named_conf, "w+"))==NULL) { info = g_strdup_printf(_("Error: cannot write named.conf here:\n%s\n"), named_conf); show_info(info); g_free(info); free(new_conf); free(confgen_output); g_free(named_conf); return; } fputs(new_conf, fp); fclose(fp); free(new_conf); g_free(named_conf); key_changed = 0; /* Add RNDC_CONF if it doesnt exist and chmod it to 640 */ if( ! file_exists(RNDC_CONF) ) { command = g_strdup_printf("echo \"#Created by gadmin-bind\" > %s && chmod 640 %s", RNDC_CONF, RNDC_CONF); if((fp=popen(command, "r"))==NULL) { info = g_strdup_printf(_("Error running command: %s\n"), command); show_info(info); g_free(info); g_free(command); free(confgen_output); free(key_line); return; } pclose(fp); g_free(command); } /* Change the "secret" in /etc/rndc.conf if any */ if((fp=fopen(RNDC_CONF, "r"))==NULL) { info = g_strdup_printf(_("Error: cannot open file: %s\n"), RNDC_CONF); show_info(info); g_free(info); free(confgen_output); free(key_line); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); new_conf = allocate(file_size+16384); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "secret") && strstr(line, "\"") && strstr(line, ";") && strlen(line) < 1000 && ! key_changed ) { strcat(new_conf, key_line); key_changed = 1; } else strcat(new_conf, line); } fclose(fp); free(line); free(key_line); /* If the secret key hasnt changed because there was no "secret" line in /etc/rndc.conf we write a new /etc/rndc.conf */ if( ! key_changed ) snprintf(new_conf, 1000, "%s", confgen_output); free(confgen_output); /* Write the new rndc.conf */ if((fp=fopen(RNDC_CONF, "w+"))==NULL) { info = g_strdup_printf(_("Error: cannot write rndc.conf here: %s\n"), RNDC_CONF); show_info(info); g_free(info); free(new_conf); return; } fputs(new_conf, fp); fclose(fp); free(new_conf); /* The server needs to be restarted so that rndc can connect to it */ info = g_strdup_printf(_("\nKey generation and configuration updates successful.\nThe server needs to be restarted now so it updates its internal key.\nThis must be done so that rndc is allowed to connect and zones can be reloaded.\n")); show_info(info); g_free(info); } gadmin-bind-0.2.5/src/clear_log_tab.c0000644000000000000000000000427111350705002016072 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "allocate.h" #include "widgets.h" #include "gettext.h" #include "show_info.h" #include "populate_log_tab.h" extern char SYSLOG_PATH_BUF[1024]; void clear_log_tab(struct w *widgets) { FILE *fp; char *line, *new_syslog; long file_size = 0; gchar *info; /* Collect every line in syslog thats not referring to named */ if((fp=fopen(SYSLOG_PATH_BUF, "r"))==NULL) { info = g_strdup_printf(_("Couldnt open system log here: %s\n"), SYSLOG_PATH_BUF); show_info(info); g_free(info); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+16384); new_syslog = allocate(file_size+16384); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) if( ! strstr(line, "named") ) strcat(new_syslog, line); fclose(fp); /* Write the modified syslog */ if((fp=fopen(SYSLOG_PATH_BUF, "w+"))==NULL) { info = g_strdup_printf(_("Could not write system log here: %s\n"), SYSLOG_PATH_BUF); show_info(info); g_free(info); free(line); free(new_syslog); return; } fputs(new_syslog, fp); free(line); free(new_syslog); fclose(fp); populate_log_tab(widgets); } gadmin-bind-0.2.5/src/create_root_servers_tab.h0000644000000000000000000000177011350705002020230 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef create_root_servers_H # define create_root_servers_H extern struct w *widgets; void create_root_servers_tab(struct w *widgets); #endif gadmin-bind-0.2.5/src/populate_log_tab.h0000644000000000000000000000200111350705002016627 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_populate_log_tab_H # define GBINDADMIN_populate_log_tab_H extern struct w *widgets; void populate_log_tab(struct w *widgets); #endif gadmin-bind-0.2.5/src/dialog_if_files_missing.h0000644000000000000000000000200011350705002020136 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef dialog_if_files_missing_H # define dialog_if_files_missing_H extern struct w *widgets; void dialog_if_files_missing(struct w *widgets); #endif gadmin-bind-0.2.5/src/add_configuration_canceled.h0000644000000000000000000000201211350705002020606 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef add_configuration_canceled_H # define add_configuration_canceled_H extern struct w *widgets; void add_configuration_canceled(struct w *widgets); #endif gadmin-bind-0.2.5/src/allocate.c0000644000000000000000000000224111350705002015074 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include char * allocate(long allocate_size) { char *ret; ret = malloc(allocate_size); if( ret == NULL ) { printf("Cant allocate enough ram, exiting\n"); exit(1); } memset(ret, 0, allocate_size); return ret; } gadmin-bind-0.2.5/src/status_update.h0000644000000000000000000000201611350705003016203 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef status_update_H # define status_update_H extern struct w *widgets; char * get_process_pid(char process[1024]); int status_update(struct w *widgets); #endif gadmin-bind-0.2.5/src/widgets.c0000644000000000000000000000553611350705003014771 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include /* Used in the domain settings window */ #define NUM_DOMAIN_SETTINGS_ENTRIES 20 #define NUM_DOMAIN_SETTINGS_COMBOS 3 /* Used in the settings window */ #define NUM_SETTINGS_ENTRIES 10 #define NUM_SETTINGS_COMBOS 2 /* Not used much yet, same as above */ #define NUM_DOMAIN_SETTINGS 16 typedef struct w { GtkWidget *main_window; GtkWidget *main_vbox; GtkWidget *notebook_vbox1; GtkWidget *notebook_vbox2; GtkWidget *notebook_vbox3; GtkWidget *notebook_vbox4; GtkWidget *notebook_vbox5; GtkWidget *status_label; GtkWidget *version_label; GtkWidget *domain_treeview; GtkListStore *domain_store; GtkTreePath *domain_treepath; /* Add domain entries */ GtkWidget *add_domain_name_entry; // GtkWidget *add_domain_address_entry; GtkWidget *add_domain_ipv4_address_entry; GtkWidget *add_domain_ipv6_address_entry; GtkWidget *add_domain_type_combo; /* Domain resources (NS, A, AAAA, MX, PTR, CNAME) */ GtkWidget *resource_treeview; GtkListStore *resource_store; /* Add resource entries */ GtkWidget *add_resource_type_combo; GtkWidget *add_resource_hostname_entry; GtkWidget *add_resource_address_entry; /* Resource tooltips changes with the combo selections */ GtkTooltips *resource_hostname_tooltip; GtkTooltips *resource_address_tooltip; /* Domain settings window */ GtkWidget *domain_settings_window; GtkWidget *domain_settings_entry[NUM_DOMAIN_SETTINGS_ENTRIES]; GtkWidget *domain_settings_combo[NUM_DOMAIN_SETTINGS_COMBOS]; /* Settings window */ GtkWidget *settings_window; GtkWidget *settings_entry[NUM_SETTINGS_ENTRIES]; GtkWidget *settings_combo[NUM_SETTINGS_COMBOS]; /* Add new configuration window */ GtkWidget *add_configuration_window; /* Root servers tab (rs) */ GtkWidget *rs_textview; GtkWidget *credits_window; /* The resolvers tab */ GtkWidget *resolvers_textview; /* Syslog tab */ GtkWidget *log_textview; /* Verify tab */ GtkWidget *verify_textview; GtkWidget *verify_run_cmd_entry; }wid; gadmin-bind-0.2.5/src/add_configuration_dialog.h0000644000000000000000000000200311350705002020307 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef add_configuration_dialog_H # define add_configuration_dialog_H extern struct w *widgets; void add_configuration_dialog(struct w *widgets); #endif gadmin-bind-0.2.5/src/credits_window.h0000644000000000000000000000172311350705002016345 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef HAVE_credits_window_H #define HAVE_credits_window_H #include void show_credits(); #endif gadmin-bind-0.2.5/src/create_verify_tab.h0000644000000000000000000000175611350705002017004 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef create_verify_tab_H # define create_verify_tab_H extern struct w *widgets; void create_verify_tab(struct w *widgets); #endif gadmin-bind-0.2.5/src/delete_domain_from_btn.h0000644000000000000000000000177511350705002020007 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef delete_domain_from_btn_H # define delete_domain_from_btn_H extern struct w *widgets; void delete_domain_from_btn(struct w *widgets); #endif gadmin-bind-0.2.5/src/deactivate_button_clicked.h0000644000000000000000000000203411350705002020477 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_deactivate_button_clicked_H # define GBINDADMIN_deactivate_button_clicked_H extern struct w *widgets; void deactivate_button_clicked(struct w *widgets); #endif gadmin-bind-0.2.5/src/load_settings.c0000644000000000000000000000544011350705002016153 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include "widgets.h" #include "gettext.h" #include "commands.h" #include "allocate.h" #include "load_settings.h" extern char CHROOT_PATH_BUF[1024]; //extern char SITES_DIR[1024]; //extern char NAMED_CONF_BUF[1024]; extern char SYSLOG_PATH_BUF[1024]; extern char RESOLV_PATH_BUF[1024]; //extern char RNDC_CONF_BUF[1024]; void load_settings(struct w *widgets) { FILE *fp; long file_size; char *line; gchar *settings_file; /* For compat with the old gbindadmin */ gchar *old_settings_dir, *new_settings_dir, *cmd; /* SETTINGS_DIR is defined at compiletime */ settings_file = g_strdup_printf("%s/settings.conf", SETTINGS_DIR); /* Compat */ old_settings_dir = g_strdup_printf("/etc/gbindadmin"); new_settings_dir = g_strdup_printf("/etc/gadmin-bind"); if( file_exists(old_settings_dir) && ! file_exists(new_settings_dir) ) { cmd = g_strdup_printf("mv %s %s", old_settings_dir, new_settings_dir); if((fp=popen(cmd, "r"))==NULL) { } else pclose(fp); g_free(cmd); } g_free(old_settings_dir); g_free(new_settings_dir); /* Read the settings file */ if((fp=fopen(settings_file, "r"))==NULL) { /* No need to notify the user, itll be created on save */ g_free(settings_file); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strlen(line) > 1000 ) continue; if( strstr(line, "chroot_directory:") ) sscanf(line, "%*s %s", CHROOT_PATH_BUF); if( strstr(line, "syslog_file_path:") ) sscanf(line, "%*s %s", SYSLOG_PATH_BUF); if( strstr(line, "resolv_conf_path:") ) sscanf(line, "%*s %s", RESOLV_PATH_BUF); } fclose(fp); free(line); g_free(settings_file); } gadmin-bind-0.2.5/src/status_update.c0000644000000000000000000000712311350705003016202 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include "gettext.h" #include #include #include #include #include #include "allocate.h" #include "widgets.h" #include "chars_are_digits.h" #include "commands.h" #include "status_update.h" #include "show_info.h" extern int activated; extern int MAX_READ_POPEN; char * get_process_pid(char process[1024]) { FILE *fp; long num, file_size = 4000; char *line, *sub_proc_path, *pid; int x=0; struct dirent **namelist; pid = allocate(1024); strcpy(pid, "NONE"); sub_proc_path = allocate(1024); num = scandir(PROC_PATH, &namelist, 0, alphasort); if( num < 0 ) { perror("scandir"); return pid; } else { /* List all directories in PROC_PATH */ for(x=0; xd_name); if((fp=fopen(sub_proc_path, "r"))==NULL) { free(namelist[x]); continue; } line = allocate(file_size+1); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { /* If the following string is in this file its running */ if( strstr(line, process) ) { snprintf(pid, 1000, "%s", namelist[x]->d_name); break; } } fclose(fp); free(line); free(namelist[x]); } } free(namelist); free(sub_proc_path); return pid; } int status_update(struct w *widgets) { /* Activation status for named. */ gchar *info, *utf8=NULL; char *pid; GdkColor color; pid = get_process_pid("named"); /* First set activation status globally */ if( strstr(pid, "NONE") ) activated = 0; else activated = 1; /* If the daemon isnt running its deactivated */ if( ! activated ) { activated = 0; info = g_strdup_printf(_("Status: Deactivated")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_label_set_text(GTK_LABEL(widgets->status_label), utf8); g_free(info); free(pid); /* Set status color */ gdk_color_parse("red", &color); gtk_widget_modify_fg(widgets->status_label, GTK_STATE_NORMAL, &color); return(TRUE); } else { /* The daemon is running */ activated = 1; info = g_strdup_printf(_("Status: Activated")); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_label_set_text(GTK_LABEL(widgets->status_label), utf8); g_free(info); /* Set status color */ gdk_color_parse("dark green", &color); gtk_widget_modify_fg(widgets->status_label, GTK_STATE_NORMAL, &color); } free(pid); if( utf8!=NULL ) g_free(utf8); return(TRUE); } gadmin-bind-0.2.5/src/create_resolvers_tab.h0000644000000000000000000000176711350705002017526 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef create_resolvers_tab_H # define create_resolvers_tab_H extern struct w *widgets; void create_resolvers_tab(struct w *widgets); #endif gadmin-bind-0.2.5/src/locate_icons.h0000644000000000000000000000214511350705002015762 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef HAVE_locate_icons_H # define HAVE_locate_icons_H #include void add_pixmap_directory(const gchar *directory); GtkWidget* create_pixmap(GtkWidget *widget, const gchar *filename); GdkPixbuf* create_pixbuf(const gchar *filename); #endif gadmin-bind-0.2.5/src/select_first_domain.c0000644000000000000000000000505111350705003017330 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" extern char global_domain_name[1024]; extern char global_domain_ipv4_address[1024]; extern char global_domain_ipv6_address[1024]; extern char global_domain_type[1024]; void select_first_domain(struct w *widgets) { GtkTreePath *path; GtkTreeIter iter; GtkTreeModel *list_store; gchar *domain=NULL, *ipv4_address=NULL, *ipv6_address=NULL, *type=NULL; path = gtk_tree_path_new_first(); list_store = gtk_tree_view_get_model(GTK_TREE_VIEW(widgets->domain_treeview)); if( ! gtk_tree_model_get_iter(list_store, &iter, path) ) { if( path!=NULL ) gtk_tree_path_free(path); return; } gtk_tree_model_get(list_store, &iter, 0, &domain, -1); gtk_tree_model_get(list_store, &iter, 1, &ipv4_address, -1); gtk_tree_model_get(list_store, &iter, 2, &ipv6_address, -1); gtk_tree_model_get(list_store, &iter, 3, &type, -1); if( domain==NULL || (ipv4_address==NULL && ipv6_address==NULL) || type==NULL ) { if( path!=NULL ) gtk_tree_path_free(path); return; } sprintf(global_domain_name, "%s", (gchar *)domain?domain:"none"); sprintf(global_domain_ipv4_address, "%s", (gchar *)ipv4_address?ipv4_address:"none"); sprintf(global_domain_ipv6_address, "%s", (gchar *)ipv6_address?ipv6_address:"none"); sprintf(global_domain_type, "%s", (gchar *)type?type:"master"); if( domain!=NULL ) g_free(domain); if( ipv4_address!=NULL ) g_free(ipv4_address); if( ipv6_address!=NULL ) g_free(ipv6_address); if( type!=NULL ) g_free(type); if( path!=NULL ) gtk_tree_path_free(path); } gadmin-bind-0.2.5/src/select_first_resource.h0000644000000000000000000000202211350705003017710 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GADMIN_BIND_select_first_resource_H # define GADMIN_BIND_select_first_resource_H extern struct w *widgets; void select_first_resource(struct w *widgets); #endif gadmin-bind-0.2.5/src/Makefile.am0000644000000000000000000000553411350705002015210 0ustar rootroot## Process this file with automake to produce Makefile.in INCLUDES = \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ @PACKAGE_CFLAGS@ sbin_PROGRAMS = gadmin-bind gadmin_bind_SOURCES = \ widgets.c widgets.h \ gadmin-bind.c gadmin-bind.h \ create_main_window.c create_main_window.h \ create_domain_tab.c create_domain_tab.h \ populate_domain_treeview.c populate_domain_treeview.h \ domain_treeview_row_clicked.c domain_treeview_row_clicked.h \ add_domain.c add_domain.h \ delete_domain.c delete_domain.h \ delete_domain_from_btn.c delete_domain_from_btn.h \ populate_resource_treeview.c populate_resource_treeview.h \ resource_treeview_row_clicked.c resource_treeview_row_clicked.h \ resource_combo_changed.c resource_combo_changed.h \ add_resource.c add_resource.h \ delete_resource.c delete_resource.h \ delete_resource_from_btn.c delete_resource_from_btn.h \ domain_settings_window.c domain_settings_window.h \ domain_settings_type_combo_changed.c domain_settings_type_combo_changed.h \ settings_window.c settings_window.h \ credits_window.c credits_window.h \ activate_button_clicked.c activate_button_clicked.h \ dialog_if_files_missing.c dialog_if_files_missing.h \ functions.c functions.h \ ip_handling.c ip_handling.h \ reverse_address.c reverse_address.h \ commented.c commented.h \ add_standard_user.c add_standard_user.h \ add_configuration_dialog.c add_configuration_dialog.h \ add_configuration.c add_configuration.h \ add_configuration_canceled.c add_configuration_canceled.h \ clear_log_tab.c clear_log_tab.h \ create_log_tab.c create_log_tab.h \ create_verify_tab.c create_verify_tab.h \ run_verify_cmd.c run_verify_cmd.h \ create_root_servers_tab.c create_root_servers_tab.h \ create_resolvers_tab.c create_resolvers_tab.h \ populate_resolvers.c populate_resolvers.h \ save_resolvers.c save_resolvers.h \ populate_root_servers_tab.c populate_root_servers_tab.h \ update_root_servers.c update_root_servers.h \ save_root_servers.c save_root_servers.h \ select_first_domain.c select_first_domain.h \ select_first_resource.c select_first_resource.h \ deactivate_button_clicked.c deactivate_button_clicked.h \ populate_log_tab.c populate_log_tab.h \ reread_button_clicked.c reread_button_clicked.h \ reread_conf.c reread_conf.h \ set_version.c set_version.h \ show_help.c show_help.h \ show_info.c show_info.h \ status_update.c status_update.h \ new_rndc_key.c new_rndc_key.h \ load_settings.c load_settings.h \ save_settings.c save_settings.h \ locate_icons.c locate_icons.h \ commands.c commands.h \ rndc_reload.c rndc_reload.h \ allocate.c allocate.h \ chars_are_digits.c chars_are_digits.h \ make_settings_entries.c make_settings_entries.h \ make_settings_combos.c make_settings_combos.h \ make_settings_buttons.c make_settings_buttons.h gadmin_bind_LDADD = @PACKAGE_LIBS@ gadmin-bind-0.2.5/src/add_resource.c0000644000000000000000000002563111350705002015757 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include "widgets.h" #include "gettext.h" #include "show_info.h" #include "populate_resource_treeview.h" #include "reread_conf.h" #include "allocate.h" #include "commands.h" // Combine these 2 #include "reverse_address.h" // When this is GPL 3 #include "ip_handling.h" extern char CHROOT_PATH_BUF[1024]; extern char global_domain_name[1024]; extern char global_domain_ipv4_address[1024]; extern char global_domain_ipv6_address[1024]; extern char global_domain_type[1024]; int zone_data_exists(gchar *zone_file, gchar *match) { FILE *fp; long file_size = 0; char *line; int retval = 0; gchar *match_line; /* Remove '\n' in the end and beginning */ match_line = g_strdup_printf("%s", &match[1]); match_line[strlen(match_line)-1]='\0'; if((fp=fopen(zone_file, "r"))==NULL) { g_free(match_line); return retval; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) if( strstr(line, match_line) ) { retval = 1; } fclose(fp); free(line); g_free(match_line); return retval; } void add_resource(struct w *widgets) { FILE *fwd_fp, *rev_ipv4_fp=NULL, *rev_ipv6_fp=NULL; G_CONST_RETURN gchar *hostname, *forward_address; gchar *fwd_address=NULL; char *last_octets=NULL; gint active_index; gchar *record=NULL; gchar *forward_zone_file; gchar *reverse_ipv4_zone_file, *reverse_ipv6_zone_file; gchar *info; int i=0, added_ns_ptr = 0; int is_ipv4 = 0; int is_ipv6 = 0; active_index = gtk_combo_box_get_active(GTK_COMBO_BOX(widgets->add_resource_type_combo)); hostname = gtk_entry_get_text(GTK_ENTRY(widgets->add_resource_hostname_entry)); forward_address = gtk_entry_get_text(GTK_ENTRY(widgets->add_resource_address_entry)); fwd_address = g_strdup_printf("%s", forward_address); if( strlen(hostname) < 3 ) { info = g_strdup_printf(_("The hostname is too short, the resource was not added.\n")); show_info(info); g_free(info); if( fwd_address!=NULL ) g_free(fwd_address); return; } /* Sanitycheck MX record additions. (MX prio (address) is only 2 chars. */ if( active_index == 1 && ( strlen(fwd_address) < 2 || strlen(fwd_address) > 3 ) ) { info = g_strdup_printf(_("The mailservers priority is not correct, the resource was not added.\n")); show_info(info); g_free(info); if( fwd_address!=NULL ) g_free(fwd_address); return; } /* If its not an MX or CNAME record... */ if( ! active_index == 1 && ! active_index == 4 ) { /* We require a valid (forward) IPv4 or IPv6 address */ if( (! strstr(fwd_address, "." ) && ! strstr(fwd_address, ":")) || strlen(fwd_address) < 3 ) /* Can be "::1" */ { // Fixme: Not translated... info = g_strdup_printf(_("The IP-address is too short, the resource was not added.\n")); show_info(info); g_free(info); if( fwd_address!=NULL ) g_free(fwd_address); return; } } if( strstr(fwd_address, ":") ) is_ipv6 = 1; else is_ipv4 = 1; forward_zone_file = g_strdup_printf("%s/etc/sites/%s/forward.zone", CHROOT_PATH_BUF, global_domain_name); reverse_ipv4_zone_file = g_strdup_printf("%s/etc/sites/%s/reverse.zone.ipv4", CHROOT_PATH_BUF, global_domain_name); reverse_ipv6_zone_file = g_strdup_printf("%s/etc/sites/%s/reverse.zone.ipv6", CHROOT_PATH_BUF, global_domain_name); /* Open the forward zone for this site */ if((fwd_fp=fopen(forward_zone_file, "a"))==NULL) { info = g_strdup_printf(_("Resource not added. Could not find the forward zone here: %s\n"), forward_zone_file); show_info(info); g_free(info); g_free(forward_zone_file); g_free(reverse_ipv4_zone_file); if( fwd_address!=NULL ) g_free(fwd_address); return; } if( is_ipv4 ) { /* Open the reverse IPv4 zone file for this domain */ if((rev_ipv4_fp=fopen(reverse_ipv4_zone_file, "a"))==NULL) { info = g_strdup_printf(_("Resource not added. Could not find the reverse zone here: %s\n"), reverse_ipv4_zone_file); show_info(info); g_free(info); g_free(forward_zone_file); g_free(reverse_ipv4_zone_file); g_free(reverse_ipv6_zone_file); fclose(fwd_fp); if( fwd_address!=NULL ) g_free(fwd_address); return; } } if( is_ipv6 ) { /* Open the reverse IPv6 zone file for this domain */ if((rev_ipv6_fp=fopen(reverse_ipv6_zone_file, "a"))==NULL) { info = g_strdup_printf(_("Resource not added. Could not create the reverse ipv6 zone here: %s\n"), reverse_ipv6_zone_file); show_info(info); g_free(info); g_free(forward_zone_file); g_free(reverse_ipv4_zone_file); g_free(reverse_ipv6_zone_file); fclose(fwd_fp); if( fwd_address!=NULL ) g_free(fwd_address); return; } } /* Get the host part (last octets) for an address or NULL */ last_octets = get_ptr_addr_from_forward_address((gchar *)fwd_address); // printf("add resource: last octets: %s\n", last_octets); /* Sanitycheck the address (Not for MX or CNAME) */ if( ( ! active_index == 1 && ! active_index == 4 && last_octets == NULL ) && ( strstr(last_octets, ".ip6.arpa") || strlen(last_octets) < 1 ) ) { /* Forward address had no mask or was malformed */ info = g_strdup_printf(_("Resource not added. The IPv6 address is not valid.\n")); show_info(info); g_free(info); g_free(forward_zone_file); g_free(reverse_ipv4_zone_file); g_free(reverse_ipv6_zone_file); fclose(fwd_fp); if( is_ipv4 ) fclose(rev_ipv4_fp); if( is_ipv6 ) fclose(rev_ipv6_fp); if( fwd_address!=NULL ) g_free(fwd_address); return; } /* Snip the forward address at the first '/' */ if( fwd_address!=NULL && strstr(fwd_address, "/") ) { for(i=0; fwd_address[i]!='\0'; i++) if( fwd_address[i]=='/' ) fwd_address[i]='\0'; } /* Add the zone records as specified by the record type combo box */ /* Automatically add PTR records where possible */ if( active_index <= 0 ) { /* Add an NS record and an A or AAAA record to the forward zone and a PTR record in the reverse zone */ record = g_strdup_printf("\n\tIN\tNS\t%s.\n", hostname); if( ! zone_data_exists(forward_zone_file, record) ) fputs(record, fwd_fp); if( is_ipv4 ) { record = g_strdup_printf("\n%s.\tIN\tA\t%s\n", hostname, fwd_address); if( ! zone_data_exists(forward_zone_file, record) ) fputs(record, fwd_fp); } else { record = g_strdup_printf("\n%s.\tIN\tAAAA\t%s\n", hostname, fwd_address); if( ! zone_data_exists(forward_zone_file, record) ) fputs(record, fwd_fp); } if( is_ipv4 ) { record = g_strdup_printf("\n\tIN\tNS\t%s.\n", hostname); if( ! zone_data_exists(reverse_ipv4_zone_file, record) ) fputs(record, rev_ipv4_fp); } else { record = g_strdup_printf("\n\tIN\tNS\t%s.\n", hostname); if( ! zone_data_exists(reverse_ipv6_zone_file, record) ) fputs(record, rev_ipv6_fp); } if( is_ipv4 ) { record = g_strdup_printf("\n%s\tIN\tPTR\t%s.\n", last_octets, hostname); if( ! zone_data_exists(reverse_ipv4_zone_file, record) ) { fputs(record, rev_ipv4_fp); added_ns_ptr = 1; } } else { record = g_strdup_printf("\n%s\tIN\tPTR\t%s.\n", last_octets, hostname); if( ! zone_data_exists(reverse_ipv6_zone_file, record) ) { fputs(record, rev_ipv6_fp); added_ns_ptr = 1; } } if( added_ns_ptr ) { info = g_strconcat( _("An A or AAAA record was also added to the forward zone.\n"), _("A PTR record for this resource was added to the reverse zone.\n"), NULL); show_info(info); g_free(info); } } else if( active_index == 1 ) { /* Add an MX record in the forward zone (No PTR) */ record = g_strdup_printf("\n\tIN\tMX\t%s\t%s.\n", fwd_address, hostname); if( ! zone_data_exists(forward_zone_file, record) ) fputs(record, fwd_fp); info = g_strdup_printf(_("This MX record also requires an A or AAAA record.\n")); show_info(info); g_free(info); } else if( active_index == 2 ) { /* Add an IPv4 A record to the forward zone and a PTR in the reverse zone */ record = g_strdup_printf("\n%s.\tIN\tA\t%s\n", hostname, fwd_address); if( ! zone_data_exists(forward_zone_file, record) ) fputs(record, fwd_fp); record = g_strdup_printf("\n%s\tIN\tPTR\t%s.\n", last_octets, hostname); if( ! zone_data_exists(reverse_ipv4_zone_file, record) ) fputs(record, rev_ipv4_fp); // info = g_strdup_printf(_("A PTR record for this resource was also added to the reverse zone\n")); // show_info(info); // g_free(info); } else if( active_index == 3 ) { /* Add an IPv6 AAAA record to the forward zone and a PTR in the reverse zone */ record = g_strdup_printf("\n%s.\tIN\tAAAA\t%s\n", hostname, fwd_address); if( ! zone_data_exists(forward_zone_file, record) ) fputs(record, fwd_fp); record = g_strdup_printf("\n%s\tIN\tPTR\t%s.\n", last_octets, hostname); if( ! zone_data_exists(reverse_ipv6_zone_file, record) ) fputs(record, rev_ipv6_fp); // info = g_strdup_printf(_("A PTR record for this resource was also added to the reverse zone\n")); // show_info(info); // g_free(info); } else if( active_index == 4 ) { /* Add a CNAME record to the forward zone */ record = g_strdup_printf("\n%s.\tIN\tCNAME\t%s.\n", fwd_address, hostname); if( ! zone_data_exists(forward_zone_file, record) ) fputs(record, fwd_fp); } if( last_octets!=NULL ) free(last_octets); if( fwd_address!=NULL ) g_free(fwd_address); g_free(record); g_free(forward_zone_file); g_free(reverse_ipv4_zone_file); g_free(reverse_ipv6_zone_file); fclose(fwd_fp); if( is_ipv4 ) fclose(rev_ipv4_fp); if( is_ipv6 ) fclose(rev_ipv6_fp); populate_resource_treeview(widgets); } gadmin-bind-0.2.5/src/chars_are_digits.c0000644000000000000000000000243311350705002016605 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ int chars_are_digits(char *buf) { int i=0, match=0; for(i=0; buf[i]!='\0'; i++) { if( buf[i]=='\n' || buf[i]=='\r') { i--; break; } if( buf[i]=='0' || buf[i]=='1' || buf[i]=='2' || buf[i]=='3' || buf[i]=='4' || buf[i]=='5' || buf[i]=='6' || buf[i]=='7' || buf[i]=='8' || buf[i]=='9' ) match++; } if( match && match == i ) return 1; else return 0; } gadmin-bind-0.2.5/src/settings_window.h0000644000000000000000000000216011350705003016545 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBzINDNS_settings_window_H # define GBzINDNS_settings_window_H extern struct w *widgets; void show_settings_window(struct w *widgets); void cancel_settings_button_clicked(struct w *widgets); void apply_settings_button_clicked(struct w *widgets); #endif gadmin-bind-0.2.5/src/.deps/0000755000000000000000000000000011350705630014165 5ustar rootrootgadmin-bind-0.2.5/src/.deps/run_verify_cmd.Po0000644000000000000000000012133111350705606017504 0ustar rootrootrun_verify_cmd.o: run_verify_cmd.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h allocate.h \ widgets.h widgets.c gettext.h ../config.h /usr/include/libintl.h \ /usr/include/locale.h /usr/include/bits/locale.h show_info.h \ populate_log_tab.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: allocate.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: show_info.h: populate_log_tab.h: gadmin-bind-0.2.5/src/.deps/domain_settings_type_combo_changed.Po0000644000000000000000000012077311350705574023566 0ustar rootrootdomain_settings_type_combo_changed.o: \ domain_settings_type_combo_changed.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h domain_settings_type_combo_changed.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: domain_settings_type_combo_changed.h: gadmin-bind-0.2.5/src/.deps/bind_conf_handling.Po0000644000000000000000000000530310577260165020264 0ustar rootrootbind_conf_handling.o bind_conf_handling.o: JJ/bind_conf_handling.c \ /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i386-redhat-linux/4.1.1/include/stddef.h \ /usr/include/bits/types.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/lib/gcc/i386-redhat-linux/4.1.1/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h /usr/include/stdlib.h \ /usr/include/sys/stat.h /usr/include/time.h /usr/include/bits/stat.h \ /usr/include/sys/types.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/alloca.h \ /usr/include/unistd.h /usr/include/bits/posix_opt.h \ /usr/include/bits/confname.h /usr/include/getopt.h /usr/include/ctype.h \ /usr/include/dirent.h /usr/include/bits/dirent.h \ /usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \ /usr/include/linux/limits.h JJ/bind_conf_handling.h JJ/bldReverseIp.h /usr/include/stdio.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i386-redhat-linux/4.1.1/include/stddef.h: /usr/include/bits/types.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/lib/gcc/i386-redhat-linux/4.1.1/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/stdlib.h: /usr/include/sys/stat.h: /usr/include/time.h: /usr/include/bits/stat.h: /usr/include/sys/types.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/alloca.h: /usr/include/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/confname.h: /usr/include/getopt.h: /usr/include/ctype.h: /usr/include/dirent.h: /usr/include/bits/dirent.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: JJ/bind_conf_handling.h: JJ/bldReverseIp.h: gadmin-bind-0.2.5/src/.deps/add_configuration_dialog.Po0000644000000000000000000012074711350705602021475 0ustar rootrootadd_configuration_dialog.o: add_configuration_dialog.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h add_configuration.h \ add_configuration_canceled.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: add_configuration.h: add_configuration_canceled.h: gadmin-bind-0.2.5/src/.deps/status_update.Po0000644000000000000000000012215511350705622017361 0ustar rootrootstatus_update.o: status_update.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/unistd.h /usr/include/bits/posix_opt.h \ /usr/include/bits/confname.h /usr/include/getopt.h /usr/include/dirent.h \ /usr/include/bits/dirent.h allocate.h widgets.h widgets.c \ chars_are_digits.h commands.h status_update.h show_info.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/confname.h: /usr/include/getopt.h: /usr/include/dirent.h: /usr/include/bits/dirent.h: allocate.h: widgets.h: widgets.c: chars_are_digits.h: commands.h: status_update.h: show_info.h: gadmin-bind-0.2.5/src/.deps/rndc_reload.Po0000644000000000000000000012012511350705626016747 0ustar rootrootrndc_reload.o: rndc_reload.c ../config.h gettext.h ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/libintl.h \ /usr/include/locale.h /usr/include/bits/locale.h widgets.h widgets.c \ show_info.h commands.h rndc_reload.h ../config.h: gettext.h: ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: widgets.h: widgets.c: show_info.h: commands.h: rndc_reload.h: gadmin-bind-0.2.5/src/.deps/make_settings_entries.Po0000644000000000000000000011747111350705627021074 0ustar rootrootmake_settings_entries.o: make_settings_entries.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h make_settings_entries.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: make_settings_entries.h: gadmin-bind-0.2.5/src/.deps/chars_are_digits.Po0000644000000000000000000000004711350705626017765 0ustar rootrootchars_are_digits.o: chars_are_digits.c gadmin-bind-0.2.5/src/.deps/create_verify_tab.Po0000644000000000000000000012062411350705606020152 0ustar rootrootcreate_verify_tab.o: create_verify_tab.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h run_verify_cmd.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: run_verify_cmd.h: gadmin-bind-0.2.5/src/.deps/gadmin-bind.Po0000644000000000000000000012343111350705557016652 0ustar rootrootgadmin-bind.o: gadmin-bind.c ../config.h /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/unistd.h /usr/include/bits/posix_opt.h \ /usr/include/bits/confname.h /usr/include/getopt.h gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ widgets.h widgets.c show_info.h locate_icons.h commands.h allocate.h \ add_standard_user.h create_main_window.h create_domain_tab.h \ create_root_servers_tab.h create_resolvers_tab.h create_log_tab.h \ create_verify_tab.h populate_domain_treeview.h \ populate_root_servers_tab.h populate_resolvers.h populate_log_tab.h \ populate_resource_treeview.h dialog_if_files_missing.h \ select_first_domain.h select_first_resource.h status_update.h \ load_settings.h gadmin-bind.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/confname.h: /usr/include/getopt.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: widgets.h: widgets.c: show_info.h: locate_icons.h: commands.h: allocate.h: add_standard_user.h: create_main_window.h: create_domain_tab.h: create_root_servers_tab.h: create_resolvers_tab.h: create_log_tab.h: create_verify_tab.h: populate_domain_treeview.h: populate_root_servers_tab.h: populate_resolvers.h: populate_log_tab.h: populate_resource_treeview.h: dialog_if_files_missing.h: select_first_domain.h: select_first_resource.h: status_update.h: load_settings.h: gadmin-bind.h: gadmin-bind-0.2.5/src/.deps/ip_handling.Po0000644000000000000000000000375311350705600016746 0ustar rootrootip_handling.o: ip_handling.c /usr/include/stdio.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/include/string.h /usr/include/xlocale.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/time.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/alloca.h \ /usr/include/ctype.h ip_handling.h /usr/include/stdio.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/include/string.h: /usr/include/xlocale.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/time.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/alloca.h: /usr/include/ctype.h: ip_handling.h: gadmin-bind-0.2.5/src/.deps/create_domain_tab.Po0000644000000000000000000012141111350705561020110 0ustar rootrootcreate_domain_tab.o: create_domain_tab.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h domain_treeview_row_clicked.h add_domain.h \ delete_domain_from_btn.h resource_treeview_row_clicked.h add_resource.h \ delete_resource_from_btn.h resource_combo_changed.h \ domain_settings_window.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: domain_treeview_row_clicked.h: add_domain.h: delete_domain_from_btn.h: resource_treeview_row_clicked.h: add_resource.h: delete_resource_from_btn.h: resource_combo_changed.h: domain_settings_window.h: gadmin-bind-0.2.5/src/.deps/allocate.Po0000644000000000000000000000366511350705626016270 0ustar rootrootallocate.o: allocate.c ../config.h /usr/include/stdlib.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/include/string.h /usr/include/xlocale.h \ /usr/include/bits/string.h /usr/include/bits/string2.h ../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/include/string.h: /usr/include/xlocale.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: gadmin-bind-0.2.5/src/.deps/bldReverseIp.Po0000644000000000000000000000402110577260166017062 0ustar rootrootbldReverseIp.o bldReverseIp.o: JJ/bldReverseIp.c /usr/include/stdio.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i386-redhat-linux/4.1.1/include/stddef.h \ /usr/include/bits/types.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/lib/gcc/i386-redhat-linux/4.1.1/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/time.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/alloca.h \ /usr/include/ctype.h JJ/bldReverseIp.h /usr/include/stdio.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i386-redhat-linux/4.1.1/include/stddef.h: /usr/include/bits/types.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/lib/gcc/i386-redhat-linux/4.1.1/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/time.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/alloca.h: /usr/include/ctype.h: JJ/bldReverseIp.h: gadmin-bind-0.2.5/src/.deps/select_first_resource.Po0000644000000000000000000012057011350705614021071 0ustar rootrootselect_first_resource.o: select_first_resource.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: gadmin-bind-0.2.5/src/.deps/add_domain.Po0000644000000000000000000011735111350705563016561 0ustar rootrootadd_domain.o: add_domain.c ../config.h /usr/include/time.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/include/bits/time.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.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/include/bits/xopen_lim.h \ /usr/include/bits/stdio_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/signum.h \ /usr/include/bits/sigaction.h /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gcache.h /usr/include/glib-2.0/glib/glist.h \ /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/sys_errlist.h /usr/include/getopt.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ /usr/include/string.h /usr/include/bits/string.h \ /usr/include/bits/string2.h /usr/include/endian.h \ /usr/include/bits/endian.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ show_info.h populate_domain_treeview.h populate_resource_treeview.h \ reread_conf.h allocate.h reverse_address.h commands.h ../config.h: /usr/include/time.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/include/bits/time.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.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/include/bits/xopen_lim.h: /usr/include/bits/stdio_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/signum.h: /usr/include/bits/sigaction.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/sys_errlist.h: /usr/include/getopt.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/bits/waitflags.h: /usr/include/bits/waitstatus.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: show_info.h: populate_domain_treeview.h: populate_resource_treeview.h: reread_conf.h: allocate.h: reverse_address.h: commands.h: gadmin-bind-0.2.5/src/.deps/update_root_servers.Po0000644000000000000000000012200011350705612020556 0ustar rootrootupdate_root_servers.o: update_root_servers.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.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 widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ show_info.h commands.h populate_root_servers_tab.h allocate.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.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: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: show_info.h: commands.h: populate_root_servers_tab.h: allocate.h: gadmin-bind-0.2.5/src/.deps/create_root_servers_tab.Po0000644000000000000000000012102111350705607021373 0ustar rootrootcreate_root_servers_tab.o: create_root_servers_tab.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h populate_root_servers_tab.h \ update_root_servers.h save_root_servers.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: populate_root_servers_tab.h: update_root_servers.h: save_root_servers.h: gadmin-bind-0.2.5/src/.deps/delete_domain_from_btn.Po0000644000000000000000000012116611350705564021161 0ustar rootrootdelete_domain_from_btn.o: delete_domain_from_btn.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h delete_domain.h populate_domain_treeview.h \ select_first_domain.h select_first_resource.h \ populate_resource_treeview.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: delete_domain.h: populate_domain_treeview.h: select_first_domain.h: select_first_resource.h: populate_resource_treeview.h: gadmin-bind-0.2.5/src/.deps/activate_button_clicked.Po0000644000000000000000000012210711350705576021352 0ustar rootrootactivate_button_clicked.o: activate_button_clicked.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ /usr/include/getopt.h /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h /usr/include/string.h /usr/include/bits/string.h \ /usr/include/bits/string2.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ commands.h chars_are_digits.h clear_log_tab.h populate_log_tab.h \ activate_button_clicked.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/confname.h: /usr/include/getopt.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: commands.h: chars_are_digits.h: clear_log_tab.h: populate_log_tab.h: activate_button_clicked.h: gadmin-bind-0.2.5/src/.deps/resource_combo_changed.Po0000644000000000000000000012071311350705567021161 0ustar rootrootresource_combo_changed.o: resource_combo_changed.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ show_info.h gettext.h ../config.h /usr/include/libintl.h \ /usr/include/locale.h /usr/include/bits/locale.h \ resource_combo_changed.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: show_info.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: resource_combo_changed.h: gadmin-bind-0.2.5/src/.deps/commented.Po0000644000000000000000000000366411350705601016447 0ustar rootrootcommented.o: commented.c /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/include/string.h /usr/include/xlocale.h \ /usr/include/bits/string.h /usr/include/bits/string2.h commented.h /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/include/string.h: /usr/include/xlocale.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: commented.h: gadmin-bind-0.2.5/src/.deps/create_main_window.Po0000644000000000000000000012133211350705560020327 0ustar rootrootcreate_main_window.o: create_main_window.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h locate_icons.h activate_button_clicked.h \ deactivate_button_clicked.h reread_button_clicked.h settings_window.h \ show_help.h credits_window.h set_version.h rndc_reload.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: locate_icons.h: activate_button_clicked.h: deactivate_button_clicked.h: reread_button_clicked.h: settings_window.h: show_help.h: credits_window.h: set_version.h: rndc_reload.h: gadmin-bind-0.2.5/src/.deps/populate_resource_treeview.Po0000644000000000000000000012144111350705565022151 0ustar rootrootpopulate_resource_treeview.o: populate_resource_treeview.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ allocate.h show_info.h select_first_resource.h reverse_address.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: allocate.h: show_info.h: select_first_resource.h: reverse_address.h: gadmin-bind-0.2.5/src/.deps/add_configuration.Po0000644000000000000000000012114211350705603020145 0ustar rootrootadd_configuration.o: add_configuration.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h add_configuration.h \ add_configuration_canceled.h populate_root_servers_tab.h commands.h \ show_info.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: add_configuration.h: add_configuration_canceled.h: populate_root_servers_tab.h: commands.h: show_info.h: gadmin-bind-0.2.5/src/.deps/commands.Po0000644000000000000000000012251211350705625016275 0ustar rootrootcommands.o: commands.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.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/sys/wait.h /usr/include/sys/resource.h \ /usr/include/bits/resource.h /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h /usr/include/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ /usr/include/getopt.h widgets.h widgets.c allocate.h show_info.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.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/sys/wait.h: /usr/include/sys/resource.h: /usr/include/bits/resource.h: /usr/include/bits/waitflags.h: /usr/include/bits/waitstatus.h: /usr/include/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/confname.h: /usr/include/getopt.h: widgets.h: widgets.c: allocate.h: show_info.h: gadmin-bind-0.2.5/src/.deps/system_defines.Po0000644000000000000000000000011610751642064017511 0ustar rootrootsystem_defines.o system_defines.o: system_defines.c ../config.h ../config.h: gadmin-bind-0.2.5/src/.deps/save_settings.Po0000644000000000000000000012210111350705624017343 0ustar rootrootsave_settings.o: save_settings.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h widgets.h \ widgets.c gettext.h ../config.h /usr/include/libintl.h \ /usr/include/locale.h /usr/include/bits/locale.h show_info.h commands.h \ allocate.h populate_domain_treeview.h populate_resource_treeview.h \ populate_resolvers.h populate_root_servers_tab.h populate_log_tab.h \ dialog_if_files_missing.h save_settings.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: show_info.h: commands.h: allocate.h: populate_domain_treeview.h: populate_resource_treeview.h: populate_resolvers.h: populate_root_servers_tab.h: populate_log_tab.h: dialog_if_files_missing.h: save_settings.h: gadmin-bind-0.2.5/src/.deps/reverse_address.Po0000644000000000000000000012077711350705601017661 0ustar rootrootreverse_address.o: reverse_address.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h allocate.h \ reverse_address.h ip_handling.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: allocate.h: reverse_address.h: ip_handling.h: gadmin-bind-0.2.5/src/.deps/gbindadmin.Po0000644000000000000000000010327410577260167016603 0ustar rootrootgbindadmin.o gbindadmin.o: gbindadmin.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-features.h \ /usr/include/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/i386-redhat-linux/4.1.1/include/stddef.h \ /usr/lib/gcc/i386-redhat-linux/4.1.1/include/limits.h \ /usr/lib/gcc/i386-redhat-linux/4.1.1/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i386-redhat-linux/4.1.1/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/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/time.h \ /usr/include/bits/time.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/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/i386-redhat-linux/4.1.1/include/stdarg.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h \ /usr/include/glib-2.0/glib/gqsort.h /usr/include/glib-2.0/glib/gqueue.h \ /usr/include/glib-2.0/glib/grand.h /usr/include/glib-2.0/glib/grel.h \ /usr/include/glib-2.0/glib/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/gdkpixbuf.h /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/include/glib-2.0/gmodule.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkdnd.h \ /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h /usr/include/atk-1.0/atk/atk.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h \ /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkclist.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombo.h /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h \ /usr/include/gtk-2.0/gtk/gtkdnd.h /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h \ /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h \ /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h \ /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkmain.h \ /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h /usr/include/gtk-2.0/gtk/gtkplug.h \ /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkenums.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktext.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/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/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/alloca.h /usr/include/string.h /usr/include/bits/string.h \ /usr/include/bits/string2.h /usr/include/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ /usr/include/getopt.h gettext.h ../config.h /usr/include/libintl.h \ /usr/include/locale.h /usr/include/bits/locale.h widgets.h widgets.c \ show_info.h locate_icons.h commands.h allocate.h add_standard_user.h \ create_main_window.h create_domain_tab.h create_root_servers_tab.h \ create_resolvers_tab.h create_log_tab.h create_verify_tab.h \ populate_domain_treeview.h populate_root_servers_tab.h \ populate_resolvers.h populate_log_tab.h populate_resource_treeview.h \ dialog_if_files_missing.h select_first_domain.h status_update.h \ load_settings.h gbindadmin.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-features.h: /usr/include/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/i386-redhat-linux/4.1.1/include/stddef.h: /usr/lib/gcc/i386-redhat-linux/4.1.1/include/limits.h: /usr/lib/gcc/i386-redhat-linux/4.1.1/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i386-redhat-linux/4.1.1/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/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/time.h: /usr/include/bits/time.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/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/i386-redhat-linux/4.1.1/include/stdarg.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/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/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/include/glib-2.0/gmodule.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/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/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/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/confname.h: /usr/include/getopt.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: widgets.h: widgets.c: show_info.h: locate_icons.h: commands.h: allocate.h: add_standard_user.h: create_main_window.h: create_domain_tab.h: create_root_servers_tab.h: create_resolvers_tab.h: create_log_tab.h: create_verify_tab.h: populate_domain_treeview.h: populate_root_servers_tab.h: populate_resolvers.h: populate_log_tab.h: populate_resource_treeview.h: dialog_if_files_missing.h: select_first_domain.h: status_update.h: load_settings.h: gbindadmin.h: gadmin-bind-0.2.5/src/.deps/save_root_servers.Po0000644000000000000000000012174211350705613020247 0ustar rootrootsave_root_servers.o: save_root_servers.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.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 widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ commands.h populate_root_servers_tab.h allocate.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.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: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: commands.h: populate_root_servers_tab.h: allocate.h: gadmin-bind-0.2.5/src/.deps/select_first_domain.Po0000644000000000000000000012056411350705614020514 0ustar rootrootselect_first_domain.o: select_first_domain.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: gadmin-bind-0.2.5/src/.deps/reread_conf.Po0000644000000000000000000012176611350705617016756 0ustar rootrootreread_conf.o: reread_conf.c ../config.h /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.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 widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ commands.h chars_are_digits.h clear_log_tab.h populate_log_tab.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.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: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: commands.h: chars_are_digits.h: clear_log_tab.h: populate_log_tab.h: gadmin-bind-0.2.5/src/.deps/resource_treeview_row_clicked.Po0000644000000000000000000012061011350705566022603 0ustar rootrootresource_treeview_row_clicked.o: resource_treeview_row_clicked.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: gadmin-bind-0.2.5/src/.deps/deactivate_button_clicked.Po0000644000000000000000000012071411350705615021657 0ustar rootrootdeactivate_button_clicked.o: deactivate_button_clicked.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h commands.h show_info.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: commands.h: show_info.h: gadmin-bind-0.2.5/src/.deps/functions.Po0000644000000000000000000012071111350705600016474 0ustar rootrootfunctions.o: functions.c ../config.h /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h allocate.h \ functions.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: allocate.h: functions.h: gadmin-bind-0.2.5/src/.deps/populate_domain_treeview.Po0000644000000000000000000012142711350705562021572 0ustar rootrootpopulate_domain_treeview.o: populate_domain_treeview.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ allocate.h reverse_address.h select_first_domain.h commands.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: allocate.h: reverse_address.h: select_first_domain.h: commands.h: gadmin-bind-0.2.5/src/.deps/new_rndc_key.Po0000644000000000000000000012137711350705622017150 0ustar rootrootnew_rndc_key.o: new_rndc_key.c ../config.h /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ allocate.h show_info.h commands.h new_rndc_key.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: allocate.h: show_info.h: commands.h: new_rndc_key.h: gadmin-bind-0.2.5/src/.deps/show_help.Po0000644000000000000000000012057211350705620016463 0ustar rootrootshow_help.o: show_help.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h show_info.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: show_info.h: gadmin-bind-0.2.5/src/.deps/populate_root_servers_tab.Po0000644000000000000000000012130711350705612021764 0ustar rootrootpopulate_root_servers_tab.o: populate_root_servers_tab.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ show_info.h allocate.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: show_info.h: allocate.h: gadmin-bind-0.2.5/src/.deps/reread_button_clicked.Po0000644000000000000000000012062611350705616021013 0ustar rootrootreread_button_clicked.o: reread_button_clicked.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h reread_conf.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: reread_conf.h: gadmin-bind-0.2.5/src/.deps/domain_treeview_row_clicked.Po0000644000000000000000000012070011350705562022217 0ustar rootrootdomain_treeview_row_clicked.o: domain_treeview_row_clicked.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h populate_resource_treeview.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: populate_resource_treeview.h: gadmin-bind-0.2.5/src/.deps/add_resource.Po0000644000000000000000000012160011350705570017127 0ustar rootrootadd_resource.o: add_resource.c ../config.h /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h widgets.h \ widgets.c gettext.h ../config.h /usr/include/libintl.h \ /usr/include/locale.h /usr/include/bits/locale.h show_info.h \ populate_resource_treeview.h reread_conf.h allocate.h commands.h \ reverse_address.h ip_handling.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: show_info.h: populate_resource_treeview.h: reread_conf.h: allocate.h: commands.h: reverse_address.h: ip_handling.h: gadmin-bind-0.2.5/src/.deps/locate_icons.Po0000644000000000000000000012053211350705624017135 0ustar rootrootlocate_icons.o: locate_icons.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ /usr/include/string.h /usr/include/bits/string.h \ /usr/include/bits/string2.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/stdlib.h locate_icons.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: locate_icons.h: gadmin-bind-0.2.5/src/.deps/make_settings_combos.Po0000644000000000000000000011746511350705627020710 0ustar rootrootmake_settings_combos.o: make_settings_combos.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h make_settings_combos.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: make_settings_combos.h: gadmin-bind-0.2.5/src/.deps/clear_log_tab.Po0000644000000000000000000012132711350705604017251 0ustar rootrootclear_log_tab.o: clear_log_tab.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h allocate.h \ widgets.h widgets.c gettext.h ../config.h /usr/include/libintl.h \ /usr/include/locale.h /usr/include/bits/locale.h show_info.h \ populate_log_tab.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: allocate.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: show_info.h: populate_log_tab.h: gadmin-bind-0.2.5/src/.deps/save_resolvers.Po0000644000000000000000000012161411350705611017533 0ustar rootrootsave_resolvers.o: save_resolvers.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.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 widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ show_info.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.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: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: show_info.h: gadmin-bind-0.2.5/src/.deps/add_configuration_canceled.Po0000644000000000000000000012067611350705604021777 0ustar rootrootadd_configuration_canceled.o: add_configuration_canceled.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h add_configuration_canceled.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: add_configuration_canceled.h: gadmin-bind-0.2.5/src/.deps/delete_resource_from_btn.Po0000644000000000000000000012102511350705571021531 0ustar rootrootdelete_resource_from_btn.o: delete_resource_from_btn.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h delete_resource.h select_first_resource.h \ populate_resource_treeview.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: delete_resource.h: select_first_resource.h: populate_resource_treeview.h: gadmin-bind-0.2.5/src/.deps/create_resolvers_tab.Po0000644000000000000000000012070611350705610020666 0ustar rootrootcreate_resolvers_tab.o: create_resolvers_tab.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h populate_resolvers.h save_resolvers.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: populate_resolvers.h: save_resolvers.h: gadmin-bind-0.2.5/src/.deps/show_info.Po0000644000000000000000000012054011350705621016462 0ustar rootrootshow_info.o: show_info.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: gadmin-bind-0.2.5/src/.deps/widgets.Po0000644000000000000000000011735311350705556016154 0ustar rootrootwidgets.o: widgets.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: gadmin-bind-0.2.5/src/.deps/populate_log_tab.Po0000644000000000000000000012123311350705616020013 0ustar rootrootpopulate_log_tab.o: populate_log_tab.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ allocate.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: allocate.h: gadmin-bind-0.2.5/src/.deps/settings_window.Po0000644000000000000000000012224411350705575017731 0ustar rootrootsettings_window.o: settings_window.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h allocate.h \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h widgets.h widgets.c commands.h \ make_settings_entries.h make_settings_combos.h make_settings_buttons.h \ populate_domain_treeview.h populate_resource_treeview.h \ populate_log_tab.h reread_conf.h new_rndc_key.h commented.h \ save_settings.h settings_window.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: allocate.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: widgets.h: widgets.c: commands.h: make_settings_entries.h: make_settings_combos.h: make_settings_buttons.h: populate_domain_treeview.h: populate_resource_treeview.h: populate_log_tab.h: reread_conf.h: new_rndc_key.h: commented.h: save_settings.h: settings_window.h: gadmin-bind-0.2.5/src/.deps/domain_settings_window.Po0000644000000000000000000012223011350705573021251 0ustar rootrootdomain_settings_window.o: domain_settings_window.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h allocate.h \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h widgets.h widgets.c show_info.h commands.h \ make_settings_entries.h make_settings_combos.h \ populate_domain_treeview.h populate_resource_treeview.h \ populate_log_tab.h reread_conf.h domain_settings_type_combo_changed.h \ domain_settings_window.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: allocate.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: widgets.h: widgets.c: show_info.h: commands.h: make_settings_entries.h: make_settings_combos.h: populate_domain_treeview.h: populate_resource_treeview.h: populate_log_tab.h: reread_conf.h: domain_settings_type_combo_changed.h: domain_settings_window.h: gadmin-bind-0.2.5/src/.deps/credits_window.Po0000644000000000000000000012047311350705576017531 0ustar rootrootcredits_window.o: credits_window.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: gadmin-bind-0.2.5/src/.deps/load_settings.Po0000644000000000000000000012135111350705623017331 0ustar rootrootload_settings.o: load_settings.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/bits/byteswap.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/sys/sysmacros.h /usr/include/alloca.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h widgets.h \ widgets.c gettext.h ../config.h /usr/include/libintl.h \ /usr/include/locale.h /usr/include/bits/locale.h commands.h allocate.h \ load_settings.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: commands.h: allocate.h: load_settings.h: gadmin-bind-0.2.5/src/.deps/populate_resolvers.Po0000644000000000000000000012123711350705610020426 0ustar rootrootpopulate_resolvers.o: populate_resolvers.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ allocate.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: allocate.h: gadmin-bind-0.2.5/src/.deps/add_standard_user.Po0000644000000000000000000012175611350705602020146 0ustar rootrootadd_standard_user.o: add_standard_user.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ /usr/include/getopt.h /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h /usr/include/string.h /usr/include/bits/string.h \ /usr/include/bits/string2.h gettext.h ../config.h /usr/include/libintl.h \ /usr/include/locale.h /usr/include/bits/locale.h widgets.h widgets.c \ commands.h functions.h add_standard_user.h show_info.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/confname.h: /usr/include/getopt.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: widgets.h: widgets.c: commands.h: functions.h: add_standard_user.h: show_info.h: gadmin-bind-0.2.5/src/.deps/make_settings_buttons.Po0000644000000000000000000012011311350705630021076 0ustar rootrootmake_settings_buttons.o: make_settings_buttons.c ../config.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ widgets.h widgets.c make_settings_buttons.h ../config.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: widgets.h: widgets.c: make_settings_buttons.h: gadmin-bind-0.2.5/src/.deps/set_version.Po0000644000000000000000000012125311350705620017030 0ustar rootrootset_version.o: set_version.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ allocate.h show_info.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: allocate.h: show_info.h: gadmin-bind-0.2.5/src/.deps/create_log_tab.Po0000644000000000000000000012066411350705605017432 0ustar rootrootcreate_log_tab.o: create_log_tab.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h populate_log_tab.h clear_log_tab.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: populate_log_tab.h: clear_log_tab.h: gadmin-bind-0.2.5/src/.deps/dialog_if_files_missing.Po0000644000000000000000000012100511350705577021326 0ustar rootrootdialog_if_files_missing.o: dialog_if_files_missing.c \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h widgets.h widgets.c \ gettext.h ../config.h /usr/include/libintl.h /usr/include/locale.h \ /usr/include/bits/locale.h commands.h dialog_if_files_missing.h \ add_configuration_dialog.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: commands.h: dialog_if_files_missing.h: add_configuration_dialog.h: gadmin-bind-0.2.5/src/.deps/delete_domain.Po0000644000000000000000000012141311350705564017266 0ustar rootrootdelete_domain.o: delete_domain.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ allocate.h show_info.h reread_conf.h commands.h reverse_address.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: allocate.h: show_info.h: reread_conf.h: commands.h: reverse_address.h: gadmin-bind-0.2.5/src/.deps/delete_resource.Po0000644000000000000000000012151611350705571017650 0ustar rootrootdelete_resource.o: delete_resource.c /usr/include/gtk-2.0/gtk/gtk.h \ /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h \ /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h \ /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/bits/sigset.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/bits/signum.h \ /usr/include/time.h /usr/include/bits/siginfo.h \ /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \ /usr/include/asm/sigcontext.h /usr/include/linux/types.h \ /usr/include/asm/types.h /usr/include/asm-generic/types.h \ /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ /usr/include/asm/posix_types_32.h /usr/include/bits/sigstack.h \ /usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/bits/time.h \ /usr/include/xlocale.h /usr/include/glib-2.0/glib/gcache.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/grel.h /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfile.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gthemedicon.h /usr/include/glib-2.0/gio/gvfs.h \ /usr/include/glib-2.0/gio/gvolume.h /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h /usr/include/string.h \ /usr/include/bits/string.h /usr/include/bits/string2.h \ /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/sys/sysmacros.h \ /usr/include/alloca.h widgets.h widgets.c gettext.h ../config.h \ /usr/include/libintl.h /usr/include/locale.h /usr/include/bits/locale.h \ allocate.h show_info.h reread_conf.h commands.h reverse_address.h \ populate_resource_treeview.h /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/stddef.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/limits.h: /usr/lib/gcc/i686-redhat-linux/4.4.3/include/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/i686-redhat-linux/4.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/lib/gcc/i686-redhat-linux/4.4.3/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/linux/types.h: /usr/include/asm/types.h: /usr/include/asm-generic/types.h: /usr/include/asm-generic/int-ll64.h: /usr/include/asm/bitsperlong.h: /usr/include/asm-generic/bitsperlong.h: /usr/include/linux/posix_types.h: /usr/include/linux/stddef.h: /usr/include/asm/posix_types.h: /usr/include/asm/posix_types_32.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/bits/time.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/grel.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: /usr/include/string.h: /usr/include/bits/string.h: /usr/include/bits/string2.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/bits/byteswap.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/sys/sysmacros.h: /usr/include/alloca.h: widgets.h: widgets.c: gettext.h: ../config.h: /usr/include/libintl.h: /usr/include/locale.h: /usr/include/bits/locale.h: allocate.h: show_info.h: reread_conf.h: commands.h: reverse_address.h: populate_resource_treeview.h: gadmin-bind-0.2.5/src/credits_window.c0000644000000000000000000001635211350705002016344 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include "string.h" #include "gettext.h" void show_credits() { gchar *text, *utf8=NULL; GtkWidget *credits_window; GtkWidget *credits_vbox; GtkWidget *credits_scrolledwindow; GtkWidget *credits_textview; GtkWidget *close_credits_button; GtkWidget *credits_alignment, *credits_hbox; GtkWidget *credits_image, *credits_label; credits_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_widget_set_size_request(credits_window, 550, 350); text = g_strdup_printf(_("Credits")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_window_set_title(GTK_WINDOW (credits_window), utf8); g_free(text); gtk_window_set_position(GTK_WINDOW(credits_window), GTK_WIN_POS_CENTER); credits_vbox = gtk_vbox_new(FALSE, 0); gtk_container_add(GTK_CONTAINER(credits_window), credits_vbox); credits_scrolledwindow = gtk_scrolled_window_new(NULL, NULL); gtk_box_pack_start (GTK_BOX (credits_vbox), credits_scrolledwindow, TRUE, TRUE, 0); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (credits_scrolledwindow), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (credits_scrolledwindow), GTK_SHADOW_ETCHED_OUT); credits_textview = gtk_text_view_new (); gtk_container_add (GTK_CONTAINER (credits_scrolledwindow), credits_textview); gtk_text_view_set_editable (GTK_TEXT_VIEW (credits_textview), FALSE); gtk_text_view_set_justification (GTK_TEXT_VIEW (credits_textview), GTK_JUSTIFY_CENTER); gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (credits_textview), FALSE); gtk_text_view_set_pixels_above_lines (GTK_TEXT_VIEW (credits_textview), 4); gtk_text_view_set_left_margin (GTK_TEXT_VIEW (credits_textview), 29); text = g_strconcat( "\n", _("Author: "), "Magnus Loef \n", "\n", _("I want to thank the following for their contributions:"), "\n-------------------------------------------------------------------------\n", _("The ISC BIND developers.\n\n"), "Sebastian Schoss ", _("for")," www.gadmintools.org\n", "Bjoern Lindner ", _("for the program icons.\n"), "\n", "Daniel Baumann \n", _("for maintaining the Debian package."), "\n\n", "Rudolf Kastl ", _("for the RPM spec file."), "\n\n", _("And all translators:"), "\n-------------------------------------------------------------------------\n", _("Afrikaans"), " (af) NAME \n", _("Amharic"), " (am) NAME \n", _("Arabic"), " (ar) NAME \n", _("Azerbaijani"), " (az) NAME \n", _("Basque"), " (eu) NAME \n", _("Bulgarian"), " (bg) NAME \n", _("Breton"), " (br) NAME \n", _("Brittish-English"), " (en_GB) NAME \n", _("Bosnian"), " (bs) NAME \n", _("Byelorussian"), " (be) NAME \n", _("Catalan"), " (ca) NAME \n", _("Chinese"), " (zh_CN) Stanley Peng \n", _("Chinese-Taiwan"), " (zh_TW) NAME \n", _("Croatian"), " (hr) NAME \n", _("Czech"), " (cs) NAME \n", _("Danish"), " (dk) NAME \n", _("Dutch"), " (nl) NAME \n", _("Esperanto"), " (eo) NAME \n", _("Estonian"), " (et) NAME \n", _("Finnish"), " (fi) NAME \n", _("French"), " (fr) NAME \n", _("Galician"), " (gl) NAME \n", _("German"), " (de) Sebastian Schoss \n", _("Greek"), " (el) NAME \n", _("Hebrew"), " (he) NAME \n", _("Hini"), " (hi) NAME \n", _("Hungarian"), " (hu) NAME \n", _("Icelandic"), " (is) NAME \n", _("Indonesian"), " (id) NAME \n", _("Irish"), " (ga) NAME \n", _("Italian"), " (it) NAME \n", _("Japanese"), " (ja) NAME \n", _("Korean"), " (ko) NAME \n", _("Kurdish"), " (ku) NAME \n", _("Latvian-Lettish"), " (lv) NAME \n", _("Lithuanian"), " (lt) NAME \n", _("Macedonian"), " (mk) NAME \n", _("Maori"), " (mi) NAME \n", _("Macedonian"), " (mk) NAME \n", _("Maltese"), " (mt) NAME \n", _("Norwegian"), " (no) NAME \n", _("Polish"), " (pl) NAME \n", _("Portuguese"), " (pt) (pt_BR) NAME \n", _("Portuguese-Brazil"), " (pt_BR) NAME \n", _("Romanian"), " (ro) NAME \n", _("Russian"), " (ru) NAME \n", _("Serbian"), " (sr) NAME \n", _("Slovak"), " (sk) NAME \n", _("Slovenian"), " (sl) NAME \n", _("Spanish"), " (es) NAME \n", _("Swedish"), " (sv) Magnus Loef \n", _("Tamil"), " (ta) NAME \n", _("Thai"), " (th) NAME \n", _("Turkish"), " (tr) NAME \n", _("Traditional Chinese"), " (zh_TW) NAME \n", _("Ukrainian"), " (uk) NAME \n", _("Vietnamese"), " (vi) NAME \n", _("Wallon"), " (wa) NAME \n", _("Welch"), " (cy) NAME \n", "\n", NULL); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_text_buffer_set_text(gtk_text_view_get_buffer (GTK_TEXT_VIEW (credits_textview)), utf8, -1); g_free(text); if( utf8!=NULL ) g_free(utf8); close_credits_button = gtk_button_new (); gtk_widget_show (close_credits_button); gtk_box_pack_start(GTK_BOX(credits_vbox), close_credits_button, FALSE, FALSE, 0); credits_alignment = gtk_alignment_new(0.5, 0.5, 0, 0); gtk_widget_show(credits_alignment); gtk_container_add(GTK_CONTAINER(close_credits_button), credits_alignment); credits_hbox = gtk_hbox_new(FALSE, 2); gtk_widget_show(credits_hbox); gtk_container_add(GTK_CONTAINER(credits_alignment), credits_hbox); credits_image = gtk_image_new_from_stock("gtk-close", GTK_ICON_SIZE_BUTTON); gtk_widget_show(credits_image); gtk_box_pack_start(GTK_BOX(credits_hbox), credits_image, FALSE, FALSE, 0); text = g_strdup_printf(_("Close")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); credits_label = gtk_label_new_with_mnemonic(utf8); g_free(text); gtk_box_pack_start(GTK_BOX(credits_hbox), credits_label, FALSE, FALSE, 0); gtk_label_set_justify(GTK_LABEL(credits_label), GTK_JUSTIFY_LEFT); g_signal_connect_swapped((gpointer)close_credits_button, "clicked", G_CALLBACK(gtk_widget_destroy), GTK_OBJECT(credits_window)); if( utf8!=NULL ) g_free(utf8); gtk_widget_show_all(credits_window); } gadmin-bind-0.2.5/src/delete_domain.c0000644000000000000000000001033611350705002016105 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "widgets.h" #include "gettext.h" #include "allocate.h" #include "show_info.h" #include "reread_conf.h" #include "commands.h" #include "reverse_address.h" extern int MAX_CONF_LINE; extern char CHROOT_PATH_BUF[1024]; extern char global_domain_name[1024]; extern char global_domain_ipv4_address[1024]; extern char global_domain_ipv6_address[1024]; void delete_domain(struct w *widgets) { FILE *fp; long file_size=0; char *new_conf; char *line; gchar *info, *path; gchar *rm_zone_dir_cmd; char *reversed_address; gchar *forward_zone_line, *reverse_zone_line; /* Delete forward and reverse zones in named.conf * Delete the site directory: rm -rf /var/named/etc/sites/_site_ */ if( strlen(global_domain_name)==0 ) { info = g_strdup_printf(_("Missing domain name, domain not deleted\n")); show_info(info); g_free(info); return; } if( strlen(global_domain_ipv4_address)==0 && strlen(global_domain_ipv6_address)==0 ) { info = g_strdup_printf(_("Missing network address, domain not deleted\n")); show_info(info); g_free(info); return; } rm_zone_dir_cmd = g_strdup_printf("rm -rf %s/etc/sites/%s/", CHROOT_PATH_BUF, global_domain_name); if( ! run_command(rm_zone_dir_cmd) ) { info = g_strdup_printf(_("Error: could not run remove zone directory command:\n%s\n"), rm_zone_dir_cmd); show_info(info); g_free(info); g_free(rm_zone_dir_cmd); return; } g_free(rm_zone_dir_cmd); /* Collect everything in named.conf but this sites * forward and reverse zones */ path = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); if((fp=fopen(path, "r"))==NULL) { info = g_strdup_printf(_("Could not open named.conf here: %s\n"), path); show_info(info); g_free(info); g_free(path); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); new_conf = allocate(file_size+1); line = allocate(file_size+1); forward_zone_line = g_strdup_printf("\"%s\"", global_domain_name); reversed_address = reverse_address(global_domain_ipv4_address); reverse_zone_line = g_strdup_printf("\"%s.in-addr.arpa\"", reversed_address); free(reversed_address); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { /* Skip the forward zone and its options */ if( strstr(line, "zone ") && strstr(line, forward_zone_line) ) { while(fgets(line, file_size, fp)!=NULL) { /* This is the end of the zone */ if( strstr(line, "};") && strlen(line) < 4 ) break; } } else /* Skip the reverse zone and its options */ if( strstr(line, "zone ") && strstr(line, reverse_zone_line) ) { while(fgets(line, file_size, fp)!=NULL) { /* This is the end of the zone */ if( strstr(line, "};") && strlen(line) < 4 ) break; } } else strcat(new_conf, line); } g_free(forward_zone_line); g_free(reverse_zone_line); fclose(fp); free(line); /* Write the new conf */ if((fp=fopen(path, "w+"))==NULL) { info = g_strdup_printf(_("Could not write named.conf here: %s\n"), path); show_info(info); g_free(info); g_free(path); return; } fputs(new_conf, fp); fclose(fp); free(new_conf); g_free(path); } gadmin-bind-0.2.5/src/gadmin-bind.h0000644000000000000000000000174411350705002015475 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef HAVE_gadmin_bind_H # define HAVE_gadmin_bind_H extern struct w *widgets; int main(int argc, char *argv[]); #endif gadmin-bind-0.2.5/src/create_domain_tab.h0000644000000000000000000000175611350705002016747 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef create_domain_tab_H # define create_domain_tab_H extern struct w *widgets; void create_domain_tab(struct w *widgets); #endif gadmin-bind-0.2.5/src/locate_icons.c0000644000000000000000000000624011350705002015755 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include "gettext.h" #include #include #include "locate_icons.h" /* Pixmap locations */ static GList *pixmaps_directories = NULL; static gchar* find_pixmap_file(const gchar *filename); /* Use this function to set the directory containing installed pixmaps. */ void add_pixmap_directory(const gchar *directory) { pixmaps_directories = g_list_prepend (pixmaps_directories, g_strdup (directory)); } /* This is an internally used function to find pixmap files. */ static gchar* find_pixmap_file(const gchar *filename) { GList *elem; /* We step through each of the pixmaps directory to find it. */ elem = pixmaps_directories; while( elem ) { gchar *pathname = g_strdup_printf ("%s%s%s", (gchar*)elem->data, G_DIR_SEPARATOR_S, filename); if( g_file_test(pathname, G_FILE_TEST_EXISTS) ) return pathname; g_free (pathname); elem = elem->next; } return NULL; } /* This is an internally used function to create pixmaps. */ GtkWidget* create_pixmap(GtkWidget *widget, const gchar *filename) { gchar *pathname = NULL; GtkWidget *pixmap; if (!filename || !filename[0]) return gtk_image_new (); pathname = find_pixmap_file (filename); if( ! pathname ) { printf("Couldnt find pixmap file: %s\n", filename); printf("In path: %s\n", pathname); 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 = find_pixmap_file (filename); if( ! pathname ) { printf("Couldn't find pixmap file: %s\n", filename); printf("In path: %s", pathname); 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; } gadmin-bind-0.2.5/src/populate_root_servers_tab.c0000644000000000000000000000426011350705002020606 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "widgets.h" #include "gettext.h" #include "show_info.h" #include "allocate.h" extern char CHROOT_PATH_BUF[1024]; extern char SYSLOG_PATH_BUF[1024]; void populate_root_servers_tab(struct w *widgets) { FILE *fp; long file_size=0; char *line, *buffy; gchar *filepath, *utf8=NULL; GtkTextBuffer *text_buffer; text_buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(widgets->rs_textview)); filepath = g_strdup_printf("%s/etc/root.hints", CHROOT_PATH_BUF); if((fp=fopen(filepath, "r"))==NULL) { /* If theres a popup here itll also pop up when chroots are changed and if the chroot is missing. We dont want that to happen. */ g_free(filepath); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); buffy = allocate(file_size+1); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) strcat(buffy, line); fclose(fp); free(line); utf8 = g_locale_to_utf8(buffy, strlen(buffy), NULL, NULL, NULL); free(buffy); if( utf8!=NULL ) { /* Strlen error on NULL, thats why.. */ gtk_text_buffer_set_text(text_buffer, utf8, strlen(utf8)); g_free(utf8); } g_free(filepath); } gadmin-bind-0.2.5/src/commented.h0000644000000000000000000000170411350705002015273 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GSAMBAD_COMMENTED_H # define GSAMBAD_COMMENTED_H int commented(char *line); #endif gadmin-bind-0.2.5/src/reread_conf.h0000644000000000000000000000176111350705002015572 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_reread_conf_H # define GBINDADMIN_reread_conf_H extern struct w *widgets; void reread_conf(struct w *widgets); #endif gadmin-bind-0.2.5/src/functions.h0000644000000000000000000000201711350705002015326 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef FUNCTIONS_H #define FUNCTIONS_H #include int user_exists(G_CONST_RETURN gchar *username); int group_exists(G_CONST_RETURN gchar *username); #endif gadmin-bind-0.2.5/src/add_domain.h0000644000000000000000000000173111350705002015377 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef add_domain_H # define add_domain_H extern struct w *widgets; void add_domain(struct w *widgets); #endif gadmin-bind-0.2.5/src/save_resolvers.h0000644000000000000000000000174311350705003016366 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef save_resolvers_H # define save_resolvers_H extern struct w *widgets; void save_resolvers(struct w *widgets); #endif gadmin-bind-0.2.5/src/resource_treeview_row_clicked.h0000644000000000000000000000210411350705002021421 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef resource_treeview_row_clicked_H # define resource_treeview_row_clicked_H extern struct w *widgets; void resource_treeview_row_clicked(GtkTreeView *treeview, GdkEventButton *event, gpointer data); #endif gadmin-bind-0.2.5/src/ip_handling.h0000644000000000000000000000224611350705002015576 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef and * Jean-Jacques Sarton * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ extern char *build_reverse_ip(char *addr, int mask, int start, int end); extern int check_ip(char *ip, int range); extern char *reverse_to_forward(char *ip); extern int set_range(char *ipr, int *start, int *end, int *bits); extern char *zone_from_range(char *range); gadmin-bind-0.2.5/src/populate_resource_treeview.h0000644000000000000000000000201111350705002020762 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef populate_resource_treeview_H # define populate_resource_treeview_H extern struct w *widgets; void populate_resource_treeview(struct w *widgets); #endif gadmin-bind-0.2.5/src/dialog_if_files_missing.c0000644000000000000000000000605211350705002020144 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "commands.h" #include "dialog_if_files_missing.h" #include "add_configuration_dialog.h" extern char CHROOT_PATH_BUF[1024]; void dialog_if_files_missing(struct w *widgets) { gchar *file; /* Show an add configuration dialog if one of the files is missing */ if( ! file_exists(CHROOT_PATH_BUF) ) { add_configuration_dialog(widgets); return; } file = g_strdup_printf("%s/etc/named.conf", CHROOT_PATH_BUF); if( ! file_exists(file) ) { add_configuration_dialog(widgets); g_free(file); return; } g_free(file); file = g_strdup_printf("%s/etc/sites", CHROOT_PATH_BUF); if( ! file_exists(file) ) { add_configuration_dialog(widgets); g_free(file); return; } g_free(file); file = g_strdup_printf("%s/var/run", CHROOT_PATH_BUF); if( ! file_exists(file) ) { add_configuration_dialog(widgets); g_free(file); return; } g_free(file); file = g_strdup_printf("%s/etc/127.0.0", CHROOT_PATH_BUF); if( ! file_exists(file) ) { add_configuration_dialog(widgets); g_free(file); return; } g_free(file); file = g_strdup_printf("%s/etc/localhost", CHROOT_PATH_BUF); if( ! file_exists(file) ) { add_configuration_dialog(widgets); g_free(file); return; } g_free(file); file = g_strdup_printf("%s/etc/localtime", CHROOT_PATH_BUF); if( ! file_exists(file) ) { add_configuration_dialog(widgets); g_free(file); return; } g_free(file); file = g_strdup_printf("%s/etc/root.hints", CHROOT_PATH_BUF); if( ! file_exists(file) ) { add_configuration_dialog(widgets); g_free(file); return; } g_free(file); file = g_strdup_printf("%s/dev/null", CHROOT_PATH_BUF); if( ! file_exists(file) ) { add_configuration_dialog(widgets); g_free(file); return; } g_free(file); file = g_strdup_printf("%s/dev/random", CHROOT_PATH_BUF); if( ! file_exists(file) ) { add_configuration_dialog(widgets); g_free(file); return; } g_free(file); } gadmin-bind-0.2.5/src/populate_resolvers.h0000644000000000000000000000176311350705002017262 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef _populate_resolvers_H # define _populate_resolvers_H extern struct w *widgets; void populate_resolvers(struct w *widgets); #endif gadmin-bind-0.2.5/src/show_info.h0000644000000000000000000000170011350705003015310 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef HAVE_show_info_H # define HAVE_show_info_H void show_info(gchar *content); #endif gadmin-bind-0.2.5/src/allocate.h0000644000000000000000000000172111350705002015103 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_ALLOCATE_H # define GBINDADMIN_ALLOCATE_H char * allocate(long allocate_size); #endif gadmin-bind-0.2.5/src/reverse_address.h0000644000000000000000000000200711350705002016475 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef reverse_address_H # define reverse_address_H char *reverse_address(char *addr); char * get_ptr_addr_from_forward_address(char *forward_address); #endif gadmin-bind-0.2.5/src/add_standard_user.c0000644000000000000000000000524211350705002016762 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include #include "gettext.h" #include "widgets.h" #include "commands.h" #include "functions.h" #include "add_standard_user.h" #include "show_info.h" int add_standard_user() { /* Adds the user/group NAMED_USER if it doesnt exist and locks the account */ gchar *cmd, *info, *username; username = g_strdup_printf("%s", NAMED_USER); /* Add the system group NAMED_USER if it doesnt exist */ if( ! group_exists(username) ) { cmd = g_strdup_printf("%s %s", GROUPADD_BINARY, username); if( ! run_command(cmd) ) { info = g_strdup_printf(_("Error: Failed to add the system group:\n%s\nwith command: %s\n"), username, cmd); show_info(info); g_free(info); g_free(cmd); g_free(username); return 0; } g_free(cmd); } if( ! user_exists(username) ) { /* Add the NAMED_USER user to the NAMED_USER group and lock the account */ cmd = g_strdup_printf("%s '%s' -l -d '/dev/null' -c 'Nobody' -s '/dev/null' -g '%s'", USERADD_BINARY, username, username); if( ! run_command(cmd) ) { info = g_strdup_printf(_("Error: Failed to add the system user:\n%s\nwith command: %s\n"), username, cmd); show_info(info); g_free(info); g_free(cmd); g_free(username); return 0; } g_free(cmd); /* To be really sure we check it again with the same function */ if( ! user_exists(username) ) { info = g_strdup_printf(_("Error: Failed to add the system user:\n%s\n"), username); show_info(info); g_free(info); g_free(username); return 0; } } g_free(username); return 1; } gadmin-bind-0.2.5/src/delete_resource_from_btn.c0000644000000000000000000000233011350705002020346 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "delete_resource.h" #include "select_first_resource.h" #include "populate_resource_treeview.h" void delete_resource_from_btn(struct w *widgets) { delete_resource(widgets); populate_resource_treeview(widgets); select_first_resource(widgets); } gadmin-bind-0.2.5/src/domain_treeview_row_clicked.c0000644000000000000000000000555111350705002021045 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "populate_resource_treeview.h" extern char global_domain_name[1024]; extern char global_domain_ipv4_address[1024]; extern char global_domain_ipv6_address[1024]; extern char global_domain_type[1024]; void domain_treeview_row_clicked(GtkTreeView *treeview, GdkEventButton *event, gpointer data) { gchar *domain, *ipv4_address, *ipv6_address, *type; GtkTreeIter iter; GtkTreePath *path; GtkTreeModel *list_store; GtkTreeSelection *selection; /* Only handle button press event's and left button clicks */ if( ! event->type == GDK_BUTTON_PRESS || ! event->button == 1 ) return; selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)); if( gtk_tree_selection_count_selected_rows(selection) <= 1 ) { /* Get the treepath for the row that was clicked */ if( gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(treeview), event->x, event->y, &path, NULL, NULL, NULL)) { gtk_tree_selection_unselect_all(selection); gtk_tree_selection_select_path(selection, path); list_store = gtk_tree_view_get_model(GTK_TREE_VIEW(treeview)); gtk_tree_model_get_iter(list_store, &iter, path); gtk_tree_model_get(list_store, &iter, 0, &domain, -1); gtk_tree_model_get(list_store, &iter, 1, &ipv4_address, -1); gtk_tree_model_get(list_store, &iter, 2, &ipv6_address, -1); gtk_tree_model_get(list_store, &iter, 3, &type, -1); sprintf(global_domain_name, "%s", domain?domain:"none"); sprintf(global_domain_ipv4_address, "%s", ipv4_address?ipv4_address:"none"); sprintf(global_domain_ipv6_address, "%s", ipv6_address?ipv6_address:"none"); sprintf(global_domain_type, "%s", type?type:"master"); g_free(domain); g_free(ipv4_address); g_free(ipv6_address); g_free(type); gtk_tree_path_free(path); populate_resource_treeview(data); } } } gadmin-bind-0.2.5/src/add_configuration.h0000644000000000000000000000175611350705002017006 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef add_configuration_H # define add_configuration_H extern struct w *widgets; void add_configuration(struct w *widgets); #endif gadmin-bind-0.2.5/src/populate_log_tab.c0000644000000000000000000000400111350705002016624 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "widgets.h" #include "gettext.h" #include "allocate.h" extern char SYSLOG_PATH_BUF[1024]; void populate_log_tab(struct w *widgets) { FILE *fp; long file_size = 0; long pos = 0; char *line, *buffy; gchar *utf8=NULL; GtkTextBuffer *text_buffer=NULL; text_buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(widgets->log_textview)); if((fp=fopen(SYSLOG_PATH_BUF, "r"))==NULL) { printf("Couldnt find: %s\n", SYSLOG_PATH_BUF); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); line = allocate(file_size+1); buffy = allocate(file_size+1); if( file_size > 1 ) while(fgets(line, file_size, fp)!=NULL) { if( strstr(line, "named") ) { strcat(buffy+pos, line); pos += strlen(line); } } fclose(fp); free(line); utf8 = g_locale_to_utf8(buffy, strlen(buffy), NULL, NULL, NULL); free(buffy); if( utf8!=NULL ) { /* Strlen error on NULL, thats why.. */ gtk_text_buffer_set_text(text_buffer, utf8, strlen(utf8)); g_free(utf8); } } gadmin-bind-0.2.5/src/make_settings_combos.h0000644000000000000000000000231111350705002017512 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_make_settings_combos_H # define GBINDADMIN_make_settings_combos_H GtkWidget *make_combo_with_label(GtkTable *table, const gchar *label_text, gint left_attach, gint right_attach, gint top_attach, gint bottom_attach, gint entry_length); #endif gadmin-bind-0.2.5/src/update_root_servers.c0000644000000000000000000000555311350705003017420 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include #include "widgets.h" #include "gettext.h" #include "show_info.h" #include "commands.h" #include "populate_root_servers_tab.h" #include "allocate.h" extern char CHROOT_PATH_BUF[1024]; extern int activated; void update_root_servers(struct w *widgets) { FILE *fp; char *buffy, *conf; long file_size, num_lines = 0; gchar *info, *command, *root_hints; char tmpfile[]="/tmp/gadmin-bind-XXXXXX"; int tmpfd = -1; tmpfd = mkstemp(tmpfile); if( tmpfd < 0 ) { printf("Error: Could not create temporary dig file: %s\n", tmpfile); return; } close(tmpfd); command = g_strdup_printf("%s > %s", DIG_BINARY, tmpfile); if( ! run_command(command) ) printf("Dig failed: could not get root server listing.\n"); g_free(command); if((fp=fopen(tmpfile, "r"))==NULL) { printf("Cannot open temporary dig file: %s", tmpfile); return; } fseek(fp, 0, SEEK_END); file_size = ftell(fp); rewind(fp); buffy = allocate(file_size+1); conf = allocate(file_size+1); while(fgets(buffy, file_size, fp)!=NULL) { strcat(conf, buffy); num_lines++; } fclose(fp); free(buffy); /* Remove the temp file if it exists */ if( file_exists(tmpfile) ) unlink(tmpfile); if( num_lines < 20 ) { info = g_strdup_printf(_("Received less then 20 lines of root server information.\nMake sure that the resolvers tab has working nameservers listed.\n")); show_info(info); g_free(info); free(conf); return; } root_hints = g_strdup_printf("%s/etc/root.hints", CHROOT_PATH_BUF); if((fp=fopen(root_hints, "w+"))==NULL) { info = g_strdup_printf(_("Can not write root.hints here:\n%s\n"), root_hints); show_info(info); g_free(info); free(conf); g_free(root_hints); return; } fputs(conf, fp); fclose(fp); free(conf); g_free(root_hints); populate_root_servers_tab(widgets); } gadmin-bind-0.2.5/src/add_standard_user.h0000644000000000000000000000170111350705002016763 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef add_standard_user_H # define add_standard_user_H int add_standard_user(); #endif gadmin-bind-0.2.5/src/add_configuration_dialog.c0000644000000000000000000000735211350705002020316 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "add_configuration.h" #include "add_configuration_canceled.h" extern char CHROOT_PATH_BUF[1024]; void add_configuration_dialog(struct w *widgets) { gchar *utf8=NULL; GtkTextBuffer *text_buffer; gchar *info; GtkWidget *add_conf_vbox, *add_conf_textview; widgets->add_configuration_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_position(GTK_WINDOW (widgets->add_configuration_window), GTK_WIN_POS_CENTER); gtk_widget_set_size_request(widgets->add_configuration_window, 400, 100); /* Set window information */ info = g_strdup_printf(_("GBINDADMIN %s add a default configuration ?\n"), VERSION); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); gtk_window_set_title(GTK_WINDOW(widgets->add_configuration_window), utf8); g_free(info); add_conf_vbox = gtk_vbox_new(FALSE, 0); gtk_container_add (GTK_CONTAINER (widgets->add_configuration_window), add_conf_vbox); add_conf_textview = gtk_text_view_new(); gtk_container_add (GTK_CONTAINER (add_conf_vbox), add_conf_textview); g_signal_connect(GTK_WINDOW(widgets->add_configuration_window), "delete_event", G_CALLBACK(gtk_widget_destroy), NULL); text_buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(add_conf_textview)); info = g_strdup_printf(_("Could not find all neccesary files in BIND's chroot directory.\nShould the missing files and directories be added here ? :\n%s\n"), CHROOT_PATH_BUF); utf8 = g_locale_to_utf8(info, strlen(info), NULL, NULL, NULL); g_free(info); if( utf8!=NULL ) { /* Strlen error on NULL, thats why.. */ gtk_text_buffer_set_text(text_buffer, utf8, strlen(utf8)); g_free(utf8); } GtkWidget *add_conf_hbuttonbox = gtk_hbutton_box_new(); gtk_box_pack_start(GTK_BOX(add_conf_vbox), add_conf_hbuttonbox, FALSE, FALSE, 0); gtk_button_box_set_layout(GTK_BUTTON_BOX(add_conf_hbuttonbox), GTK_BUTTONBOX_SPREAD); GtkWidget *yes_add_conf_button = gtk_button_new_from_stock(GTK_STOCK_YES); gtk_container_add(GTK_CONTAINER(add_conf_hbuttonbox), yes_add_conf_button); g_signal_connect_swapped(G_OBJECT(yes_add_conf_button), "clicked", G_CALLBACK(add_configuration), widgets); GtkWidget *cancel_add_conf_button = gtk_button_new_from_stock(GTK_STOCK_CANCEL); gtk_container_add(GTK_CONTAINER(add_conf_hbuttonbox), cancel_add_conf_button); g_signal_connect_swapped(G_OBJECT(cancel_add_conf_button), "clicked", G_CALLBACK(add_configuration_canceled), widgets); gtk_widget_show(widgets->add_configuration_window); gtk_widget_show(add_conf_vbox); gtk_widget_show(add_conf_textview); gtk_widget_show(add_conf_hbuttonbox); gtk_widget_show(yes_add_conf_button); gtk_widget_show(cancel_add_conf_button); } gadmin-bind-0.2.5/src/widgets.h0000644000000000000000000000165111350705003014770 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef widgets_H # define widgets_H #include "widgets.c" #endif gadmin-bind-0.2.5/src/create_domain_tab.c0000644000000000000000000004437711350705002016750 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include "widgets.h" #include "gettext.h" #include "domain_treeview_row_clicked.h" #include "add_domain.h" #include "delete_domain_from_btn.h" #include "resource_treeview_row_clicked.h" #include "add_resource.h" #include "delete_resource_from_btn.h" #include "resource_combo_changed.h" #include "domain_settings_window.h" /* Wether or not to let the domain section expand */ #define EXPAND_DOMAIN_SECTION FALSE /* Wether or not to let the resource section expand */ #define EXPAND_RESOURCE_SECTION TRUE void create_domain_tab(struct w *widgets) { GtkCellRenderer *domain_cell_renderer, *resource_cell_renderer; GtkWidget *domain_treeview_hbox, *resource_treeview_hbox; GtkWidget *domain_scrolled_window, *resource_scrolled_window; GtkTooltips *tooltips; tooltips = gtk_tooltips_new(); gchar *utf8=NULL; gchar *text; /* Create the domain treeview in a scrolled window */ domain_treeview_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), domain_treeview_hbox, EXPAND_DOMAIN_SECTION, TRUE, 0); domain_scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start(GTK_BOX(domain_treeview_hbox), domain_scrolled_window, TRUE, TRUE, 0); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(domain_scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); /* Must set a larger size or it wont scroll */ gtk_widget_set_size_request(domain_scrolled_window, -1, 100); widgets->domain_store = gtk_list_store_new (4, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING); // was 3 widgets->domain_treeview = gtk_tree_view_new(); gtk_tree_view_set_model(GTK_TREE_VIEW(widgets->domain_treeview), GTK_TREE_MODEL(widgets->domain_store)); gtk_container_add(GTK_CONTAINER(domain_scrolled_window), widgets->domain_treeview); gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(widgets->domain_treeview), TRUE); /* Set the column labels in the treeview */ domain_cell_renderer = gtk_cell_renderer_text_new(); text = g_strdup_printf(_("Domain name")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); GtkTreeViewColumn *domain_name_col = gtk_tree_view_column_new_with_attributes(utf8, domain_cell_renderer, "text", 0, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(widgets->domain_treeview), GTK_TREE_VIEW_COLUMN(domain_name_col)); g_free(text); text = g_strdup_printf(_("IPv4 Network address")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); GtkTreeViewColumn *network_ipv4_address_col = gtk_tree_view_column_new_with_attributes(utf8, domain_cell_renderer, "text", 1, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(widgets->domain_treeview), GTK_TREE_VIEW_COLUMN(network_ipv4_address_col)); g_free(text); text = g_strdup_printf(_("IPv6 Network address")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); GtkTreeViewColumn *network_ipv6_address_col = gtk_tree_view_column_new_with_attributes(utf8, domain_cell_renderer, "text", 2, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(widgets->domain_treeview), GTK_TREE_VIEW_COLUMN(network_ipv6_address_col)); g_free(text); text = g_strdup_printf(_("DNS type")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); GtkTreeViewColumn *dns_type_col = gtk_tree_view_column_new_with_attributes(utf8, domain_cell_renderer, "text", 3, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(widgets->domain_treeview), GTK_TREE_VIEW_COLUMN(dns_type_col)); g_free(text); g_signal_connect((gpointer)widgets->domain_treeview, "button_press_event", G_CALLBACK(domain_treeview_row_clicked), widgets); /* The add/delete domain entries and buttons */ GtkWidget *domain_add_hbox1 = gtk_hbox_new(FALSE,FALSE); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), domain_add_hbox1, FALSE, FALSE, 0); GtkWidget *domain_add_hbox2 = gtk_hbox_new(FALSE,FALSE); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), domain_add_hbox2, FALSE, FALSE, 0); widgets->add_domain_name_entry = gtk_entry_new(); gtk_box_pack_start(GTK_BOX(domain_add_hbox2), widgets->add_domain_name_entry, TRUE, TRUE, 0); text = g_strdup_printf(_("The domain to add, IE: example.org")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->add_domain_name_entry, utf8, NULL); g_free(text); widgets->add_domain_ipv4_address_entry = gtk_entry_new(); gtk_box_pack_start(GTK_BOX(domain_add_hbox2), widgets->add_domain_ipv4_address_entry, TRUE, TRUE, 0); text = g_strconcat(_("An IPv4 network address for the domain.\nIE: 192.168.0 or 192.168.0.16-42\n"), _("If the last method is used another domain must handle this domains reverse lookups.\n"), _("In that case a second DNS (NS-record) should be added that points to your ISP's server."), NULL); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->add_domain_ipv4_address_entry, utf8, NULL); g_free(text); widgets->add_domain_ipv6_address_entry = gtk_entry_new(); gtk_box_pack_start(GTK_BOX(domain_add_hbox2), widgets->add_domain_ipv6_address_entry, TRUE, TRUE, 0); text = g_strconcat("An IPv6 network address, IE: fe80::213:8fff:feea:9b79/64\n", _("Fill in this field and an existing (IPv4 only) domain name in the domain field to add an IPv6 range to it."), NULL); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, widgets->add_domain_ipv6_address_entry, utf8, NULL); g_free(text); /* Domain type combo */ widgets->add_domain_type_combo = gtk_combo_box_new_text(); gtk_box_pack_start(GTK_BOX(domain_add_hbox2), widgets->add_domain_type_combo, TRUE, TRUE, 0); text = g_strdup_printf(_("master")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->add_domain_type_combo), utf8); g_free(text); text = g_strdup_printf(_("slave")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->add_domain_type_combo), utf8); /* Set this combo position as selected (Master) */ gtk_combo_box_set_active(GTK_COMBO_BOX(widgets->add_domain_type_combo), 0); g_free(text); /* Add, del and change Buttonbox */ GtkWidget *domain_hbuttonbox = gtk_hbutton_box_new(); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), domain_hbuttonbox, FALSE, FALSE, 2); /* The delete domain button */ GtkWidget *domain_del_button = gtk_button_new_from_stock(GTK_STOCK_DELETE); gtk_container_add(GTK_CONTAINER(domain_hbuttonbox), domain_del_button); g_signal_connect_swapped(G_OBJECT(domain_del_button), "clicked", G_CALLBACK(delete_domain_from_btn), widgets); text = g_strdup_printf(_("Delete the selected domain.")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, domain_del_button, utf8, NULL); g_free(text); /* The add domain button */ GtkWidget *domain_add_button = gtk_button_new_from_stock(GTK_STOCK_ADD); gtk_container_add(GTK_CONTAINER(domain_hbuttonbox), domain_add_button); g_signal_connect_swapped(G_OBJECT(domain_add_button), "clicked", G_CALLBACK(add_domain), widgets); /* The change domain button with custom text */ GtkWidget *domain_change_button = gtk_button_new(); gtk_container_add(GTK_CONTAINER(domain_hbuttonbox), domain_change_button); text = g_strdup_printf(_("Make changes to the selected domain.")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, domain_change_button, utf8, NULL); g_free(text); GtkWidget *alignment60 = gtk_alignment_new(0.5, 0.5, 0, 0); gtk_container_add(GTK_CONTAINER(domain_change_button), alignment60); GtkWidget *hbox73 = gtk_hbox_new(FALSE, 2); gtk_container_add(GTK_CONTAINER(alignment60), hbox73); GtkWidget *image40 = gtk_image_new_from_stock("gtk-refresh", GTK_ICON_SIZE_BUTTON); gtk_box_pack_start(GTK_BOX(hbox73), image40, FALSE, FALSE, 0); // text = g_strdup_printf(_("Change domain settings")); text = g_strdup_printf(_("Change")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); GtkWidget *label115 = gtk_label_new_with_mnemonic(utf8); g_free(text); gtk_box_pack_start(GTK_BOX(hbox73), label115, FALSE, FALSE, 0); gtk_label_set_justify(GTK_LABEL(label115), GTK_JUSTIFY_LEFT); g_signal_connect_swapped(G_OBJECT(domain_change_button), "clicked", G_CALLBACK(show_domain_settings_window), widgets); /* Some space between the 2 treeviews */ GtkWidget *views_spacer_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), views_spacer_hbox, FALSE, FALSE, 0); /* Domain resources */ // text = g_strdup_printf(_("Domain resources:")); // utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); // GtkWidget *resource_label = gtk_label_new(utf8); // gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), resource_label, FALSE, FALSE, 10); // g_free(text); /* Create the resource treeview in a scrolled window */ resource_treeview_hbox = gtk_hbox_new(TRUE, 0); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), resource_treeview_hbox, EXPAND_RESOURCE_SECTION, TRUE, 0); resource_scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start(GTK_BOX(resource_treeview_hbox), resource_scrolled_window, TRUE, TRUE, 0); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(resource_scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); /* Must set a larger size or it wont scroll */ gtk_widget_set_size_request(resource_scrolled_window, -1, 100); widgets->resource_store = gtk_list_store_new (3, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING); widgets->resource_treeview = gtk_tree_view_new(); gtk_tree_view_set_model(GTK_TREE_VIEW(widgets->resource_treeview), GTK_TREE_MODEL(widgets->resource_store)); gtk_container_add(GTK_CONTAINER(resource_scrolled_window), widgets->resource_treeview); gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(widgets->resource_treeview), TRUE); /* Set the column labels in the treeview */ resource_cell_renderer = gtk_cell_renderer_text_new(); text = g_strdup_printf(_("Resource type")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); GtkTreeViewColumn *resource_name_col = gtk_tree_view_column_new_with_attributes(utf8, resource_cell_renderer, "text", 0, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(widgets->resource_treeview), GTK_TREE_VIEW_COLUMN(resource_name_col)); g_free(text); text = g_strdup_printf(_("Full Hostname")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); GtkTreeViewColumn *resource_hostname_col = gtk_tree_view_column_new_with_attributes(utf8, resource_cell_renderer, "text", 1, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(widgets->resource_treeview), GTK_TREE_VIEW_COLUMN(resource_hostname_col)); g_free(text); text = g_strdup_printf(_("IP-address, mail server priority or CNAME host alias")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); GtkTreeViewColumn *resource_ipaddress_col = gtk_tree_view_column_new_with_attributes(utf8, resource_cell_renderer, "text", 2, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(widgets->resource_treeview), GTK_TREE_VIEW_COLUMN(resource_ipaddress_col)); g_free(text); g_signal_connect((gpointer)widgets->resource_treeview, "button_press_event", G_CALLBACK(resource_treeview_row_clicked), widgets); /* The add/delete resource entries */ GtkWidget *resource_add_hbox1 = gtk_hbox_new(FALSE,FALSE); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), resource_add_hbox1, FALSE, FALSE, 0); GtkWidget *resource_add_hbox2 = gtk_hbox_new(FALSE,FALSE); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), resource_add_hbox2, FALSE, FALSE, 0); GtkWidget *resource_del_hbox = gtk_hbox_new(FALSE,FALSE); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), resource_del_hbox, FALSE, FALSE, 0); /* The resource combo box and selections */ widgets->add_resource_type_combo = gtk_combo_box_new_text(); gtk_box_pack_start(GTK_BOX(resource_add_hbox2), widgets->add_resource_type_combo, FALSE, FALSE, 0); text = g_strdup_printf(_("Nameserver (NS-Record)")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->add_resource_type_combo), utf8); g_free(text); text = g_strdup_printf(_("Mailserver (MX)")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->add_resource_type_combo), utf8); g_free(text); text = g_strdup_printf(_("Authoritive (IPv4 A-Record)")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->add_resource_type_combo), utf8); g_free(text); text = g_strdup_printf(_("Authoritive (IPv6 AAAA-Record)")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->add_resource_type_combo), utf8); g_free(text); text = g_strdup_printf(_("Machine alias (CNAME)")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_combo_box_append_text(GTK_COMBO_BOX(widgets->add_resource_type_combo), utf8); g_free(text); /* Set this combo position as selected */ gtk_combo_box_set_active(GTK_COMBO_BOX(widgets->add_resource_type_combo), 0); /* Set different tooltips for different selections */ g_signal_connect_swapped(G_OBJECT(widgets->add_resource_type_combo), "changed", G_CALLBACK(resource_combo_changed), widgets); /* Create the tooltips for the resource combo */ widgets->resource_hostname_tooltip = gtk_tooltips_new(); widgets->resource_address_tooltip = gtk_tooltips_new(); widgets->add_resource_hostname_entry = gtk_entry_new(); gtk_box_pack_start(GTK_BOX(resource_add_hbox2), widgets->add_resource_hostname_entry, TRUE, TRUE, 0); text = g_strdup_printf(_("A DNS server: dns1.example.org")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_hostname_tooltip, widgets->add_resource_hostname_entry, utf8, NULL); g_free(text); widgets->add_resource_address_entry = gtk_entry_new(); gtk_box_pack_start(GTK_BOX(resource_add_hbox2), widgets->add_resource_address_entry, TRUE, TRUE, 0); text = g_strdup_printf(_("192.168.0.1 or fe80::213:8fff:feea:9b79/64")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(widgets->resource_address_tooltip, widgets->add_resource_address_entry, utf8, NULL); g_free(text); /* Add, del and change resource Buttonbox */ GtkWidget *resource_hbuttonbox = gtk_hbutton_box_new(); gtk_box_pack_start(GTK_BOX(widgets->notebook_vbox1), resource_hbuttonbox, FALSE, FALSE, 2); /* The delete resource button */ GtkWidget *resource_del_button = gtk_button_new_from_stock(GTK_STOCK_DELETE); gtk_container_add(GTK_CONTAINER(resource_hbuttonbox), resource_del_button); text = g_strdup_printf(_("Delete the selected resource.")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, resource_del_button, utf8, NULL); g_free(text); g_signal_connect_swapped(G_OBJECT(resource_del_button), "clicked", G_CALLBACK(delete_resource_from_btn), widgets); /* The add resource button */ GtkWidget *resource_add_button = gtk_button_new_from_stock(GTK_STOCK_ADD); gtk_container_add(GTK_CONTAINER(resource_hbuttonbox), resource_add_button); g_signal_connect_swapped(G_OBJECT(resource_add_button), "clicked", G_CALLBACK(add_resource), widgets); /* The change resource button with custom text */ GtkWidget *resource_change_button = gtk_button_new(); gtk_container_add(GTK_CONTAINER(resource_hbuttonbox), resource_change_button); text = g_strdup_printf(_("Make changes to the selected resource.")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); gtk_tooltips_set_tip(tooltips, resource_change_button, utf8, NULL); g_free(text); GtkWidget *alignment80 = gtk_alignment_new(0.5, 0.5, 0, 0); gtk_container_add(GTK_CONTAINER(resource_change_button), alignment80); GtkWidget *hbox74 = gtk_hbox_new(FALSE, 2); gtk_container_add(GTK_CONTAINER(alignment80), hbox74); GtkWidget *image42 = gtk_image_new_from_stock("gtk-refresh", GTK_ICON_SIZE_BUTTON); gtk_box_pack_start(GTK_BOX(hbox74), image42, FALSE, FALSE, 0); // text = g_strdup_printf(_("Change resource settings")); text = g_strdup_printf(_("Change")); utf8 = g_locale_to_utf8(text, strlen(text), NULL, NULL, NULL); GtkWidget *label124 = gtk_label_new_with_mnemonic(utf8); g_free(text); gtk_box_pack_start(GTK_BOX(hbox74), label124, FALSE, FALSE, 0); gtk_label_set_justify(GTK_LABEL(label124), GTK_JUSTIFY_LEFT); // g_signal_connect_swapped(G_OBJECT(resource_change_button), "clicked", // G_CALLBACK(show_resource_settings_window), widgets); // FIXME ^ if( utf8 != NULL ) g_free(utf8); } gadmin-bind-0.2.5/src/make_settings_entries.h0000644000000000000000000000231311350705002017703 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_make_settings_entries_H # define GBINDADMIN_make_settings_entries_H GtkWidget *make_entry_with_label(GtkTable *table, const gchar *label_text, gint left_attach, gint right_attach, gint top_attach, gint bottom_attach, gint entry_length); #endif gadmin-bind-0.2.5/src/delete_resource.h0000644000000000000000000000175011350705002016472 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef delete_resource_H # define delete_resource_H extern struct w *widgets; void delete_resource(struct w *widgets); #endif gadmin-bind-0.2.5/src/rndc_reload.c0000644000000000000000000000334011350705003015566 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include "gettext.h" #include #include "widgets.h" #include "show_info.h" #include "commands.h" #include "rndc_reload.h" extern int activated; void rndc_reload(struct w *widgets) { gchar *info, *cmd; if( ! activated ) { info = g_strdup_printf(_("The server must be activated in order to reload its zone and configuration data.\n")); show_info(info); g_free(info); return; } cmd = g_strdup_printf("%s reload", RNDC_BINARY); if( ! run_command(cmd) ) { info = g_strdup_printf(_("Error: could not run rndc reload, maybe you need to generate\na secret key in the settings and restart the server ?\n")); show_info(info); g_free(info); } else { info = g_strdup_printf(_("The servers zones and configuration data has been successfully reloaded.\n")); show_info(info); g_free(info); } } gadmin-bind-0.2.5/src/gettext.h0000644000000000000000000000271411350705002015006 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifdef HAVE_CONFIG_H # include #endif #include /* * Standard gettext macros. */ #ifdef ENABLE_NLS # include # undef _ # define _(String) dgettext (PACKAGE, String) # ifdef gettext_noop # define N_(String) gettext_noop (String) # else # define N_(String) (String) # endif #else # define textdomain(String) (String) # define gettext(String) (String) # define dgettext(Domain,Message) (Message) # define dcgettext(Domain,Message,Type) (Message) # define bindtextdomain(Domain,Directory) (Domain) # define _(String) (String) # define N_(String) (String) #endif gadmin-bind-0.2.5/src/reread_conf.c0000644000000000000000000000451311350705002015563 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include #include "widgets.h" #include "gettext.h" #include "commands.h" #include "chars_are_digits.h" #include "clear_log_tab.h" #include "populate_log_tab.h" extern int activated; extern char CHROOT_PATH_BUF[1024]; void reread_conf(struct w *widgets) { /* It doesnt restart/reread with a HUP, no problem */ gchar *command, *test; if( ! activated ) return; command = g_strdup_printf("killall -15 %s", NAMED_BINARY); if( ! run_command(command) ) printf("named shutdown failed, trying to start it\n"); g_free(command); clear_log_tab(widgets); command = g_strdup_printf("%s -u %s -t %s -c /etc/named.conf", NAMED_BINARY, NAMED_USER, CHROOT_PATH_BUF); if( ! run_command(command) ) { printf("Restarting named failed.\n"); test = g_strdup_printf("%s -fg -u %s -t %s -c /etc/named.conf 2>&1", NAMED_BINARY, NAMED_USER, CHROOT_PATH_BUF); run_command_show_err(test); g_free(test); } g_free(command); if( ! chars_are_digits(CMD_SLEEP_LOG_SECS) ) { printf("CMD_SLEEP_LOG_SECS should be in seconds, please reinstall the program\n"); return; } if( strlen(CMD_SLEEP_LOG_SECS) > 2 ) /* 99 seconds max */ { printf("CMD_SLEEP_LOG_SECS max length is 2 chars IE: 99 seconds, please reinstall the program\n"); return; } sleep(atoi(CMD_SLEEP_LOG_SECS)); populate_log_tab(widgets); } gadmin-bind-0.2.5/src/update_root_servers.h0000644000000000000000000000176211350705003017423 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef update_root_servers_H # define update_root_servers_H extern struct w *widgets; void update_root_servers(struct w *widgets); #endif gadmin-bind-0.2.5/src/save_settings.c0000644000000000000000000000703511350705003016175 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "../config.h" #include #include #include #include #include "widgets.h" #include "gettext.h" #include "show_info.h" #include "commands.h" #include "allocate.h" #include "populate_domain_treeview.h" #include "populate_resource_treeview.h" #include "populate_resolvers.h" #include "populate_root_servers_tab.h" #include "populate_log_tab.h" #include "dialog_if_files_missing.h" #include "save_settings.h" extern char CHROOT_PATH_BUF[1024]; extern char SYSLOG_PATH_BUF[1024]; extern char RESOLV_PATH_BUF[1024]; void save_settings(struct w *widgets) { FILE *fp; gchar *settings_file, *cmd, *info, *setting; G_CONST_RETURN gchar *set_chroot; G_CONST_RETURN gchar *set_resolv; G_CONST_RETURN gchar *set_syslog; /* Make the settings directory if it doesnt exist */ cmd = g_strdup_printf("mkdir -p %s", SETTINGS_DIR); if( ! file_exists(SETTINGS_DIR) ) run_command(cmd); g_free(cmd); if( ! file_exists(SETTINGS_DIR) ) { info = g_strdup_printf(_("The settings directory could not be created, run gadmin-bind as root\n")); show_info(info); g_free(info); } settings_file = g_strdup_printf("%s/settings.conf", SETTINGS_DIR); set_chroot = gtk_entry_get_text(GTK_ENTRY(widgets->settings_entry[0])); set_resolv = gtk_entry_get_text(GTK_ENTRY(widgets->settings_entry[1])); set_syslog = gtk_entry_get_text(GTK_ENTRY(widgets->settings_entry[2])); /* Update the global paths */ snprintf(CHROOT_PATH_BUF, 1000, "%s", set_chroot); snprintf(RESOLV_PATH_BUF, 1000, "%s", set_resolv); snprintf(SYSLOG_PATH_BUF, 1000, "%s", set_syslog); /* Write the new settings */ if((fp=fopen(settings_file, "w+"))==NULL) { printf("Couldnt open the settings file here:\n%s\n", settings_file); g_free(settings_file); return; } if( strlen(set_chroot) > 5 ) { setting = g_strdup_printf("\nchroot_directory: %s\n", set_chroot); fputs(setting, fp); g_free(setting); } if( strlen(set_chroot) > 5 ) { setting = g_strdup_printf("syslog_file_path: %s\n", set_syslog); fputs(setting, fp); g_free(setting); } if( strlen(set_chroot) > 5 ) { setting = g_strdup_printf("resolv_conf_path: %s\n", set_resolv); fputs(setting, fp); g_free(setting); } fclose(fp); g_free(settings_file); /* Reread the entire gui */ populate_domain_treeview(widgets); populate_resource_treeview(widgets); populate_resolvers(widgets); populate_root_servers_tab(widgets); populate_log_tab(widgets); /* If theres no valid chroot in the new location we ask to create one */ dialog_if_files_missing(widgets); } gadmin-bind-0.2.5/src/create_log_tab.h0000644000000000000000000000174511350705002016257 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef create_log_tab_H # define create_log_tab_H extern struct w *widgets; void create_log_tab(struct w *widgets); #endif gadmin-bind-0.2.5/src/domain_settings_window.h0000644000000000000000000000222711350705002020077 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_domain_settings_window_H # define GBINDADMIN_domain_settings_window_H extern struct w *widgets; void show_domain_settings_window(struct w *widgets); void cancel_domain_settings_button_clicked(struct w *widgets); void apply_domain_settings_button_clicked(struct w *widgets); #endif gadmin-bind-0.2.5/src/show_help.h0000644000000000000000000000175411350705003015316 0ustar rootroot/* GADMIN-BIND - An easy to use GTK+ frontend for the ISC BIND DNS Server. * Copyright (C) 2008 - 2010 Magnus Loef * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef GBINDADMIN_show_help_H # define GBINDADMIN_show_help_H extern struct w *widgets; void show_help(struct w *widgets); #endif gadmin-bind-0.2.5/depcomp0000644000000000000000000002753310360304720013744 0ustar rootroot#! /bin/sh # depcomp - compile a program generating dependencies as side-effects # Copyright 1999, 2000 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. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # `libtool' can also be set to `yes' or `no'. if test -z "$depfile"; then base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'` dir=`echo "$object" | sed 's,/.*$,/,'` if test "$dir" = "$object"; then dir= fi # FIXME: should be _deps on DOS. depfile="$dir.deps/$base" fi tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. This file always lives in the current directory. # Also, the AIX compiler puts `$object:' at the start of each line; # $object doesn't have directory information. stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'` tmpdepfile="$stripped.u" outname="$stripped.o" if test "$libtool" = yes; then "$@" -Wc,-M else "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1="$dir.libs/$base.lo.d" tmpdepfile2="$dir.libs/$base.d" "$@" -Wc,-MD else tmpdepfile1="$dir$base.o.d" tmpdepfile2="$dir$base.d" "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi if test -f "$tmpdepfile1"; then tmpdepfile="$tmpdepfile1" else tmpdepfile="$tmpdepfile2" fi if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a space and a tab in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the proprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. We will use -o /dev/null later, # however we can't do the remplacement now because # `-o $object' might simply not be used IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M "$@" -o /dev/null $dashmflag | sed 's:^[^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; -*) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the proprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the proprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 gadmin-bind-0.2.5/config.guess0000755000000000000000000011315010360304717014707 0ustar rootroot#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-09-04' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Written by Per Bothner . # Please send patches to . # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit 0 ;; --version | -v ) echo "$version" ; exit 0 ;; --help | --h* | -h ) echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi dummy=dummy-$$ trap 'rm -f $dummy.c $dummy.o $dummy.rel $dummy; exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. set_cc_for_build='case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int dummy(){}" > $dummy.c ; for c in cc gcc c89 ; do ($c $dummy.c -c -o $dummy.o) >/dev/null 2>&1 ; if test $? = 0 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; rm -f $dummy.c $dummy.o $dummy.rel ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # Netbsd (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # Determine the machine/vendor (is the vendor relevant). case "${UNAME_MACHINE}" in amiga) machine=m68k-unknown ;; arm32) machine=arm-unknown ;; atari*) machine=m68k-atari ;; sun3*) machine=m68k-sun ;; mac68k) machine=m68k-apple ;; macppc) machine=powerpc-apple ;; hp3[0-9][05]) machine=m68k-hp ;; ibmrt|romp-ibm) machine=romp-ibm ;; *) machine=${UNAME_MACHINE}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE}" in i386|sparc|amiga|arm*|hp300|mvme68k|vax|atari|luna68k|mac68k|news68k|next68k|pc532|sun3*|x68k) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit 0 ;; alpha:OSF1:*:*) if test $UNAME_RELEASE = "V4.0"; then UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` fi # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. cat <$dummy.s .data \$Lformat: .byte 37,100,45,37,120,10,0 # "%d-%x\n" .text .globl main .align 4 .ent main main: .frame \$30,16,\$26,0 ldgp \$29,0(\$27) .prologue 1 .long 0x47e03d80 # implver \$0 lda \$2,-1 .long 0x47e20c21 # amask \$2,\$1 lda \$16,\$Lformat mov \$0,\$17 not \$1,\$18 jsr \$26,printf ldgp \$29,0(\$26) mov 0,\$16 jsr \$26,exit .end main EOF eval $set_cc_for_build $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null if test "$?" = 0 ; then case `./$dummy` in 0-0) UNAME_MACHINE="alpha" ;; 1-0) UNAME_MACHINE="alphaev5" ;; 1-1) UNAME_MACHINE="alphaev56" ;; 1-101) UNAME_MACHINE="alphapca56" ;; 2-303) UNAME_MACHINE="alphaev6" ;; 2-307) UNAME_MACHINE="alphaev67" ;; 2-1307) UNAME_MACHINE="alphaev68" ;; esac fi rm -f $dummy.s $dummy echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit 0 ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit 0 ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit 0 ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit 0;; amiga:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit 0 ;; arc64:OpenBSD:*:*) echo mips64el-unknown-openbsd${UNAME_RELEASE} exit 0 ;; arc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; hkmips:OpenBSD:*:*) echo mips-unknown-openbsd${UNAME_RELEASE} exit 0 ;; pmax:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; sgi:OpenBSD:*:*) echo mips-unknown-openbsd${UNAME_RELEASE} exit 0 ;; wgrisc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; *:OS/390:*:*) echo i370-ibm-openedition exit 0 ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit 0;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit 0;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit 0 ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit 0 ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; i86pc:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit 0 ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit 0 ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit 0 ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit 0 ;; sparc*:NetBSD:*) echo `uname -p`-unknown-netbsd${UNAME_RELEASE} exit 0 ;; atari*:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit 0 ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit 0 ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit 0 ;; sun3*:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mac68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvme68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvme88k:OpenBSD:*:*) echo m88k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit 0 ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit 0 ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit 0 ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit 0 ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit 0 ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD $dummy.c -o $dummy \ && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy echo mips-mips-riscos${UNAME_RELEASE} exit 0 ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit 0 ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit 0 ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit 0 ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit 0 ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit 0 ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit 0 ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit 0 ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit 0 ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit 0 ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit 0 ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit 0 ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit 0 ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit 0 ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy echo rs6000-ibm-aix3.2.5 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit 0 ;; *:AIX:*:[45]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit 0 ;; *:AIX:*:*) echo rs6000-ibm-aix exit 0 ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit 0 ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit 0 ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit 0 ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit 0 ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit 0 ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit 0 ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) case "${HPUX_REV}" in 11.[0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; esac ;; esac fi ;; esac if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy` if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi rm -f $dummy.c $dummy fi ;; esac echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit 0 ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit 0 ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy echo unknown-hitachi-hiuxwe2 exit 0 ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit 0 ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit 0 ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit 0 ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit 0 ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit 0 ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit 0 ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit 0 ;; hppa*:OpenBSD:*:*) echo hppa-unknown-openbsd exit 0 ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit 0 ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit 0 ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit 0 ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit 0 ;; CRAY*X-MP:*:*:*) echo xmp-cray-unicos exit 0 ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*T3D:*:*:*) echo alpha-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY-2:*:*:*) echo cray2-cray-unicos exit 0 ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit 0 ;; hp300:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit 0 ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit 0 ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit 0 ;; *:FreeBSD:*:*) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit 0 ;; *:OpenBSD:*:*) echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` exit 0 ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit 0 ;; i*:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit 0 ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit 0 ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i386-pc-interix exit 0 ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit 0 ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit 0 ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; *:GNU:*:*) echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit 0 ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux exit 0 ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; mips:Linux:*:*) case `sed -n '/^byte/s/^.*: \(.*\) endian/\1/p' < /proc/cpuinfo` in big) echo mips-unknown-linux-gnu && exit 0 ;; little) echo mipsel-unknown-linux-gnu && exit 0 ;; esac ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit 0 ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit 0 ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit 0 ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit 0 ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit 0 ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit 0 ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit 0 ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. ld_supported_targets=`cd /; ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit 0 ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit 0 ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit 0 ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build cat >$dummy.c < #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 printf ("%s-pc-linux-gnu\n", argv[1]); # else printf ("%s-pc-linux-gnulibc1\n", argv[1]); # endif # else printf ("%s-pc-linux-gnulibc1\n", argv[1]); # endif #else printf ("%s-pc-linux-gnuaout\n", argv[1]); #endif return 0; } EOF $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit 0 ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit 0 ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit 0 ;; i*86:*:5:[78]*) case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit 0 ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|egrep '^Machine.*Pent ?II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit 0 ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit 0 ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit 0 ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit 0 ;; paragon:*:*:*) echo i860-intel-osf1 exit 0 ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit 0 ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit 0 ;; M68*:*:R3V[567]*:*) test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; 3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4.3${OS_REL} && exit 0 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4 && exit 0 ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit 0 ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit 0 ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit 0 ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit 0 ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit 0 ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit 0 ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit 0 ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit 0 ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit 0 ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit 0 ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit 0 ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit 0 ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit 0 ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit 0 ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit 0 ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit 0 ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit 0 ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit 0 ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit 0 ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit 0 ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit 0 ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit 0 ;; *:Darwin:*:*) echo `uname -p`-apple-darwin${UNAME_RELEASE} exit 0 ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) if test "${UNAME_MACHINE}" = "x86pc"; then UNAME_MACHINE=pc fi echo `uname -p`-${UNAME_MACHINE}-nto-qnx exit 0 ;; *:QNX:*:4*) echo i386-pc-qnx exit 0 ;; NSR-[KW]:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit 0 ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit 0 ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit 0 ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit 0 ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit 0 ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit 0 ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit 0 ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit 0 ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit 0 ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit 0 ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit 0 ;; *:ITS:*:*) echo pdp10-unknown-its exit 0 ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit 0 ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit 0 ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; c34*) echo c34-convex-bsd exit 0 ;; c38*) echo c38-convex-bsd exit 0 ;; c4*) echo c4-convex-bsd exit 0 ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp 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` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: gadmin-bind-0.2.5/README0000644000000000000000000000007110751364671013255 0ustar rootrootGAdmin-BIND - An easy to use gtk+ frontend for ISC BIND. gadmin-bind-0.2.5/MAKE_RPM0000755000000000000000000000042111350704343013543 0ustar rootroot#!/bin/sh # Make an RPM. version='0.2.5' cd .. ###tar -zhcvf /usr/src/redhat/SOURCES/gadmin-bind-$version.tar.gz gadmin-bind-$version tar -zhcvf /root/rpmbuild/SOURCES/gadmin-bind-$version.tar.gz gadmin-bind-$version cd gadmin-bind-$version rpmbuild -ba gadmin-bind.spec gadmin-bind-0.2.5/config.sub0000755000000000000000000006710010360304720014347 0ustar rootroot#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-09-07' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit 0 ;; --version | -v ) echo "$version" ; exit 0 ;; --help | --h* | -h ) echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit 0;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | storm-chaos* | os2-emx* | windows32-*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ | c4x | clipper \ | d10v | d30v | dsp16xx \ | fr30 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | m32r | m68000 | m68k | m88k | mcore \ | mips16 | mips64 | mips64el | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el | mips64vr4300 \ | mips64vr4300el | mips64vr5000 | mips64vr5000el \ | mipsbe | mipseb | mipsel | mipsle | mipstx39 | mipstx39el \ | mipsisa32 \ | mn10200 | mn10300 \ | ns16k | ns32k \ | openrisc \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | s390 | s390x \ | sh | sh[34] | sh[34]eb | shbe | shle \ | sparc | sparc64 | sparclet | sparclite | sparcv9 | sparcv9b \ | stormy16 | strongarm \ | tahoe | thumb | tic80 | tron \ | v850 \ | we32k \ | x86 | xscale \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alphapca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armv*-* \ | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c54x-* \ | clipper-* | cray2-* | cydra-* \ | d10v-* | d30v-* \ | elxsi-* \ | f30[01]-* | f700-* | fr30-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | m32r-* \ | m68000-* | m680[01234]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | mcore-* \ | mips-* | mips16-* | mips64-* | mips64el-* | mips64orion-* \ | mips64orionel-* | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* | mipsbe-* | mipseb-* \ | mipsle-* | mipsel-* | mipstx39-* | mipstx39el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | s390-* | s390x-* \ | sh-* | sh[34]-* | sh[34]eb-* | shbe-* | shle-* \ | sparc-* | sparc64-* | sparc86x-* | sparclite-* \ | sparcv9-* | sparcv9b-* | stormy16-* | strongarm-* | sv1-* \ | t3e-* | tahoe-* | thumb-* | tic30-* | tic54x-* | tic80-* | tron-* \ | v850-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xmp-* | xps100-* | xscale-* \ | ymp-* \ | z8k-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | ymp) basic_machine=ymp-cray os=-unicos ;; cray2) basic_machine=cray2-cray os=-unicos ;; [cjt]90) basic_machine=${basic_machine}-cray os=-unicos ;; crds | unos) basic_machine=m68k-crds ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mipsel*-linux*) basic_machine=mipsel-unknown os=-linux-gnu ;; mips*-linux*) basic_machine=mips-unknown os=-linux-gnu ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; mmix*) basic_machine=mmix-knuth os=-mmixware ;; monitor) basic_machine=m68k-rom68k os=-coff ;; msdos) basic_machine=i386-pc os=-msdos ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5 | k5 | k6 | nexgen) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon) basic_machine=i686-pc ;; pentiumii | pentium2) basic_machine=i686-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sparclite-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=t3e-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; tower | tower-32) basic_machine=m68k-ncr ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; windows32) basic_machine=i386-pc os=-windows32-msvcrt ;; xmp) basic_machine=xmp-cray os=-unicos ;; xps | xps100) basic_machine=xps100-honeywell ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; mips) if [ x$os = x-linux-gnu ]; then basic_machine=mips-unknown else basic_machine=mips-mips fi ;; romp) basic_machine=romp-ibm ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh3 | sh4 | sh3eb | sh4eb) basic_machine=sh-unknown ;; sparc | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; c4x*) basic_machine=c4x-none os=-coff ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto*) os=-nto-qnx ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-ibm) os=-aix ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -ptx*) vendor=sequent ;; -vxsim* | -vxworks*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: gadmin-bind-0.2.5/configure.in0000644000000000000000000002170011350704627014703 0ustar rootrootdnl Process this file with autoconf to produce a configure script. AC_INIT(configure.in) AM_INIT_AUTOMAKE(gadmin-bind, 0.2.5) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE AC_CANONICAL_HOST AC_MSG_CHECKING([for OS type]) case $host in *-linux*) AC_MSG_RESULT([Linux ($host) found.]) AC_DEFINE(USE_LINUX,1,[using linux macros...]) ;; *-solaris*) AC_MSG_RESULT([Solaris ($host) found.]) AC_DEFINE(USE_SUNOS,1,[using sunos macros...]) ;; *-sunos*) AC_MSG_RESULT([Solaris ($host) found.]) AC_DEFINE(USE_SUNOS,1,[using sunos macros...]) ;; *-freebsd*) AC_MSG_RESULT([Free BSD ($host) found.]) AC_DEFINE(USE_FREEBSD,1,[using freebsd macros...]) ;; *-openbsd*) AC_MSG_RESULT([Open BSD ($host) found.]) AC_DEFINE(USE_OPENBSD,1,[using openbsd macros...]) ;; *-netbsd*) AC_MSG_RESULT([Net BSD ($host) found.]) AC_DEFINE(USE_NETBSD,1,[using netbsd macros...]) ;; *-darwin*) AC_MSG_RESULT([Darwin Mac OS X ($host) found.]) AC_DEFINE(USE_DARWIN,1,[using darwin macros...]) ;; *-aix*) AC_MSG_RESULT([AIX ($host) found.]) AC_DEFINE(USE_AIX,1,[using aix macros...]) ;; *-hpux*) AC_MSG_RESULT([HP UX ($host) found.]) AC_DEFINE(USE_HPUX,1,[using hpux macros...]) ;; *) AC_MSG_RESULT([Unknown host found: ($host). Using Linux macros...]) AC_DEFINE(USE_LINUX,1,[using Linux macros...]) ;; esac AC_ISC_POSIX AC_PROG_CC AM_PROG_CC_STDC AC_HEADER_STDC pkg_modules="gtk+-2.0 >= 1.3.13" PKG_CHECK_MODULES(PACKAGE, [$pkg_modules]) AC_SUBST(PACKAGE_CFLAGS) AC_SUBST(PACKAGE_LIBS) GETTEXT_PACKAGE=gadmin-bind AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[needed for gettext...]) dnl Add the languages which your application supports here. ALL_LINGUAS="sv" AM_GLIB_GNU_GETTEXT dnl Use -Wall if we have gcc (added -lcrypt for crypt). changequote(,)dnl if test "x$GCC" = "xyes"; then case " $CFLAGS " in *[\ \ ]-Wall[\ \ ]*) ;; *) CFLAGS="$CFLAGS -Wall" ;; esac fi changequote([,])dnl dnl some dynamic defines and corrections for configure options SYSCONFDIR=`eval echo $sysconfdir` AC_SUBST(SYSCONFDIR) LOCALSTATEDIR=`eval echo $localstatedir` AC_SUBST(LOCALSTATEDIR) SBINDIR=`eval echo $sbindir` AC_SUBST(SBINDIR) test "x$prefix" = xNONE && prefix=$ac_default_prefix test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' dnl Sysconfdir location AC_DEFINE_UNQUOTED(SYSCONFDIR,"`eval echo "${sysconfdir}"`",[sysconfdir]) dnl Localstatedir location. AC_DEFINE_UNQUOTED(LOCALSTATEDIR,"`eval echo "${localstatedir}"`",[localstatedir]) dnl Path to the chroot directory default_chroot_path=`eval echo $localstatedir`"/named" test "x$CHROOT_PATH" = x && CHROOT_PATH=$default_chroot_path AC_DEFINE_UNQUOTED(CHROOT_PATH,"`eval echo "$CHROOT_PATH"`",[Path to the chroot /var/named directory]) AC_MSG_RESULT([Using chroot path: (${CHROOT_PATH})]) dnl Path to rndc.conf default_rndc_conf=`eval echo $sysconfdir`"/rndc.conf" test "x$RNDC_CONF" = x && RNDC_CONF=$default_rndc_conf AC_DEFINE_UNQUOTED(RNDC_CONF,"`eval echo "$RNDC_CONF"`",[Path to rndc.conf]) AC_MSG_RESULT([Using rndc.conf: (${RNDC_CONF})]) dnl Path to resolv.conf default_resolv_conf=`eval echo $sysconfdir`"/resolv.conf" test "x$RESOLV_PATH" = x && RESOLV_PATH=$default_resolv_conf AC_DEFINE_UNQUOTED(RESOLV_PATH,"`eval echo "$RESOLV_PATH"`",[Path to resolv.conf]) AC_MSG_RESULT([Using resolv.conf: (${RESOLV_PATH})]) dnl Path to syslog messages .. or use the chrooted one ? default_syslog_file=`eval echo $localstatedir`"/log/messages" test "x$SYSLOG_PATH" = x && SYSLOG_PATH=$default_syslog_file AC_DEFINE_UNQUOTED(SYSLOG_PATH,"`eval echo "$SYSLOG_PATH"`",[Path to syslog messages]) AC_MSG_RESULT([Using syslog file: (${SYSLOG_PATH})]) dnl Path to the proc filesystem default_proc_path="/proc" test "x$PROC_PATH" = x && PROC_PATH=$default_proc_path AC_DEFINE_UNQUOTED(PROC_PATH,"`eval echo "$PROC_PATH"`",[Path to the proc filesystem]) AC_MSG_RESULT([Using proc filesystem: (${PROC_PATH})]) dnl Path to the settings directory. default_settings_dir=`eval echo $sysconfdir`"/gadmin-bind" test "x$SETTINGS_DIR" = x && SETTINGS_DIR=$default_settings_dir AC_DEFINE_UNQUOTED(SETTINGS_DIR,"`eval echo "$SETTINGS_DIR"`",[Path to settings directory etc/gadmin-bind]) AC_MSG_RESULT([Using settings directory: (${SETTINGS_DIR})]) dnl Path to the named binary default_named_binary="named" test "x$NAMED_BINARY" = x && NAMED_BINARY=$default_named_binary AC_DEFINE_UNQUOTED(NAMED_BINARY,"`eval echo "${NAMED_BINARY}"`",[Path to the named binary]) AC_MSG_RESULT([Using bind binary: (${NAMED_BINARY})]) dnl Path to the rndc binary default_rndc_binary="rndc" test "x$RNDC_BINARY" = x && RNDC_BINARY=$default_rndc_binary AC_DEFINE_UNQUOTED(RNDC_BINARY,"`eval echo "${RNDC_BINARY}"`",[Path to the rndc binary]) AC_MSG_RESULT([Using rndc binary: (${RNDC_BINARY})]) dnl Path to the rndc-confgen binary default_rndc_confgen_binary="rndc-confgen" test "x$RNDC_CONFGEN_BINARY" = x && RNDC_CONFGEN_BINARY=$default_rndc_confgen_binary AC_DEFINE_UNQUOTED(RNDC_CONFGEN_BINARY,"`eval echo "${RNDC_CONFGEN_BINARY}"`",[Path to the rndc-confgen binary]) AC_MSG_RESULT([Using rndc-confgen binary: (${RNDC_CONFGEN_BINARY})]) dnl Path to the sed binary default_sed_binary="sed" test "x$SED_BINARY" = x && SED_BINARY=$default_sed_binary AC_DEFINE_UNQUOTED(SED_BINARY,"`eval echo "${SED_BINARY}"`",[Path to the sed binary]) AC_MSG_RESULT([Using sed binary: (${SED_BINARY})]) dnl Path to the dig binary default_dig_binary="dig" test "x$DIG_BINARY" = x && DIG_BINARY=$default_dig_binary AC_DEFINE_UNQUOTED(DIG_BINARY,"`eval echo "${DIG_BINARY}"`",[Path to the dig binary]) AC_MSG_RESULT([Using dig binary: (${DIG_BINARY})]) dnl The user the server runs as default_named_user="nobody" test "x$NAMED_USER" = x && NAMED_USER=$default_named_user AC_DEFINE_UNQUOTED(NAMED_USER,"`eval echo "${NAMED_USER}"`",[The user which named runs as]) AC_MSG_RESULT([Using bind user: (${NAMED_USER})]) dnl The useradd binary default_useradd_binary="useradd" test "x$USERADD_BINARY" = x && USERADD_BINARY=$default_useradd_binary AC_DEFINE_UNQUOTED(USERADD_BINARY,"`eval echo "${USERADD_BINARY}"`",[The useradd binary]) AC_MSG_RESULT([Using useradd binary: (${USERADD_BINARY})]) dnl The groupadd binary default_groupadd_binary="groupadd" test "x$GROUPADD_BINARY" = x && GROUPADD_BINARY=$default_groupadd_binary AC_DEFINE_UNQUOTED(GROUPADD_BINARY,"`eval echo "${GROUPADD_BINARY}"`",[The groupadd binary]) AC_MSG_RESULT([Using groupadd binary: (${GROUPADD_BINARY})]) dnl Seconds to wait from starting named until the log tab is updated. default_cmd_sleep_log_secs=3 test "x$CMD_SLEEP_LOG_SECS" = x && CMD_SLEEP_LOG_SECS=$default_cmd_sleep_log_secs AC_DEFINE_UNQUOTED(CMD_SLEEP_LOG_SECS,"`eval echo "$CMD_SLEEP_LOG_SECS"`",[Seconds to wait from starting named until the log tab is updated]) AC_MSG_RESULT([Using sleep before log seconds: (${CMD_SLEEP_LOG_SECS})]) dnl Command for starting the server at boot. default_sysinit_start_cmd="none" test "x$SYSINIT_START_CMD" = x && SYSINIT_START_CMD=$default_sysinit_start_cmd AC_DEFINE_UNQUOTED(SYSINIT_START_CMD,"`eval echo "$SYSINIT_START_CMD"`",[Command for starting the server at boot]) AC_MSG_RESULT([Using sysinit start cmd: (${SYSINIT_START_CMD})]) dnl Path to the systems sysinit scripts. dnl The gadmin-bind script is written in activate_button_clicked.c default_sysinit_scripts_dir="/etc/init.d" test "x$SYSINIT_SCRIPTS_DIR" = x && SYSINIT_SCRIPTS_DIR=$default_sysinit_scripts_dir AC_DEFINE_UNQUOTED(SYSINIT_SCRIPTS_DIR,"`eval echo "${SYSINIT_SCRIPTS_DIR}"`",[Path to the sysinit scripts directory]) AC_MSG_RESULT([Using sysinit scripts dir: (${SYSINIT_SCRIPTS_DIR})]) dnl The gadmin-bind script is written in activate_button_clicked.c default_sysinit_script_name="gadmin-bind" test "x$SYSINIT_SCRIPT_NAME" = x && SYSINIT_SCRIPT_NAME=$default_sysinit_script_name AC_DEFINE_UNQUOTED(SYSINIT_SCRIPT_NAME,"`eval echo "${SYSINIT_SCRIPT_NAME}"`",[Name of the sysinit script]) AC_MSG_RESULT([Using sysinit script name: (${SYSINIT_SCRIPT_NAME})]) dnl Command for not starting the server at boot. default_sysinit_stop_cmd="none" test "x$SYSINIT_STOP_CMD" = x && SYSINIT_STOP_CMD=$default_sysinit_stop_cmd AC_DEFINE_UNQUOTED(SYSINIT_STOP_CMD,"`eval echo "$SYSINIT_STOP_CMD"`",[Command for not starting the server at boot]) AC_MSG_RESULT([Using sysinit stop cmd: (${SYSINIT_STOP_CMD})]) dnl Hardcoded paths PASSWD_FILE="/etc/passwd" AC_DEFINE_UNQUOTED(PASSWD_FILE,"`eval echo "${PASSWD_FILE}"`",[Path to passwd]) AC_MSG_RESULT([Using password file: (${PASSWD_FILE})]) SHADOW_FILE="/etc/shadow" AC_DEFINE_UNQUOTED(SHADOW_FILE,"`eval echo "${SHADOW_FILE}"`",[Path to shadow]) AC_MSG_RESULT([Using shadow file: (${SHADOW_FILE})]) GROUP_FILE="/etc/group" AC_DEFINE_UNQUOTED(GROUP_FILE,"`eval echo "${GROUP_FILE}"`",[Path to group]) AC_MSG_RESULT([Using group file: (${GROUP_FILE})]) GSHADOW_FILE="/etc/gshadow" AC_DEFINE_UNQUOTED(GSHADOW_FILE,"`eval echo "${GSHADOW_FILE}"`",[Path to gshadow]) AC_MSG_RESULT([Using gshadow file: (${GSHADOW_FILE})]) AC_OUTPUT([ Makefile src/Makefile po/Makefile.in ]) gadmin-bind-0.2.5/autogen.sh0000755000000000000000000000770710360304717014402 0ustar rootroot#!/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/stable/sources/intltool/" 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 -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_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 gadmin-bind-0.2.5/pixmaps/0000755000076400007640000000000010750422120014323 5ustar bomanbomangadmin-bind-0.2.5/pixmaps/gadmin-bind.png0000644000000000000000000004530510367373143016743 0ustar rootroot‰PNG  IHDRúúˆìZ= pHYs\F\F”CA-iCCPPhotoshop ICC profilexÚc``2ptqre``ÈÍ+) rwRˆˆŒR`?ÏÀÆÀ̉ÉÅŽ> v^~^**`d`øv D20\Ö™Å@àJ.(*Ò€Ø(%µ8h¤]^Rgœd‹$eƒÙ@ì¢ g ûÍ—a_±“ ì' vÐ@öút0›‰l„-b—¤V€ìepÎ/¨,ÊLÏ(Q0´´´TpLÉOJU®,.IÍ-VðÌKÎ/*È/J,IMª…¸ ! A!¦Ôh¡É@eŠës 8|ÅÎ Ä ¹´¨ LÆ„ù3æH00ø/e``ùƒ3ée`X ÃÀÀ?!¦fÈÀ  ÏÀ°o³Oþ£“ŽÝgAMA±žaLA÷ cHRMz%€ƒùÿ€èRX:—o×ZIIDATxÚbüÿÿ?Ã(£`x€b ‚Q0 †? ÑŒ> FÁ4šÑGÁ( €F3ú(#ÐhF£`€Íè£`Œ@£}Œ‚h4£‚Q0@fôQ0 F ÑŒ> FÁ4šÑGÁ( €F3ú(#ÐhF£`€Íè£`Œ@£}Œ‚ˆ› ##ãhÈÁúgGÿÿýÿá÷ÿ? €ô¯¿þîßT??qóë߆o2´hƳ¥þ#áPå#2ò@gN#¶ƒ'FbFßôüÄôtðÁ éß_pbÑáif –Œ*€aýëŸ`6, ÿÆYŸn:7ˆ Å#.ãƒò8@ØŒ¾ãåpm ÊÌŒ@¢ÿýÿÏàÿ¡‰è0¡ügò?à„4šÑµ°~3öïÿÁqôšááÁ_°f&fp¦SõsFTÆåq€Q}׫³(¾eäàÌI L eæ_àŒ ©)@øÇß_àÄô÷ÿhF\ý$¡yŸÀXfbdb`bX|Ø€ñ‹GTû¯4­âJÿAÊøÃ.Ӄ €†}Fßûú˜aMqHíýÜehP¤öí¾Á ýˆ¿üùÆðéÏw†¿¿ù?€ò¿À4£>J¯¬ŒÌ ìL¬ Ìl Ll Ü,`ššáY€ò xÚÀµÿ_`¶~ÍØhÞ ¤~Cñh†ÿ?2<(ýаÍè  ŽìQP™ëÏý‚6ñ>3óçßßÀôûß_Þýú fƒ2÷g`"øò÷;<ƒƒ›íÐBb ²Œ„,ÀÌÌÊÄÎè\Ìì |,\ ¼`Ì äs0ð3>(³#·æ@w?¡–֛׋©ŸH™~ÈgxßhXetäÌœÁA™T’ƒšjÿ|gèw¿?3¼øñžáͯOÀŒý…áPü P~4SßŒÏ Î𜠜@1VFÈ„Ó?p>F¤w&ðx ¸ÖòH5ümÖƒò@ ‹Œ~àÍ%pó6ˆê§ý΀šÝ€5ô[`†~ñó=0s¿cxùó8£ƒjñà{4c„ŒÏmÚƒjypÆÖòœL‚€X(€29(íƒÆj`Ý5P—î˜]ÿnÖƒò@ éŒÊàȃ2 Ì «½AMoPæ~ÌØÏ~¼ã׿>ŽfîÑLÎôšžƒŸ•‹A•—˜ñ9Ô € Ôšö ŒêÇŸs˜* ÔþÚ¬ÿ…–á}F !›Ñ‘39(Â2/hpTSƒšã Œýôû†ç?ßùŸ}ïfîQ€‘áAMzV`¦ç×ö ½ßÐJ”É‚JAZí§í'ƒ2ü7h¦ÿÍ€˜¢û?˜3:@ ¹ŒŽžÁA}jP¬­ÍðèÛ«ÑÚ{PÔ¬5åA#ölL,ðt^SžŽý ..:N—J}g@ Ü Úæ<(ÐÉèÈü?tj Ô¼eèGÀ ~÷ës†ûß^ûßïGkïQ@q¦çba6ç¹áÓt ñ¶Üö/dmÅuçÙŠ@á¯ÐÚ}Ð6çAù €†DFGÎä ’ïÀæÔû_ŸžüxÎàw¿>Öâï€ÍöO£|P%óAGìA™Ô‡ÍɃRÖwpßý8úó7çêæ<(РÎèØšé A6ÐÈ9¨öerPmþê×píj¢fðQ@í> s™ E.¾½d¸ýõ)ý¯/F›é£`ÐÕ>üþÂðé70oÿúËð#d›PË'µ;Ý3:@ šŒÚYÆ]Šêm´C¡v±Aé¼gâ׆ÿÀŒÎðïÃÐíF@å 4÷k 2;(РÈè°í£ ·€9@Sf ~ø/GkñQ0èkwvfV6FðöfКŽï~N¼«û¸ÕH½â ©8ºgvP¾ Ïè L¢Aµ4hÚâ9°©~ëˆkŸ1<üöj´C"Ã2; #¤f‡kjÒƒÀŸ V@ê ´v§{fåq€ÐŒÛ+[üZÑvíË#†«Ÿ2<üþ ¼]t´C-³³213030O&jª¢@éø£÷:5hͤ£Ëˆ<(ЀdtØ €J=ОðÑL> †KfƃÖσhž45 ¤ûÿý7ðíšHÍxºŒÈƒò8@Ñý¸çí/Oƒþù]óá׆ß_2\út4“‚! «äþçÕ1èÐA uó°5óÿÿüc`Ÿí|Èb~ æb6 ff@ÞO@tÍèžûÿº9´¸tįÏ.|¼ÇpùóƒÑL> †Ef¥mØéDàƒ) Ùì/0MÿþËÀÖcs šÙè•Ùˆ…ž­P-ž#fdÐa÷¾=g¸úùáèÈú(V™”†ÿAO5åá½cFä¼, ÍŒp­ˆi©žˆn}tÐe°>9(“ßfòKÀšüÎ×ç£#ë£`X÷ÛA'Ò‚+0`ýÿ—ßÀÞ9þ, ù•½`@ŒÈƒé`[^©ÚG ºdôMσ³0¨„-gÍ‘_ütáÆç' o~}­ÅGÁ°ÎìLŒÐ{þÓø?Ìþó/(2üÌ:à TöšÙAƒt …5¨Y«ƒò8@ѼÊä0Ë@ÛKA+Ünûå 9ò÷¿?fòQ0ì›òà–*0‰³0130r²20ò»äܬ ¬Ì ìÓ7•‰Bûë ‹%ØiÑ_ šÖè Á7&¨{AO¼a¸üé°_þ¼¼´ó ¶¨`Æè :ЀÃÿßÀ–Ô¿Rø÷_4°2zý0=±S0/°10ó3 ° ÌL4»¦ÄÙŒà“gaçËûùáÿg`Íþ XÑÓÕ¯üƒŽÐfü;Èúxª-ªåq€¢YF_ýôÐðV> ÕÚ -¥ƒzž=cƒ"à 0¬?þbøÿá'Ãÿw? ìo¿!™¨n´!B÷v08“ƒ28#°F`g`„b`-ÉÈ ãdƒ,ã£/ªíÊüñõ$mšòßÿ0üª>n Tú’Ê+è@y €h5êΚVõL~ÿÿ ì‡f¸ùåÉàËäÈ™T[KXpÀ¿ÿÁðÿå7~óR“‚A×àfFHfbQN0þ/Äãa… ƒ ÃæÞþþ7ÌA5<Øm¬HSo â ˆQwä3è(‰ šÔè«€µ9#dý:è€ÆÛ_ž2\øt(29,ƒƒšá_€nùø’©Ÿ|aøÿô $s‚!Ù¬gvI. æf`Ò‚ÀLÏÍ2h2<úHü¿ÏÀJT±+P…ò«éT PÙs ~Å@¥‘xP ªgtP&‡þùïw†{ƒi„=ƒ¿ö“ž}eøÿè3ÿûŸ€â£÷ª ›V>(“KsC2<(ó¢ 2…iE2›ð nãïö3T‰åE€¢jÓ}Ù“ýðS@«ƒž–v\üîGH'ü»ôf?–fÕôÖä( _žaÒqÇå 0žŸ…döA”á!#ñëºÁîàba`üÁÂðÿ×?PŸ¤vÿÛ/ÔÛaÈnÂ5ktÆ¥÷ý•T ¾È›ŸÁ«Þ.}z0p#ìfp,vÿÖ_¤Àÿ;šÑtxÜS5Ü@3Xz"¾ª@£ôÀž TÃKó00Šq10ð³10r²€t XíÎÍgÿ@cDŸ~Aju ¬~5ŸŠJ=6ãßAçÈjƒò8@Q-£/~¼>•:icÀûå «@l1¼ûÉðÔ÷eðïIÉÜ‘0¬dý„‘ïÔÍè“Ñ™ „Ya˜áÃ0ƒFæA™]†ÒÕî7`GD>šÙaýu²šð <@TiºÏy¸ã?hÕ¨€M€jð›_Ÿ€›ìtÏäȵ8¨”|ñ \{ÿ¿ö2?ƒÃšG øþ‰„ab‘jõQ@ËälP ZpÂŒÏÙ@š˜ácàI”¾þf`ÒŒ20ÉòÉœ©¹¨Ýñ5áÍ_QÄyñ¿(iÂ52:#htäÖ?ÿ‚/6¼÷íÅÀôËÑkñ‡ŸÀ5øÿ‡Ÿ‰Íà°šú'4p¿CéÐÿŽ$þ)ðÿ2Py}ò( ®õ Íä,ÐLΉ†y€ñ;Hs3|XÇ_`j|ú¼â߯¿ LÀ ñdJn€šò 4#°EñغøšffrF`:f­4™¬Õ£ÒÝ/¤Ö%I™ €(nºO»¿º0†¼û ´YåüÇ»àití—Ã29¨ÙóêÃ`-þïâp)NB‡eâ¯PüJƒ2ù¤ Ž|«æh>xjtpmËä@Ì Å|PšžáAéÔtõÙey˜d€ÊAuÌtÏìMø·?þ¿­œƒô×÷Ÿ§¨ ÊãÄB±¡ýfè·ÀÔlñã=÷¿?ÀóètÏäϾ2ü»õžáßù×°E¤dð/ÐÌý Š?Bž"5¡°5ÛGû胣ΆV³Ã29èÐZr~P ÌìÙàdóö,'0üc‚f6ÐBºfvŒ&<¨°ac‚,÷…2Iq €(ªÑ§Þß >¢|Ô-°/~|ˆÄ]ð9ì°»©èžÉ¯¾×ä8jñ}H}ðßH5ô¤ŒýJ„Š}Ck:ýaÀ>å1šÑ&£Ã2;´ ÏŠ”ṡ5;4£Ã° ¨fø,ðˆ<¨Ù.ÍÍÀ$ÇËÀ(Á YZ;5;|´õÕw-¤ùþ‡á÷¬+dƒò8@QR£3ÂFÙAq =æ ysÐ]ät뗙ɑjñ¿H5ø7hí Â?AÅ¿!õÅ#õÇaëÿ!¹d \f‡õבúì¬ÐÌð ­„Æ­0]ô0ˆ–€÷‡›ÊàZjÈ€ÔìÿaKc™ÁsàM;@7ý‡Ì­‹@Ó#Y—9Ù5út`ß´Œ¤´ÇüÆçÇàpt«Í‰ÏäȵøO¤þöG¤ þÊþM_á~cpÍØC£–‡M·!÷Ûù‘juPæf2¯eä`Ì­‹r‚ûëY³ƒr<,]ƒf`µúŸ¥7S€²«æ¾@Óô?B5:@‘U£O¼»þ?ä4ЪÑß ¯~_aL·Úœ´LŽ\‹Ãšè LýXë_šé¿ù÷£gê@Þ ‚>+èaw£}ûwêe³¥Dxþªi kvÐ0<#¨6Íñs@kuˆŒ Zkó'boú rž`]™ôzuìÇ?£šAÍvÐ-4€#=“ÿ‚ÊhÆ~Äø”†õ{^C3=r Ž´ í ë®ýDꪽ‡Æõsätð÷ø‹bð.Å/Ðffô·¿è0gN^&ÿ ­­AÍóWPüšqM¬ÿ9Zƒˆ¶ yá˜þ{ìy³µä†oÀ|Z¥ªUÙ˜µ+h;)#xK,½n1Ù=Xä0ÒW‡ (~d@½Àoš ’kô®Û«ÁU6¨áº&tÛ)èÞrºL§= Z óÿ °Ä½ó”L+ÁŸ Õà¯PïÄ­ÁGF «ù måÒÆ hKïéߣÏó`‹®À+é@5:蜂_ÿè^ü3‚f@ÍwpÍ+@Ì €hØÑS+l€"5£Ã‹3Ð ïµøsð-§tªÍAÛHA§¼€¶•^~KJ&Àxe¿f@œâ1à÷W‚Éð°éÕÏÐÖÞKxf?ø4¼tÊh ì-t³ ¨iªUé•J˜¡Ëb™Ú„g T®b@¬ àFj¾ãÍËDRFÕæ°¹>PÆ~÷û xÉëZ²ÃšìŸ1ü{ü’É¿ÿ!¥&‡eò—ÐHý äߣ|Ä×î°AZ”ÚýïîG¹í/8ÝkwÐÒjÐz:H˜ÁÁ'åpBÏÈcf„Õê°Õ~œÐŒŽ÷@I€"%£3Bæ, fî“erÐN5º5ÙAËMvMB&G¯ÅaýšÑZ|üGK7(™ýÏú»¹àäjI‚*P ÿ›ŽMxÝ r „Ù #ð̾Š5ÐLãBj¾ãÌèDô`\óÍeÿ@#í ¾9¨Ù:-tà#ÍGÚÑ›ìhÛLIÌär?õ(2™k­ nM‚2ú—ß Œ þ24ÃÑ€úå ƒ2Ð@—vÃÖòsCkõoP?`-†ˆØtwùO`s´´õô½VÁjs` ƒN  ÀaSÔßúˆ6¸2šÉGE5ûŸ×CÁ² þùWÈñÌà©6ú¥"ð tN¼wž–Ñ‘›ïxåˆè¦û?ðÂ{èÜ90£ƒ29Ýjó?þ=øÄðÿù7ôÚ|/R?ëb íùh&ÔÊì¿g] ‡MoN Àÿ£c2 Êûè°9FPóÝU®œ±;6úŽsP €ˆjº]žùt|óе°¿>üþBŸ‘vXmÝvŠ£Éþi0e4“j6ãkçµ(h¯8#¨fÿù28ÆÄ ÑAëV<tNtž=Ðÿ ƒÓ ˆÝy<ÐZý+Ô½cODLÎ꓃–º‚29hî4Úþ™žµùÃÏàcvp4Ù¿Akó7 ˆ1°Ó3G3ù( $³ƒ¦£w¿{Îy@N.‚ÜÚC×Z´N‡¾R޶…±;6Í»~QM÷Ðû£@ƒq ÑvЖTšO©!׿h'Ä 5ÙAµù{hæ~ m¾DœÍ䣀ÜÌŽ¼°æ-¸ù˜ûþ¶Wœ>©‹•±x†r ³­T!4££¾cäk€"&£3î‹aЮ6ЀÜW`f§kmþomþ‘±Aå-êB˜ÑL> ¨‘ÙÁ»·¶×â Ú4ÝKÏZTƒƒ–ã‚ãÀã ûQkuN¤Z¥C@3zÖÅ)`‹d~ÿû Ìäß¾ü¥q³pm޼ªé=R&‡­ÿÍ䣀Z™uQ (/ü‡œë®Ñ©Í8®æ;xNv¯(çBîpB39l@kó €etFÐH;¬Ùþãß/`³ýí›í yÂ/¿þöãâ®Íaýb«)òb˜ÑL> ¨‘ÑQÒۯƓÖ` pý?¸RU„ŒtØÃ î§ó°‚§ÚÀ+æØÀù™Úlçb@,‡Åh¾Át¸l5Üoð<úOðh;-ƒö?è¨æw?Á;ÔpÔæÈ}ówÐL>º¬uУ¿þÜŒ†^Î =–™>€²$¾£ X³3™‰g@39¬éŽu•@Êèôð+d zFG+]?!ÕæGû壀ƙ^ÁüªýtèÖYø–YȬV‡õÑ1־ˠëŸÿ…£ƒ¹ž½6G>È}_î(4mÂ3r"V©±2²0@®"ûËð–^@ƒ¼ ÷?òI±¨Ç\Ãjt”’ €˜_ÿü¸Ndß|´É> ¤V‡¯uÿ÷œ?Àg³30Ñܰùtðe QxÈu6hFç`@¬cFÎßÄ4¨úç )𥠘/ ;ÕóÓhm>  Vÿñ3e¯.,£ƒ*Cð:FÚgtp?±©´ZIO$ ©ù[8ƒÒO &ü FpßäCÐ5Èt™?ÿõœÉ‘ïI6Û÷0 ¦93úg¤L>Z›zÖêß }e&pgöÑéÖOgf[Ð`àOø%AìЦ;¶~:@áì£ÇŸëùóûÿð4¨iÚÀBùsðB„Ï—!–$šíÈ—+ŒÖæ£`@úêŒà1h“Y }uš÷ÓY˜qˆ;xûé„+£3‚26;+°”b7ÛAkÛé1þ´ ð+ÎŒ«ÑaGõê¾ù7—ÀÇbƒº< ðíø÷ä–G p1øèûk†ëŸ1\}u—áGØvvÌqÁ [Dó æÚÿPªÑA3T¿þÓ¶{ 9‡ú?úÔ¾~ú_€ÂY£ƒßÁy:G‡þ9x tŠÇ¼ý4³#ßf:èÅúgGÿƒ HPAÉÄ ñøÏ8r/] ÚÞ|ëËp&ÿ{|¸'/êUÕ°Ë2kf‡Í«ÿþ¾]‘c³ï}P… &<8£3ü¡CQó²L3£s¢etp› €pet&Ð š:€Œºÿ¦ù‘Qà8P&ǬÑÿ 5Ýa59ìxæÁ8oÎ:ï68ó|4öðÉ<GðíÊ cÇ@7ù\záè¾ú µNà aG.Ã.Ï€Åù`ðc£yY8¸™9¸˜ÙÁ9+Ð Ò8£ÿG,ØAä{çX‘šîàŒ@8›î ]j æ#貆àÚœægÃýœÍõÿââ—Þìd@ܶò-“ÿa¤÷’ƒšê ŒþzXÇËŸÞÿþB¿f!xÌäg?܆œÇÌè ÃD€@šqÑå´¾ð`¾Žä¶?œÀ  4Cª ßÏ‚Ôlgt€Â™ÑAsè E2 Ó,@‰r+οÿÑ›#È¥',£ÃÝÿ=X3yÝõEÿ@µ(ƒƒB Ô/½óå)¸Ù:’3úÝoÏ>Ÿ¾Òúß°$EÈë[¤ »Fi0ÊÝÉÉÌÆÀÁÌ ìž±BªUzL±áÏèȆˆOwDÀ¢äQ¹6tÍvÐe fú'FFð±[ §ë_ƒýÁ“ÿŸeø: ´´1Z ªÑa'~ÂîEc°4HbO6öÂÄÀ8Ð1 ËÔ°æ:J‰@ƒ+£ÃF¤QOØüË€zÎ/¤¾ù ­!ë@µ7¨ ºmö½î‹z@)“ÃÖj3 ŒJ{ÿÀ­^`rç2FÆAÃÄ2(³ 3J€Ášr°QwäŒ>èÂt¾øæx`FíöÕ?ÓãòÉ¡ x¡}täC˜‡@FgvP÷ À‹f ëHÁµûàJš4è2:x_?êF~Ø Ì/$ «Í[Šä?ÀȦÛùzCÀK@ÎäC¢'‚­¢a5åÁ­¹Á•шiè_$ü‰=(s¬ùšF£Ûùz£` 3;Rfb×ìLƒ°1@LC$@ÿ¡eøÁzµ1dÔŒûEýû£`@Á·Eâ‘w6p¼ƒG1 ¾F @± °DÎÐÿð5›AÿüôP!Ðüùzìßž6EØøÁœï賋D@,£qEÍV;#xk/(cƒ–¤ÇþýQ0 ÀíXÕ+Èžfð HPüÆí 4šÑ©`ëCNä¡ùþ€Q0à}tØH;ˆûXÈÿ„ÃGÄ4WÔ׿ýÄ@kô/¾Ž¶”ŒÎËæC(ãE€\5:hZ ycýj¶ÿÝCÇøé uî å®£-K€V>þ…àá@¾`GIý¥×ž2@ ®ŒÊä¬ÐC÷†^}t5>€toèp‘aA[‘A-9P!ÙÀ483:@ ®Å =ÎtÂ%ãЉíÑÕpDPMÊä ;ˆOÙÇšJƒuÙþ›ìÿþ Ê €Wl²ƒŽÑ_úÎÉ9mfDöèj8b2:t ò·ßÃÊ[œLl-ª AXP÷mb„3£ƒš ŒÐ5>ÿ GåÐ<ǰKE6^`Fçeƒ9r:t5Ü¿ÑÕp¸»è°CE¾ «ŒÎÈËÂ^ ªÍ¿1þ¤}œ“9Ö@8›î f@Û-!G<ÿ¦OíªÑAwK39#ôŽ)&c±pDCž Þ!<ûÑÕpÄØ¡"?QÙ΀XüÛ¤4¤N‡Ÿ…››…ºÆÆÎ's¬ €pÖè &è¯Ì ÿ˜ÿAJ,zÔN >:è`zNèРA¹ð ÎÌ€}cý€V›£«áˆ¬…~CïG=Ðù$ô¥Íƒ¾9”yúðŽ5P‹X»‚ÖNü¦õÁdŽu îý'ÃoFÈš]vÈét9Êtå 7°Î¹LŽñ¸‡ep´Ì>àM7P·|Ì&ô6›ÑÕp8j!PísA½OüRFG>r(œÑÏ:t´[íôUP·í7=P%c¬ €pfôo¿~€3¨„âúÏ¿ræñÝBñÚtgöס—½ƒ26êvF&(ÐŽ<øJ`‹6‡:ºO-„yè'òéA°sþ0 ‘‹2é¾tÓ00Aוýÿð‹$­„û¸ç€-â«<_~çøÎàlPOJ.Z7ßA÷Jý¼³C®†e¶“Ný{èiâ([Œ+g$ïû÷î÷gp):øñʧ ÏŸ>gøÿö;zÍ5€#Œà.ø.mèÔ%#+$\á7‚Ò<£Ck¡ï™`H*‚ PVBþûMŸ• 4 Gн„HaIÌX@±àéUý‡•¹ f(¨ÙZ¸ÿóßoÚ'LØ‘°+b!8¸®œ¨DÁxùÓ}pòí ÿûþ]~ >a°L ‚V‚Â4ƒ!ÈÎÀ(ÎÅÀ(Ê asƒù?]ÊJ<Çx¥CEP»lÀ.,èÌPÆþúç}VB‚ZF 0ļ—àX@áËèÿÿw<½®œgr~`ó˜@}葯†¥7¸üöÿÇ_þßzÉä~ÊTùÿÅ7H&¢ .0lÁá ÝNIÓñØ}zŸ)J-„|Œ7¬VGî£j:íÖl§ÛJHP˘Ñÿü…­ÀÄ;Ö@Lx¢ç/8ƒKcP-d ÇÕ° e°i6`¢Ö<Œ, Ìò9ÐLŽ\«³ à ølò£Ïþ~6h39=PŽÚA>5è7Zÿ|PÆU_[ð6G· L°þùûŸ¸®Ç;Ö@x3úϨ ÿÿCn„€MÐeS=t),°¯¾"–Þ—] ËÀ¸åÚzÖb£??eøwãýÐe2x‰ƒ r" #­ƒvŸÞœÍö?Xç n¶Ãà‘vz5Û‘ûç¨kv#…!hœë-F„«é‹„ßàæxä<,ºôÓ¡¾kuÐ<¨ÏËø÷r? iPŽ™aûÿÝ{d?èSÐqŲ@¬Är@,ÄüPwª½ÿξbäXéé.È/ÈÀÃÂnr‚CѲú ½›ŒZh°vfHùz•8}ší8ûçÑ2ú´ŒÎ8„o­;ØPóÔ¼ûÎü <•Ä…4Ÿ' û茠~¨éÌè,aªVÝ®Êr3 ކ5ßé9Í[¬[¸ƒ<¨ô ©ðT[s¤vF…Ks39'°R€\õ™ñí²¨Æßÿ7?þ¿ý-} ¹÷ÎÛ«þÁÒ?h­Égz5ÛA&°oŽ%a×8ÿD«Ñ‘/«d |ƒqˆ6þÿ½3|Ö£ &}zÀŒà¾9xÝûVH³–ÜÐæ;rfÿ9@ýºÿH%*(ƒ„fþPw ª&§™€:ø2@Ð"Ÿ7??B<ðŸÆµ°ÉþÿjâÄrŸìbŽA}Â/( Ù w«ýO©}§_³T`¾þޝÀD¾¤£Ð ‰øÏÏÄ= ìó]€–øý÷óÀÍwš/ Õ…À¾$x”4ú,pÖ³$hVþYp½šÙ‘kõ¸>Vš‚2ù¨«¿CÇÕÎÀüËÓ{`‚j¡w¿>ƒWóý§a®…Þÿ'P<Íö!qŸL¹·é$ßý¶ƒv)¾ftº4Û±˜»ÑZEß2:J~ ‰ZZü‡ í›ñ™ÿûêti¾C7¹0üdþƒ Ư(µ:4³ƒzŽžk¤‘3ù{hX}†ºg g°›J\`èúkPmê›ÿúÿ‡vç›!×BÄeôÁ|Ÿ¤6gB­ÍA™t™&]šíØ L¢úç @„jˆA å‹þƒoPùÉÂÈÀÎLÇV)+´Vÿ¬ÑýgvÖLÝæßÓ/geù Íå¯PÏþ€ŒþjçohFge@,Ï`Á£Ý £Ä?ý'RP×D´ -X-ô£ÚÀ”xPÖè íO‚´³óÕÏ /¾‡%ÝšíØ L‚ýs BMwpþ3s¿û,§[àkAµ*3#}šïàr”2ÏÇ )Ùþü‡]ÂÊäüÐ&óg¨'Ó©VÿT+ÁØ¿Ðî¤ µ0“¿€mñÕD úäÇpß4i•®…`ÍÍïhýÊA9·øñÞÿ²ëý¸½Ùþ× &@±‘ ÿ€K PæÿÐ%±tk¾CkupTÐÀÆ *MÚ·ŸÉ€føOHžµú_¤å>êÁ’Ñ™ gÙšê~}'Ðç?ÞѶ&Â_ Á2:,qÂú•ÈM÷AÕdg†õ X›Ó- ‰/0BÃð+ZŽ’ˆPFGô¥ #ïÿüaøÉJçæ;#d 8³ÿ†öÕþe`«5›ñ«ùT$´Fÿ†6AZa€wÏáKïû‰Äÿà9óç?ß1<þþØ·üLÓÚG •xÏ¿âj¶ÃFˆ¿B1ò¨û +Ÿç俌 Óƒ~Ñ' iP`1ýHðü0°ù®É*]~@0h¥#}¯ËHš[­Õæ‚NÁÀ Ä Å+œH}ä!t¼$29°ºÿíËïÁ'Ѳ6íR'Îßð%NPÿ‚T º¦û꧇þ3A×CÂð-}Â&@1aÝ_x ÜZþë/Ã?MÇ(ùÎÌÙu%ÀÎÀÄ 9v¶>Û©@iAhfÄæ¶FrFg%PX“4g~˜@~{Åðþ7íksPâ|ò²¾K¥”Ñ‘3ù j¶kòÿãÙþ3|ÿ÷ \PÞþúŒöaH£ €ˆ©ÑaÍ÷_`‹AËð>ÿ† üù‹Úˆ¥e;ù?äÀ&&ð”8£ƒÏ–ãbe`Ÿá´¨D:8Êìì ´~0€uÏŽüƒÍ™Óµ¹ Kœ¯¾1üøi(7Ûa·¯€Z®ïáöðÛKp&§K“&@;6øWÉMP³œÙAGÙÀvCÑÀ®»exЉ.Œœ¬m¬ ~;3û|—uÐ̪ٹGjfßôüÄØÆ£ïôln"%Î?cÛJ9dšíëŸ*ªÍA«Þ@…$¨EôX`Ò¼ÉN£ €˜ˆŒBDó´u´,öèÄ¿…4 tì«CvЖrrqqûëàæ<0³/tÝí³ƒjvÐb¶‘”Ù·¼8 ïS‚š›ÏèÙÜDIœŸÑç^h‚%Î/Pü1Jüo°„!l”tÈ'(“ßüú†¥kmNÍ €ˆ­ÑaÍ÷Ÿ¿êNèƒ:ʱ 3Ýèxlx†ï?d£ h›%?+7 'øø)ÐFöÅnûÊD ™{¤döí/Oÿg‚Öä?þþfxýóý¯ÏéÓÜDOœØwªýÂ’8 ¦fûÎWg­!z”4.0ˆ”Õ[ˆ~ô@ ðI”  OÇZ|# há01ÿü!èLm6ÐÌàCØ—¸f€l ™}ÇË3ÿ!…àðj7Њ­[_Ÿ2Ü&Rº47 'Näè#/rðfûÞ×þ3A“h™0] J:˜ÄD‚`M†ï¿ZN›37¨6ÿ1µ:ÌÎÈÌì+<ŽŽ„̾ X ÁnŠõÉŸûä×¾ Lšo5ÝAò.–=-ÝeÕ&Å€zøÁ¿Á’á‘è?èÝn c žûã·¿< ƒ¦Þýþž;¯¤G&‡%ÎÇ_@gÛÓ¢©I­~8#´²M=‚–³‚GÕ¾gxðí%8ƒHSW«û‘ØÈá:Éè4,I*0ˆÜŒŽêÐ@´fpØB·–‚÷±Ó9³ƒ" |Ãå¿¿À~úo~ 4H:Ø’|–9ÔóLÌ þ'žæOכ׋#Ü€fxP?vÞ:(ÂjqÐeÁ ôÙÀÕBè‰ó@„­Í÷B)ai|uè¦[`Ajªƒö’ß¶„îô †®…$é­¢?HáøšÑßCköo¤˜ÄB‰3áµú”‹–,ÉÚÇÁG=ýF}m)eC¹€n™Ôûór-(#€0?+¸Fg7ç™Á§ä@šõŒ Ñg;_‚Nø¹|Q±ö h–v¿:¹QÚÍ%»¿PwƒŽ}zùã=Ã#`”H}=0µzâD»¼‚šMMRÁžWçáµ7ò`ÛÏ¿ÀëÕ_ÿü8ðáG^«vº0HÑ[hFÿLj @”dt”ZýÏÜ«,‰Z;B ¦;ø ÐÙìÌŒÌHÿñ.äÚýô æeábàaægtÐ<4øb `&‡]œr¾ÿ¨æ©ú9|Hžª™¶¢ ¶>²qç/Ø ¿ÁÍtÈ„ „ùðûK†Çß߀W½}Ÿ÷FçZˆ¼&;ÙMMB`ÛËÓÿA­PØ×¦ƒ t>ç?¡3o5ö³ïoÁ3~èáÚýùì+Ãÿ«oñµŠÃñ-4,aµ9Ig$ ¥å;JÓä`- ¾Ý… ’Ùÿip†§s£v–Þ ‘jÐ*§ÌßÀµ»à?^~`¦çdf‡ÞÆÀDd†b“s.MýÊô°š¶[;…)Óÿ'%ãƒ6L€»6Ð[o`îûäÿß±ýzÂèÁ•@‰OœTkjâ¯ø -´ÿ UýZ{ú8€ÝÐyn µOaÚ¦ 9}38–pü Ç÷?jÁjsô“¤ã͈ҌŽÜ¼øôgñ W–0ÕÝàÕ‚ Ì”ÕîОÞýuBTâ °ò€7ÆiÐ & ¦=èò&X/r3 ltíõ…_¹­Ðh>+°`edÆz¨¦ BZ °£‚á}Gè¶Û?ÀÌ ;YÔ‡|ûû3øðÁA•@aýò7ßÁó¼xçO¤LªÞÛÔDŒ ¿CÎ)DlY­#ø>Ë r²-(ƒƒÂ”ÁAøõ¯àÑuP|ƒjù ?\áx•`«èR«V`’Õý *”QÈËòÞÿYu;˜Ù7€šxàŒ kºPP†÷߀ 4çάåA4?xþ |Ç(ã³2þg€õŸA}{P_ šè`'¹`¤LØ`¬¿ ª‰ÀƒCÚç7´öÙP¹´ÆtMÒ;`f4 ½_~•`ò4a¾ÒÉij"ƒ­/Nýµx@v±áGðUHßà~ zPŽ„Âñò[Ì@ÄÞ*z‡ްUp$o jdtØŽØ 0³G±Dª-ƒgvPíZC:|ÐÓ€/Qeøß!÷[&¶Ÿ¬ð…6 šžXÃ2?73dÑ ;´V†Ÿ€ËIBLX2:H(QÂj{Fpó4õ÷ <J¨ þ7h—(aªÌ«_Jœ?ÿ“8ß" ‘ÕÔ„õÏŽþo(­´þÿ F ÙÐè9¨;óî×`Aù…á߯à.øbŠÁ~øÂñûº¶Šˆ…ZÞ@ŠhPéà .½@Sn ×.ƒØŒ 3ªAG@ ’ÌŽ/Óƒ(Óƒ28´†‡­´e~N&6pÓÔ4gÂÒtg„·ÖþCGþ}o`wÔ<R‰¹_Žv)ŽÄ J˜¯ÑŽÈꛃÎmƒõ¿AÍsP¡xóËSðRß§ÀŒþ<µ8ÃŽ²p„õËßR³U@ÔÊèÈM7Ðp5ûŸ5wü™=å7‚K.`¿¶4ÜÇ„™W¦L¿/ß35 8ãs2±ÃWÜÖÕÃú¸2Hô\Sƒ3ø®±‡Vâ$0h„ž8_CiØÀYMMè¹m ðù Þþ‘áêç‡ —>=Ÿújšÿù?hOÚ&wðíZ8Â2:E­" *z ¹dgö¿Û†2;ɬþ[P¬Ña ËsfÇ—ñ!-¨a °%Nâ`ýò·ÔHœ sÛ@Å hÑÓ€œÛ6pá ¿WPü†3 @LÔöÒÀÈW¯ÿî{>r ´éØd¯é}ñrÂ%øN·ChïÃÈËäß3hôZ½¦Fâp ÷°sÛ&a…%(ƒ¿„†%¥­"8 jgtl¥üë¿Gž¥€q@ÍìC=q¢÷ËßCå+j$Î=àr`ÃñR&…4ÆAQ“ˆ‰ÞDî·}€Fþ˿ǞgŽföa•8¿¢ ¾Áà>“›8· ä—ƒ#a™ü-´¯Nµ%ÃÄB#ï"—T ;À§º3{6³•äTäê¨õÙG39Ê Ñ;´LNö‚Ð)¶`{ê€KŠÛ² CXþBº¨Oáxå-Æ^áø i y”*g -“Rßv0(³ç3ûäÑÌ>d39z „ÜŸ$kAr&.©† ™¥w #µ>çÉAáIïpĈ–¹¿ËËàì;šÙ‡t&ÿMœ/€ø9¥ýòa‘ÉAa:óþ'p‚juz‡#!@,4˜Ç0<³ƒÖÿ1èÒFÐUÈŒ?¸„8A·¥²2ÏiÍðƒ¢™ Kœ¯¡‰óR’¬A£!›É±…áÍ÷X—µÒ#‰ÄøË•¨ŒÔÝRÊmºƒúé _ ½Þ SY%€XŠÉ\b2#h-<0cƒ/Nãb`”bNÈúxбT£µû`hfÂ'¨öyM ÈMM’ú“ -º°ƒ!†\&'2 éŽD9ÆDŒN8³‰N¯‡mzÝ¥&ÎÅÀ$æÁµûhf ÍLª%NÐ¥°Uƒv=íÃp?´W ˜þ†Ô'A¯LËèD¯ŒN8³ë‰€ûìà /ÈÎäŒRÜ ŒÒÀ /<Ú”ÍLªdrÐQOÈç· ‰LN^Âï+ÄÒ'A¯LËèDÏŒN|fÐm+"š„G›òCº™ :¨v=húçßß&GÎà_€îzû¾U}c –0D=”2…ö–°å­4Ïä°Œ@ôÎè3;ˆføjxíªÍ%¹!ývP-⃮I­Ý‰¯^|o¦&BÐJº73a·Ê ø¥”’O¿0ü¿ûë %Ž0„Ývúž±¨6…›+§y&‡et€ˆŒN(³K@3{-\1¨Ùk΃2=ˆæò¹G›óDÕ@Àf&úÅôjf‚Ž€¥1ЕÐSt@G-èyêd’ÿ¯½Ãv3¾0„/Gð«”¾Ó#“Ã2:@ TFÇ•ÙA÷š‹±$‹3{ŠГ¢œ ŒÐÚÄäÍðØ28hï3¨BÛI¯f&ò™ô ³ðÅÕGT.$‰Cä=ØɤËuÑ <@™Ñ±ev~ †ÖîâPZ˜á‹Qtœ„7é¹Gn†'?ƒÓ¬™9(/˜0|ƒ–ÉÑ/D¤ÛuT <@ÑÑ3;è>4>¤¦<3{†NFH&ižÌÄIëf&ÊÕQÿ û÷AGd ø¥´Éà°•Ÿ°ËÏXÂÖ‚i? {‚ò8@ †ŒŽœÙAV€Àò@3»4£‹Ai!`†Ï±ž² Ž\¡ß¤BQ3ýn3Ѐè°Ða÷¿½—& ‡h ´“òóoH>õÃ?2üü…”B¶¼6¦ñK-> Mul €KF‡evÐ’wв\vhSž)³‹Bû𠦽0çb˜ºàQÚ‡­°áÏÉ3ð°20²³€ „!™é©“Á‘k ï ˜¾&µ™‰œÁ‘çÆA'±‚26(ƒƒ2ú ¸49ü>þ_Qü´Uû½îÄ’ß 55ò-*°®Î€6Õ±et€L–Ùaµ;;´)Ï‹4P'ŒœÙArÀ Ÿ„Õ Ðœ;¨/ƉXaZbË3D¦æ(¯}Ð38,š™È™ü-)ÍLô Ž|.ý ºÛ Gøýü™á0ƒÃ¯#¯„Õâï27ì ÇmªcËè4Ø2:¾¦<¬v‚fvA(‰ó3|V“˜¡sñ æ<ÃÞ€2=¨æçò9™tQ$%'ìýý9òtÎ=0sÿ%P`¢Ÿ™GB¤0ƒÃú_28¼Úõê,ø¬&Ð ³ 4€¸Ùõ/ø4Ö7ÐÌ š&»öùÃã/¯ —-~û i‘ü£aÚF?PÁøæ;3üúGiøýâ_Ð ‹ÜLÿDj!9è†{€y €†JFG®Ý™ µ;¬†çÄ“áù âÜÐ E²­ Ì¼c¢,L@gÚƒ/±øK~: £öÁ–Á¿Ãçö—§¿¡æ%ÈÔØèztP?tÔò­/OμÃðóÁ{†>A´ÞÿתàyþÑ>mÓ8ü~!’ßk >[H2 â£MAy €†RF'7ÃóA17´À UÏÌøƒÙ£h vbr þ‹@íOœ«ŸziýB®þºîï/pMýzÍ0è׻ߞƒÔÀË?ï}Óà@"±†@Â27lü'Z+è Raù ~Ÿ°’ƒµ™Ž+£ÐPÌè¤dx>h¦çCjÊó@3='t Ú%`f|ßAš0aó·28lÙ%¼öI>ß?C•|]3€Ì@™22lzÿú¾VÜŸþò2šÿê;dT4>ðüY݈A\0þCkžÿÆ’Áa…äg´Lý*÷u¨fpäŒ@C9£“ṡ˜-óó"ÕðÐÌΆ¤Ÿ.Ÿ„„ù )sÃ)¬‰  þıÎ{x0êÝHÿ4zšŽûù1põå7ÃpxZ<°Zû/ZÿûZÿ‚~Ÿ‘2÷7¤Ìýs¨fpäŒ@Ã!£ãËðìH™ž K¦çFjÊs@Õ³ãÈø,P³QN´¥p9sÿÅ“0¢%¾oHµÍW¤!ä‘_ðñÚHnfa@Ì^°¡ù•-8‘0;’8+R¸0C15‚á÷­pDÇè}pX&ÿŠDGAÿÖ’WŒ€ò8@ §ŒŽ-ó ezäŒÞgçBKìØ2>zf§4¡b«½±%ÌïH}Dt S»R—êN$·³"¹Ÿ I¹5ÃæW¤°cC*(˜Ñü?P‰=üÐ[=ÈìŸHá…\H~C ¿ŸHüRë€aˆß!ÊãÄÂ0üÀ$ ëÛ2#Õ„ìh ›­Ö—ñÑk2J݉ÜÿÆ—0¿!%JäD Kܰéf¤Œ Û/ó'+RÁ‡Þbae@L"Ó¼ËZ-jÆ3røý@ÂßÑ2/r—çRøþD ¿aQ{ã43:Z)ü­Ôÿ‰Ô„eE«µØðd|N,5%¹©ŽÜDÇ•0‘§s~#5Uaæ0"DÿñÔ€°Œñ-\Xjkf´Œ=˜28®ðCnÝüÀRþFbÿB ˿éöÆh8gt|µ<R†‡aµr­ÏŠÔ|§VÓýZâÕ0£%Ìÿh‰Ö]A¾×ë?”͆Ö_gFËÔŒX2öPˆSäðû‰ÖlÿÅ€:[ñmnØgnd@#%£c«å‘iX"Ç—ñY‘j=FÊÖÉ1 ÿAj~S’0‘khF¨ô ÙíC)c~¿ÑZ<Pg2þ¤Ì h¤etJ2>¶(jÕJÑ23¹ –ÑaìßHµöp?ôðÃÕâÑ €†ã¨;UÃ-ãS»ü†)M˜´vï`î’fl\ÌãÄ2 $Õø£îC ®`Œ‚Q0|@1Á(ÃÐhF£`€Íè£`Œ@£}Œ‚h4£‚Q0@fôQ0 F ÑŒ> FÁ4šÑGÁ( €F3ú(#ÐhF£`€Íè£`Œ@£}Œ‚h4£‚Q0@fôQ0 F Ñýè8ç?È•NHÂ`ø»Ï¦£¡4 †  ÆÑ½çðŒ ÊÔ P¬O„н\€x0Ó ÁZ{2y‘q¯Èœ Ä8@{qE´#6÷“ªžD{Íp ÑøÀChLr¸Œ@£MwHâ*€&”~"39€ît‹âý Ì Ä tpª>´ð‡ºõ>ÐÞ ÐBŠ^` ŒBy,ኃÑÔ Ä4Â3¸´†í‡f\r(‘] „•ªÅè˜Ùõv5 èÅÉy [F³9@1äLmæÙSÉH~h†ˆÌªéÐѾ:µ`¨æfv€bá™\ŸÊFƒ2û:7¥aÀ:€HÀ?H›ðø2{ÀHÎè4RGÝÈä¡j6 |h•ÞzYÌì Ðn6Ð0„6½Œ@#)£ã뇆¦&h>Þ‘„ªcÀS›6й †M/ d¦…a hÄôÑAÍM`&Ìý‘sù &:ød}dº­çFZ0­…1Às º# ÐHkºã-&” /à©e@¡µOÉOç *X>â[03úÑØt ‘6êª1±-˜e\5*t~«ÜÖZ Ì^§…B—þ:t(³ÏÇ®×x íh¤Õèøj˜†¡äóætvˆ[g«ð•ÇS@Ž8@#*£Cûf¸¤=™Y”˜ñíˆ>è`šRk Ðq €F÷££‚zèÁÄd4ÐÁ’ š,2¹нyJ`{(½ÂE:P‰k=û‘z @¸•qБ⠸O‡É‡Ö– Œ„±IÚ,L`À>ÒL P ²¿OÈî‡ôZ‹L`ÀÔ%ÀϬ lG¾pùÈ0BO—€©K` Í[|ç¾—@‡ Â.M%&}º)žJ…Ç‚,Dasëi`|?¥-¹‘|©@È•qÐZÚ÷´2€]š@J&ÿ8@î"tÅÚ@†-¨é¼qE9¨É>a€±K`¡Í[Pf¿He£Aƒ}pÃGü'èÐYˆÒ+“'0Œp@#z­;Rfo¤RÝKæ0MDXára„ëƒAÐ-Œ Íä@#~›*´ßAO` m0 ”˜`-Ò;“Z"H¼ä‘Žá:zü²þh˜ < ÑÛT±èÎ+ÜkàÁç»ÞØ9 †  ÑŒ> FÁ4º}Œ‚h4£‚Q0@fôQ0 F ÑŒ> FÁ4šÑGÁ( €F3ú(#ÐhF£`€Íè£`Œ@£}Œ‚h4£‚Q0@fôQ0 F ÑŒ> FÁ4šÑGÁ( €F3ú(#ÐhF£`€Íè£`Œ@£}Œ‚h4£‚Q0@fôQ0 F ÑŒ> FÁ4šÑGÁ( €F3ú(#¦À ˺®‹?IEND®B`‚gadmin-bind-0.2.5/Autoinstall0000755000000000000000000000214211334742474014622 0ustar rootroot ### Default paths and other configure options ### # SETTINGS_DIR="/etc/gadmin-bind" # CHROOT_PATH="/var/named" # SYSINIT_SCRIPTS_DIR="/etc/init.d" # SYSINIT_SCRIPT_NAME="gadmin-bind" # RNDC_CONF="/etc/rndc.conf" # RESOLV_PATH="/etc/resolv.conf" # SYSLOG_PATH="/var/log/messages" # NAMED_BINARY="named" # SED_BINARY="sed" # DIG_BINARY="dig" # RNDC_BINARY="rndc" # RNDC_CONFGEN_BINARY="rndc-confgen" # CMD_SLEEP_LOG_SECS="3" # USERADD_BINARY="useradd" # GROUPADD_BINARY="groupadd" # NAMED_USER="nobody" ### "gadmin-bind" in the SYSINIT_START and STOP commands below ### ### should be changed to whatever SYSINIT_SCRIPT_NAME is set to. ### ### Redhat/Fedora ### ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var --sbindir=/usr/sbin \ SYSINIT_START_CMD="chkconfig gadmin-bind on" \ SYSINIT_STOP_CMD="chkconfig gadmin-bind off" && make && make install ### Debian/Ubuntu ### #./configure --prefix=/usr --sysconfdir=/etc \ #--localstatedir=/var --sbindir=/usr/sbin \ #SYSINIT_START_CMD="update-rc.d -f gadmin-bind defaults" \ #SYSINIT_STOP_CMD="update-rc.d -f gadmin-bind remove" && #make && #make install gadmin-bind-0.2.5/AUTHORS0000644000000000000000000000004310360314627013434 0ustar rootrootMagnus Loef gadmin-bind-0.2.5/po/0000755000076400007640000000000011350705637013276 5ustar bomanbomangadmin-bind-0.2.5/po/Makefile0000644000000000000000000001640111350705555014453 0ustar rootroot# Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper # # 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 to use GETTEXT_PACKAGE # instead of PACKAGE and to look for po2tbl in ./ not in intl/ # # - Modified by jacob berkman to install # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize GETTEXT_PACKAGE = gadmin-bind PACKAGE = gadmin-bind VERSION = 0.2.5 SHELL = /bin/sh srcdir = . top_srcdir = .. prefix = /usr 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 -Wall CPPFLAGS = INCLUDES = -I.. -I$(top_srcdir)/intl COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) SOURCES = POFILES = sv.po GMOFILES = sv.gmo DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot \ $(POFILES) $(GMOFILES) $(SOURCES) POTFILES = \ ../src/gbindadmin.c \ ../src/credits_window.c \ CATALOGS = sv.gmo 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: gadmin-bind-0.2.5/po/translation_howto.sh0000755000000000000000000000171710750423622017127 0ustar rootroot#!/bin/bash # Howto translate the program to your own language: # Run this command first to make the initial template. xgettext --no-location -k_:1 -kN_:1 -o gadmin-bind.pot ../src/*.c # Copy the resulting gadmin-bind.pot as yourlang.po in the current directory. # General information: # Try to make the translated lines about as long as the english lines # (on some places it might otherwise expand the application too much). # You dont have to translate all the country names from the credits dialog # if you dont want to. # Now translate yourlang.po in utf-8 with gedit or so and # set it to the correct language, charcode and email in the .po file. # (All the upper case names should be changed). # If you have written the translation in gedit (utf8) .. then use # CHARCODE=utf-8 # Now add your language to ALL_LINGUAS="sv en dk" in configure.in then # run autoconf. # Install it and check the result. # If the result looks good then send me the .po file. gadmin-bind-0.2.5/po/Makefile.in.in0000644000000000000000000001637410360304720015463 0ustar rootroot# Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper # # 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 to use GETTEXT_PACKAGE # instead of PACKAGE and to look for po2tbl in ./ not in intl/ # # - Modified by jacob berkman 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: gadmin-bind-0.2.5/po/Makefile.in0000644000000000000000000001631711350705555015066 0ustar rootroot# Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper # # 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 to use GETTEXT_PACKAGE # instead of PACKAGE and to look for po2tbl in ./ not in intl/ # # - Modified by jacob berkman to install # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize GETTEXT_PACKAGE = gadmin-bind PACKAGE = gadmin-bind VERSION = 0.2.5 SHELL = /bin/sh srcdir = . top_srcdir = .. prefix = /usr 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 -Wall CPPFLAGS = INCLUDES = -I.. -I$(top_srcdir)/intl COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) SOURCES = POFILES = sv.po GMOFILES = sv.gmo DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot \ $(POFILES) $(GMOFILES) $(SOURCES) POTFILES = \ CATALOGS = sv.gmo 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: gadmin-bind-0.2.5/po/sv.po0000644000000000000000000006407310751667137014022 0ustar rootroot# SOME DESCRIPTIVE TITLE. # Copyright (C) 2006 Magnus Loef (Magnus-swe) # This file is distributed under the same license as the gbindadmin package. # FIRST AUTHOR , 2006. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: gbindadmin 0.1.5\n" "Report-Msgid-Bugs-To: magnus-swe@telia.com\n" "POT-Creation-Date: 2006-07-15 17:42+0200\n" "PO-Revision-Date: 2010-07-15 00:00+0200\n" "Last-Translator: Magnus Loef \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" msgid "" "; This configuration is old. A working resolver is required for updates.\n\n" msgstr "; Den här konfigurationen är gammal. För att uppdatera krävs en fungerande upplösare.\n\n" msgid "" "Forward lookup: host dns1.example.org\nReverse lookup: host (IP of dns1.example.org)\nNetwork info: ifconfig\n" msgstr "Framlänges uppslagning: host dns1.example.org\nBaklänges uppslagning: host (IP of dns1.example.org)\nNätverksinformation: ifconfig\n" msgid "" "CMD_SLEEP_LOG_SECS should be in seconds, please reinstall the program.\n" msgstr "CMD_SLEEP_LOG_SECS borde vara specificerat i minuter, var vänlig installera om programmet.\n" msgid "CMD_SLEEP_LOG_SECS max length is 2, please reinstall the program.\n" msgstr "CMD_SLEEP_LOG_SECS max längd är 2, var vänlig installera om programmet.\n" #, c-format msgid "" "Error running command:\n" "%s\n" msgstr "Fel vid körning av kommando:\n" "%s\n" #, c-format msgid "" "Error: could not write named.conf here:\n" "%s\n" msgstr "Fel: kunde inte skriva named.conf här:\n" "%s\n" #, c-format msgid "" "Error: couldnt write file root.hints here:\n" "%s\n" msgstr "Fel: kunde inte skriva filen root.hints här:\n" "%s\n" #, c-format msgid "" "Error: couldnt write file localhost here:\n" "%s\n" msgstr "Fel: kunde inte skriva filen localhost här:\n" "%s\n" #, c-format msgid "" "Error: couldnt write file 127.0.0 here:\n" "%s\n" msgstr "Fel: kunde inte skriva filen 127.0.0 här:\n" "%s\n" msgid "Error copying /etc/localtime, the file doesnt exist\n" msgstr "Fel när /etc/localtime skulle kopieras, filen finns inte\n" #, c-format msgid "GBINDADMIN %s add a default configuration ?\n" msgstr "GBINDADMIN %s lägg till en standardkonfiguration ?\n" #, c-format msgid "" "Could not find all neccesary files in BIND's chroot directory.\n" "Should the missing files and directories be added here ? :\n" "%s\n" msgstr "Kunde inte hitta alla nödvändiga filer i BIND's chroot-katalog.\n" "Ska dom saknade filerna och katalogerna skapas här ? :\n" "%s\n" msgid "The domain name is too short, the domain was not added.\n" msgstr "Domännamnet är för kort, domänen lades inte till.\n" msgid "The network address is too short, the domain was not added.\n" msgstr "Nätverksadressen är för kort, domänen lades inte till.\n" msgid "The address is not valid\n" msgstr "Adressen är inte giltig\n" #, c-format msgid "" "Domain not added. Could not find named.conf here:\n" "%s\n" msgstr "Domänen lades inte till. Kunde inte hitta named.conf här:\n" "%s\n" msgid "This forward zone already existed, the domain was not added.\n" msgstr "Den här framlänges-zonen fanns redan, domänen lades inte till.\n" msgid "This reverse zone already existed, the domain was not added.\n" msgstr "Den här baklänges-zonen fanns redan, domänen lades inte till.\n" #, c-format msgid "" "Couldnt write the forward zone file here:\n" "%s\n" msgstr "Kunde inte skriva framlänges-zonfilen här:\n" "%s\n" #, c-format msgid "" "Couldnt write reverse zone file here: \n" "%s\n" msgstr "Kunde inte skriva baklänges-zonfilen här:\n" "%s\n" msgid "The hostname is too short, the resource was not added.\n" msgstr "Värdnamnet är för kort, resursen lades inte till.\n" msgid "The IP-address or hostname is too short, the resource was not added.\n" msgstr "IP-Adressen eller värdnamnet är för kort, resursen lades inte till.\n" #, c-format msgid "Resource not added. Could not find the forward zone here: %s\n" msgstr "Resursen lades inte till. Kunde inte inte hitta framlänges-zonen här: %s\n" #, c-format msgid "Resource not added. Could not find the reverse zone here: %s\n" msgstr "Resursen lades inte till. Kunde inte hitta baklänges-zonen här: %s\n" msgid "A PTR record for this resource was also added to the reverse zone\n" msgstr "En PTR instans för den här resursen lades även till i baklänges-zonen\n" #, c-format msgid "" "Error: Failed to add the system group:\n" "%s\n" "with command: %s\n" msgstr "Fel: Misslyckades med att lägga till systemgruppen:\n" "%s\n" "med kommandot: %s\n" #, c-format msgid "" "Error: Failed to add the system user:\n" "%s\n" "with command: %s\n" msgstr "Fel: Misslyckades med att lägga till systemanvändaren:\n" "%s\n" "med kommandot: %s\n" #, c-format msgid "" "Error: Failed to add the system user:\n" "%s\n" msgstr "Fel: Misslyckades med att lägga till systemanvändaren:\n" "%s\n" #, c-format msgid "Couldnt open system log here: %s\n" msgstr "Kunde inte öppna systemloggen här: %s\n" #, c-format msgid "Could not write system log here: %s\n" msgstr "Kunde inte skriva systemloggen här: %s\n" msgid "Domain name" msgstr "Domän-namn" msgid "Network address or range" msgstr "Nätverksadress eller intervall" msgid "DNS type" msgstr "DNS-typ" msgid "example.org" msgstr "" msgid "192.168.0 or 192.168.0.16-42 or 2001:0db8:85a3:08d3:1319:8a2e:0370" msgstr "" msgid "master" msgstr "" msgid "slave" msgstr "" msgid "Delete the selected domain." msgstr "Ta bort den valda domänen." msgid "Make changes to the selected domain." msgstr "Gör ändringar i den valda domänen" msgid "Change" msgstr "Ändra" msgid "Domain resources:" msgstr "Domänresurser:" msgid "Resource type" msgstr "Resurstyp" msgid "Hostname+Domainname" msgstr "Värdnamn+Domännamn" msgid "IP-address, MX Mailserver priority or CNAME host alias" msgstr "IP-adress, MX Mailserver-prioritet eller CNAME värdalias" msgid "Nameserver (NS-Record)" msgstr "Namnserver (NS-Record)" msgid "Mailserver (MX)" msgstr "Mailserver (MX)" msgid "Authoritive (IPv4 A-Record)" msgstr "Auktoritär (IPv4 A-Record)" msgid "Authoritive (IPv6 AAAA-Record)" msgstr "Autktoritär (IPv6 AAAA-Record)" msgid "Machine alias (CNAME)" msgstr "Maskinalias (CNAME)" msgid "A DNS server: dns1.example.org" msgstr "En DNS server: dns1.example.org" msgid "192.168.0.1 or 5F05:2000:80AD:5800:0058:0800:2023:1D71" msgstr "" msgid "Delete the selected resource." msgstr "Ta bort den valda resursen." msgid "Activate" msgstr "Aktivera" msgid "Deactivate" msgstr "Deaktivera" msgid "Restart" msgstr "Starta om" msgid "Settings" msgstr "Inställningar" msgid "Reload zones" msgstr "Ladda om zoner" msgid "Help" msgstr "Hjälp" msgid "Credits" msgstr "Credits" msgid "Quit" msgstr "Avsluta" msgid "Domains" msgstr "Domäner" msgid "Root servers" msgstr "Rootservrar" msgid "Resolvers" msgstr "Upplösare" msgid "System log" msgstr "Systemlogg" msgid "Verify domains" msgstr "Verifiera domäner" msgid "Information: cant read version" msgstr "Information: kan inte utläsa version" msgid "Status: unknown" msgstr "Status: okänd" msgid "You can also run ifconfig and other commands here." msgstr "Du kan ocksÃ¥ köra ifconfig eller andra kommandon här." msgid "Author: " msgstr "Författare: " msgid "I want to thank the following for their contributions:" msgstr "Jag vill tacka följande för deras bidrag:" msgid "" "The ISC BIND developers.\n" "\n" msgstr "Utvecklarna av ISC BIND.\n" "\n" msgid "for" msgstr "för" msgid "for the program icons.\n" msgstr "för programikonerna.\n" msgid "for maintaining the Debian package." msgstr "för handhavande av Debian-paketen." msgid "for the RPM spec file." msgstr "för RPM spec-filen." msgid "And all translators:" msgstr "Och alla översättare:" msgid "Afrikaans" msgstr "" msgid "Amharic" msgstr "" msgid "Arabic" msgstr "" msgid "Azerbaijani" msgstr "" msgid "Basque" msgstr "" msgid "Bulgarian" msgstr "" msgid "Breton" msgstr "" msgid "Brittish-English" msgstr "" msgid "Bosnian" msgstr "" msgid "Byelorussian" msgstr "" msgid "Catalan" msgstr "" msgid "Chinese" msgstr "" msgid "Chinese-Taiwan" msgstr "" msgid "Croatian" msgstr "" msgid "Czech" msgstr "" msgid "Danish" msgstr "" msgid "Dutch" msgstr "" msgid "Esperanto" msgstr "" msgid "Estonian" msgstr "" msgid "Finnish" msgstr "" msgid "French" msgstr "" msgid "Galician" msgstr "" msgid "German" msgstr "" msgid "Greek" msgstr "" msgid "Hebrew" msgstr "" msgid "Hini" msgstr "" msgid "Hungarian" msgstr "" msgid "Icelandic" msgstr "" msgid "Indonesian" msgstr "" msgid "Irish" msgstr "" msgid "Italian" msgstr "" msgid "Japanese" msgstr "" msgid "Korean" msgstr "" msgid "Kurdish" msgstr "" msgid "Latvian-Lettish" msgstr "" msgid "Lithuanian" msgstr "" msgid "Macedonian" msgstr "" msgid "Maori" msgstr "" msgid "Maltese" msgstr "" msgid "Norwegian" msgstr "" msgid "Polish" msgstr "" msgid "Portuguese" msgstr "" msgid "Portuguese-Brazil" msgstr "" msgid "Romanian" msgstr "" msgid "Russian" msgstr "" msgid "Serbian" msgstr "" msgid "Slovak" msgstr "" msgid "Slovenian" msgstr "" msgid "Spanish" msgstr "" msgid "Swedish" msgstr "Svenska" msgid "Tamil" msgstr "" msgid "Thai" msgstr "" msgid "Turkish" msgstr "" msgid "Traditional Chinese" msgstr "" msgid "Ukrainian" msgstr "" msgid "Vietnamese" msgstr "" msgid "Wallon" msgstr "" msgid "Welch" msgstr "" msgid "Close" msgstr "Stäng" msgid "Missing domain name, domain not deleted\n" msgstr "Saknat domännamn, domänen ej borttagen\n" msgid "Missing network address, domain not deleted\n" msgstr "Saknad nätverksadress, domänen ej borttagen\n" #, c-format msgid "" "Error: could not run remove zone directory command:\n" "%s\n" msgstr "Fel: kunde inte köra ta bort zonkatalog kommandot:\n" "%s\n" #, c-format msgid "Could not open named.conf here: %s\n" msgstr "Kunde inte öppna named.conf här: %s\n" #, c-format msgid "Could not write named.conf here: %s\n" msgstr "Kunde inte skriva named.conf här: %s\n" msgid "Missing domain type, resource not deleted\n" msgstr "Saknat domännamn, resursen ej borttagen\n" msgid "Missing domain name, resource not deleted\n" msgstr "Saknat domännamn, resursen ej borttagen\n" msgid "Missing forward domain address, resource not deleted\n" msgstr "Saknad framlänges domänadress, resursen ej borttagen\n" msgid "Missing resource type, resource not deleted\n" msgstr "Saknad resurstyp, resursen ej borttagen\n" msgid "Missing resource hostname, resource not deleted\n" msgstr "Saknat resursvärdnamn, resursen ej borttagen\n" msgid "Missing forward resource address, resource not deleted\n" msgstr "Saknad framlänges resursadress, resursen ej borttagen\n" #, c-format msgid "" "Could not open the forward zone file here:\n" "%s\n" msgstr "Kunde inte öppna framlänges-zonfilen här:\n" "%s\n" #, c-format msgid "" "Could not write the forward zone file here:\n" "%s\n" msgstr "Kunde inte skriva framlänges-zonfilen här:\n" #, c-format msgid "" "Could not open the reverse zone file here:\n" "%s\n" msgstr "Kunde inte öppna baklänges-zonfilen här:\n" "%s\n" #, c-format msgid "" "Could not write the reverse zone file here:\n" "%s\n" msgstr "Kunde inte skriva baklänges-zonfilen här:\n" "%s\n" #, c-format msgid "GBINDADMIN %s domain settings" msgstr "GBINDADMIN %s domäninställningar" msgid "Domain settings:" msgstr "Domäninställningar:" msgid " Domain name: " msgstr " Domännamn: " msgid "some.domain.org" msgstr "nÃ¥gon.domän.org" msgid " Address range: " msgstr " Adressintervall: " msgid "192.168.0.1-254" msgstr "" msgid " Domain type: " msgstr " Domäntyp: " msgid " Administrator email: " msgstr " Administratörens email: " msgid "hostmaster@example.org" msgstr "hostmaster@example.org" msgid " Domain serial: " msgstr " Domän-serienummer: " msgid "Year+Month+Day+A 2-digit serial, IE: 2006040255" msgstr "Ã…R+MÃ¥nad+Dag+Ett 2-siffrigt serinummer, IE: 2006040255" #, c-format msgid "" "Error: could not find the sites forward zone here:\n" "%s\n" msgstr "Fel: kunde inte hitta sitens framlängesadress här:\n" msgid " Allow update: " msgstr " TillÃ¥t uppdateringar: " msgid "" "Hosts allowed to submit dynamic DNS updates (DDNS) delimited with a \";\" " "IE: 127.0.0.1; 192.168.0.0/24; any; or none;" msgstr "Värdar tillÃ¥tna att skicka dynamiska DNS-uppdateringar (DDNS) avgränsade med \";\" " "IE: 127.0.0.1; 192.168.0.0/24; any; none;" msgid " Allow transfer: " msgstr " TillÃ¥t överföring: " msgid "" "Hosts that are allowed to make zone transfers (copy the entire zone) " "delimited with a \";\" IE: 127.0.0.1; 192.168.0.0/24; any; or none;" msgstr "Värdar tillÃ¥tna att göra zon-överföringar (kopiera hela zonen) " "avgränsade med \";\" IE: 127.0.0.1; 192.168.0.0/24; any; none;" msgid " Allow query: " msgstr " TillÃ¥t förfrÃ¥ganden: " msgid "" "Hosts allowed to query this DNS, delimited with a \";\" IE: 127.0.0.1; " "192.168.0.0/24; any; or none;" msgstr "Värdar tillÃ¥tna att frÃ¥ga den här DNSen, avgränsade med \";\" IE: 127.0.0.1; " "192.168.0.0/24; any; or none;" msgid " Send notifications: " msgstr " Skicka notifieringar: " msgid "yes" msgstr "ja" msgid "no" msgstr "nej" msgid "explicit" msgstr "explicit" msgid " Also notify: " msgstr " Notifiera även: " msgid "" "Servers that should recieve zone update notifications delimited with a \";\" " "IE: 127.0.0.1; 192.168.0.100;" msgstr "Servrar som borde ta emot zon-uppdateringar avgränsade med \";\" " "IE: 127.0.0.1; 192.168.0.100;" msgid " Allow notify: " msgstr " TillÃ¥t notifiera: " msgid "" "Servers allowed to notify this server for zone updates delimited with a \";\" " " IE: 127.0.0.1; 192.168.0.100; any; or none;" msgstr "Servrar tillÃ¥tna att notifiera den här servern för zon-uppdateringar avgränsade med \";\" IE: 127.0.0.1; 192.168.0.100; any; or none;" msgid " Domain statistics: " msgstr " Domänstatistik: " msgid " Master domains: " msgstr " Masterdomäner: " msgid "" "IP-addresses of the master domains delimited with a \";\" IE: 127.0.0.1; " "192.168.0.100; none;" msgstr "Masterdomänernas IP-adresser avgränsade med \";\" IE: 127.0.0.1; " "192.168.0.100; none;" #, c-format msgid "" "Error: could not open named.conf here:\n" "%s\n" msgstr "Fel: kunde inte öppna named.conf här:\n" "%s\n" #, c-format msgid "" "Error: named.conf does not exist here:\n" "%s\n" msgstr "Fel: named.conf finns inte här:\n" "%s\n" #, c-format msgid "" "Error: Forward zone does not exist here:\n" "%s\n" msgstr "Fel: Framlänges-zonen finns inte här\n" "%s\n" #, c-format msgid "" "Error: Reverse zone does not exist here:\n" "%s\n" msgstr "Fel: baklänges-zonen finns inte här:\n" "%s\n" msgid "DNS Type not set, no changes made.\n" msgstr "DNS-typen är inte specificerad, inga ändringar gjorda.\n" msgid "DNS statistics not set, setting it to yes\n" msgstr "DNS statistik ej specifierad, sätter den till ja\n" msgid "DNS notification not set, setting it to no.\n" msgstr "DNS notifieringar ej specificerat, sätter den till nej\n" msgid "" "Error: You have selected a slave domain.\n" "Slave domains requires master domain servers.\n" msgstr "Fel: Du har valt en slavdomän.\n" "Slavdomäner behöver master domäner.\n" #, c-format msgid "" "Error: This domain already exists here:\n" "%s\n" msgstr "Fel: Den här domänen finns redan här:\n" "%s\n" #, c-format msgid "" "Error: Cannot write the forward zone here:\n" "%s\n" msgstr "Fel: Kan inte skriva framlänges-zonen här:\n" "%s\n" #, c-format msgid "" "Error: Cannot write the reverse zone here:\n" "%s\n" msgstr "Fel: kan inte skriva baklänges-zonen här:\n" "%s\n" #, c-format msgid "" "Error: Cannot write named.conf here:\n" "%s\n" msgstr "Fel: kan inte skriva named.conf här:\n" "%s\n" msgid "Domain type changed to slave.\n" msgstr "Domäntypen ändrades till slav.\n" msgid "Domain type changed to master.\n" msgstr "Domäntypen ändrades till master.\n" msgid "Generate secret key" msgstr "Generera hemlig nyckel" msgid "" "Generate secret rndc key. The server has to be restarted afterwards to " "update its secret key." msgstr "Generera hemlig rndc nyckel. Servern mÃ¥ste startas om efterÃ¥t sÃ¥ den " "uppdaterar sin hemliga nyckel." msgid "The randomized file does not exist here: /dev/urandom\n" msgstr "Den randomiserade filen finns inte här: /dev/urandom\n" #, c-format msgid "" "Updating rndc key with rndc-confgen failed with command:\n" "%s\n" msgstr "Uppdatering av rndc-nyckeln med rndc-confgen misslyckades med följande kommando:\n" "%s\n" msgid "Error: New key not generated, rndc-confgen failed.\n" msgstr "Fel: Ny nyckel ej genererad, rndc-confgen misslyckades.\n" #, c-format msgid "" "Error: cannot open file:\n" "%s\n" msgstr "Fel: kan ej öppna fil:\n" "%s\n" #, c-format msgid "" "Error: could not find the secret key line in:\n" "%s\n" msgstr "Fel: kan ej hitta hemliga nyckelraden i:\n" "%s\n" #, c-format msgid "" "Error: cannot write named.conf here:\n" "%s\n" msgstr "Fel: kan ej skriva named.conf här:\n" "%s\n" #, c-format msgid "Error running command: %s\n" msgstr "Fel vid körning av kommando: %s\n" #, c-format msgid "Error: cannot open file: %s\n" msgstr "Fel: kan ej öppna filen: %s\n" #, c-format msgid "Error: cannot write rndc.conf here: %s\n" msgstr "Fel: kan ej skriva rndc.conf här: %s\n" msgid "" "\n" "Key generation and configuration updates successful.\n" "The server needs to be restarted now so it updates its internal key.\n" "This must be done so that rndc is allowed to connect and zones can be " "reloaded.\n" msgstr "\nNyckelgeneration och konfigurations-uppdateringar lyckades.\n" "Servern mÃ¥ste startas om nu sÃ¥ att den uppdaterar sin interna nyckel.\n" "Det här mÃ¥ste göras sÃ¥ att rndc är tillÃ¥ten att ansluta och zonerna kan " "laddas om.\n" msgid "You must add a nameserver (NS-Record) for this domain now.\n" msgstr "Du mÃ¥ste lägga till en namnserver (NS-Record) för den här domänen nu.\n" #, c-format msgid "" "Could not find:\n" "%s\n" msgstr "Kunde inte hitta:\n" "%s\n" msgid "A DNS Server: dns1.example.org" msgstr "En DNS-server: dns1.example.org" msgid "" "An IPv4 or IPv6 address: 192.168.0.30 or " "5F05:2000:80AD:5800:0058:0800:2023:1D71" msgstr "En IPv4 eller IPv6 adress: 192.168.0.30 eller " "5F05:2000:80AD:5800:0058:0800:2023:1D71" msgid "A mail server: mail1.example.org" msgstr "En mailserver: mail1.example.org" msgid "" "The priority of this mail server: 10 or 20 etc, 10 beeing the highest " "priority of these." msgstr "Prioriteten pÃ¥ den här mailservern: 10 eller 30 etc, 10 är den högsta " "prioriteten av dessa." msgid "The hostname of some host: router.example.org" msgstr "Värdnamnet pÃ¥ nÃ¥gon värd: router.example.org" msgid "The IPv4 address of this host: 192.168.0.100" msgstr "IPv4-adressen för den här värden: 192.168.0.100" msgid "The IPv6 address of this host: 5F05:2000:80AD:5800:0058:0800:2023:1D71" msgstr "IPv6-adressen för den här värden: 5F05:2000:80AD:5800:0058:0800:2023:1D71" msgid "" "The hostname of some host that already has an A record but not the name " "server: router.example.org" msgstr "Värdnamnet för nÃ¥gon värd som redan har ett A-record men inte samma server: router.example.org" msgid "The host alias: router.example.org" msgstr "Värdalias för värden router.example.org" msgid "" "The server must be activated in order to reload its zone and configuration " "data.\n" msgstr "Servern mÃ¥ste vara aktiverad för att ladda om sina zoner och konfigurationsdata.\n" msgid "" "Error: could not run rndc reload, maybe you need to generate\n" "a secret key in the settings and restart the server ?\n" msgstr "Fel: kunde inte köra rndc reload, du kanske mÃ¥ste generera\n" "en hemlig nyckel i inställningarna och starta om servern ?\n" msgid "" "The servers zones and configuration data has been successfully reloaded.\n" msgstr "Serverns zoner och konfigurationsdata har laddats om utan problem.\n" #, c-format msgid "Could not run command: %s\n" msgstr "Kunde inte köra kommandot: %s\n" #, c-format msgid "Error: can not write resolv.conf here: %s\n" msgstr "Fel: kunde inte skriva resolv.conf här: %s\n" msgid "The settings directory could not be created, run gbindadmin as root\n" msgstr "Inställningskatalogen kunde inte skapas, kör gbindadmin som root\n" msgid "Secret key not found." msgstr "Hemliga nyckeln ej hittad." #, c-format msgid "GBINDADMIN %s settings" msgstr "GBINDADMIN %s inställningar" msgid "Settings:" msgstr "Inställningar:" msgid " Path to the chroot directory: " msgstr " Sökväg till chroot-katalogen: " msgid " Path to resolv.conf: " msgstr " Sökväg till resolv.conf: " msgid " Path to the system log: " msgstr " Sökväg till systemloggen: " msgid "Set version failed\n" msgstr "Sätta version misslyckades\n" #, c-format msgid " Information: %s" msgstr " Information: %s" msgid " ISC BIND is not installed or not in your path." msgstr " ISC BIND är inte installerad eller inte i din sökväg." msgid "" "\n" "\n" "1. Adding master domains:\n" msgstr "\n\n1. Lägga till masterdomäner:\n" msgid " To add a master domain you will need a static IP-address range.\n" msgstr " För att lägga till en masterdomän behöver du ett statiskt IP-Adressintervall.\n" msgid " Supply the 2 entries with domain specific information.\n" msgstr " Ange domänspecifik information i de 2 skrivrutorna.\n" msgid " Select master in the third box.\n" msgstr " Välj master i den tredje boxen.\n" msgid " Click the add button to add this domain.\n" msgstr " Klicka pÃ¥ läggtill knappen för att lägga till den här domänen.\n" msgid "" " Now click on the domain and then add a name server in the resource manager.\n" msgstr " Klicka nu pÃ¥ domänen och lägg därefter till en namnserver i resurshanteraren.\n" msgid "\n" msgstr "" msgid "" " When the domain and its resources is set up and functional you call the " "ISP.\n" msgstr " När domänen och dess resurser är uppsatta ringer du din internetleverantör.\n" msgid " The ISP will then delegate control over your domain name to you.\n" msgstr " Internetleverantören delegerar dÃ¥ kontrollen över domänen till dig.\n" msgid " This may or may not be true depending on how your ISP does things.\n" msgstr " Det här kan vara sant beroende pÃ¥ hur din internetleverantör hanterar det.\n" msgid "" " Make sure its sending notifies for all zones in the system log tab.\n" msgstr " Se till att din server skickar notifieringar för alla dina zoner i systemloggsfliken.\n" msgid "2. Adding slave domains:\n" msgstr "2. Lägga till slavdomäner:\n" msgid " To add a slave domain you will need a static IP-address.\n" msgstr " För att lägga till slavdomäner behöver du en statisk IP-adress.\n" msgid " Select slave in the third box.\n" msgstr " Välj slav i den tredje boxen.\n" msgid "" " Add more resources as you like and when youre satisfied you can activate " "the server.\n" msgstr " Lägg till fler resurser som du vill och när du är nöjd aktiverar du servern.\n" msgid "3. Adding forward caching domains: (Not completed)\n" msgstr "3. Lägga till forward cachande domäner: (Ej klart än)\n" msgid "4. Adding stub domains: (Not completed)\n" msgstr "4. Lägga till stubdomäner: (Ej klart än)\n" msgid "5. Altering domains:\n" msgstr "5. Ändra domäner:\n" msgid " Altering a domain is done by selecting a domain in the domain tab.\n" msgstr " Att ändra en domän görs genom att välja en domän i domänfliken.\n" msgid "" " Now click the change button and a domain settings window will pop up.\n" msgstr " Klicka nu pÃ¥ ändra-knappen och ett domäninställningsfönster dyker upp.\n" msgid " In this window you can select how the server will function.\n" msgstr " I det här fönstret kan du välja hur servern ska fungera.\n" msgid "" " If the domain name is changed then all references to \"new.domain.se\" " "will\n" msgstr " Om domännamnet ändras sÃ¥ kommer alla referenser till \"ny.domän.se\"\n" msgid "" " also be altered using sed so first make sure this is what you want to " "do.\n" msgstr " ocksÃ¥ att ändras med sed, sÃ¥ se först till att det här är vad du vill göra.\n" msgid "" " IE: dont do this if you want to change a domain called hello.se and " "another domain\n" msgstr " IE: gör inte det här om du vill ändra en domän kallad hello.se och " "en annan domän\n" msgid "" " is called hello.se.happy.se this site will then be called new.domain.se." "happy.se.\n" msgstr " kallas hello.se.happy.se den siten kommer dÃ¥ att kallas new.domain.se.happy.se.\n" msgid "" " If the domain type is changed the server will automatically transform to " "this type.\n" msgstr " Om domäntypen ändras sÃ¥ kommer servern automatiskt att transformera till " "den här typen.\n" msgid "" " Any changes must be confirmed by clicking the apply button and requires a " "reload.\n" msgstr " Ändringar mÃ¥ste godkännas genom att klicka pÃ¥ verkställ-knappen och kräver en " "omladdning.\n" msgid "6. Zone reloads and key generation:\n" msgstr "6. Zon-omladdningar och nyckelskapande:\n" msgid "" " When using GBINDADMIN for the first time you should go to the settings " "and generate a new key.\n" msgstr " När du använder GBINDADMIN för första gÃ¥ngen bör du gÃ¥ till inställningarna " "och generera en ny hemlig nyckel.\n" msgid "" " The key is used by rndc to connect to the server and configuring it.\n" msgstr " Nyckeln används av rndc för att ansluta till servern och konfigurera den.\n" msgid "" " If the current rndc.conf key and the chrooted named.conf's key differs " "then\n" msgstr " Om den nuvarande rndc.conf och den chrootade named.conf's nycklar diffar sÃ¥\n" msgid "" " rndc wont be able to connect to the server and you wont be able to reload " "the zones.\n" msgstr " kan inte rndc ansluta till servern och dÃ¥ kan du inte ladda om zonerna.\n" #, c-format msgid "%s %s information" msgstr "" msgid "Status: Deactivated" msgstr "Status: Deaktiverad" msgid "Status: Activated" msgstr "Status: Aktiverad" msgid "" "Received less then 20 lines of root server information. Make sure that the " "resolvers tab has working nameservers listed.\n" msgstr "Emottog mindre än 20 rader med rootserverinformation. Se till att " "upplösningsfliken har fungerande namnservrar listade.\n" #, c-format msgid "" "Can not write root.hints here:\n" "%s\n" msgstr "Kunde inte skriva root.hints här:\n" "%s\n" gadmin-bind-0.2.5/po/ChangeLog0000644000000000000000000000000010754617414014554 0ustar rootrootgadmin-bind-0.2.5/po/POTFILES.in0000644000000000000000000000013710363734743014573 0ustar rootroot# List of source files containing translatable strings. src/gbindadmin.c src/credits_window.c gadmin-bind-0.2.5/po/POTFILES0000644000000000000000000000006211350705554014156 0ustar rootroot ../src/gbindadmin.c \ ../src/credits_window.c \ gadmin-bind-0.2.5/COPYING0000644000000000000000000010451310642030763013425 0ustar rootroot GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . gadmin-bind-0.2.5/install-sh0000755000000000000000000001270110360304720014365 0ustar rootroot#!/bin/sh # # install - install a program, script, or datafile # This comes from X11R5 (mit/util/scripts/install.sh). # # Copyright 1991 by the Massachusetts Institute of Technology # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that # the above copyright notice appear in all copies and that both that # copyright notice and this permission notice appear in supporting # documentation, and that the name of M.I.T. not be used in advertising or # publicity pertaining to distribution of the software without specific, # written prior permission. M.I.T. makes no representations about the # suitability of this software for any purpose. It is provided "as is" # without express or implied warranty. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. It can only install one file at a time, a restriction # shared with many OS's install programs. # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" transformbasename="" transform_arg="" instcmd="$mvprog" chmodcmd="$chmodprog 0755" chowncmd="" chgrpcmd="" stripcmd="" rmcmd="$rmprog -f" mvcmd="$mvprog" src="" dst="" dir_arg="" while [ x"$1" != x ]; do case $1 in -c) instcmd="$cpprog" shift continue;; -d) dir_arg=true shift continue;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; -s) stripcmd="$stripprog" shift continue;; -t=*) transformarg=`echo $1 | sed 's/-t=//'` shift continue;; -b=*) transformbasename=`echo $1 | sed 's/-b=//'` shift continue;; *) if [ x"$src" = x ] then src=$1 else # this colon is to work around a 386BSD /bin/sh bug : dst=$1 fi shift continue;; esac done if [ x"$src" = x ] then echo "install: no input file specified" exit 1 else : fi if [ x"$dir_arg" != x ]; then dst=$src src="" if [ -d $dst ]; then instcmd=: chmodcmd="" else instcmd=$mkdirprog fi else # Waiting for this to be detected by the "$instcmd $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if [ -f "$src" ] || [ -d "$src" ] then : else echo "install: $src does not exist" exit 1 fi if [ x"$dst" = x ] then echo "install: no destination specified" exit 1 else : fi # If destination is a directory, append the input filename; if your system # does not like double slashes in filenames, you may need to add some logic if [ -d $dst ] then dst="$dst"/`basename $src` else : fi fi ## this sed command emulates the dirname command dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` # Make sure that the destination directory exists. # this part is taken from Noah Friedman's mkinstalldirs script # Skip lots of stat calls in the usual case. if [ ! -d "$dstdir" ]; then defaultIFS=' ' IFS="${IFS-${defaultIFS}}" oIFS="${IFS}" # Some sh's can't handle IFS=/ for some reason. IFS='%' set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'` IFS="${oIFS}" pathcomp='' while [ $# -ne 0 ] ; do pathcomp="${pathcomp}${1}" shift if [ ! -d "${pathcomp}" ] ; then $mkdirprog "${pathcomp}" else : fi pathcomp="${pathcomp}/" done fi if [ x"$dir_arg" != x ] then $doit $instcmd $dst && if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else : ; fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else : ; fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else : ; fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else : ; fi else # If we're going to rename the final executable, determine the name now. if [ x"$transformarg" = x ] then dstfile=`basename $dst` else dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename fi # don't allow the sed command to completely eliminate the filename if [ x"$dstfile" = x ] then dstfile=`basename $dst` else : fi # Make a temp file name in the proper directory. dsttmp=$dstdir/#inst.$$# # Move or copy the file name to the temp name $doit $instcmd $src $dsttmp && trap "rm -f ${dsttmp}" 0 && # and set any options; do chmod last to preserve setuid bits # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $instcmd $src $dsttmp" command. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else :;fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else :;fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else :;fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else :;fi && # Now rename the file to the real destination. $doit $rmcmd -f $dstdir/$dstfile && $doit $mvcmd $dsttmp $dstdir/$dstfile fi && exit 0 gadmin-bind-0.2.5/Makefile.in0000644000000000000000000005762311350705232014445 0ustar rootroot# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # Inc. # This Makefile.in 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. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ TODO config.guess config.sub depcomp install-sh missing \ mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d "$(distdir)" \ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr "$(distdir)"; }; } am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LOCALSTATEDIR = @LOCALSTATEDIR@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SBINDIR = @SBINDIR@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SYSCONFDIR = @SYSCONFDIR@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src po EXTRA_DIST = \ autogen.sh all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @$(am__cd) '$(distuninstallcheck_dir)' \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile config.h installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-data-local install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ dist-hook dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-data-local install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \ tags-recursive uninstall uninstall-am install-data-local: @$(NORMAL_INSTALL) if test -d $(srcdir)/pixmaps; then \ $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/gadmin-bind; \ for pixmap in $(srcdir)/pixmaps/*; do \ if test -f $$pixmap; then \ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/gadmin-bind; \ fi \ done \ fi; if test -d $(DESTDIR)$(datadir)/pixmaps; then \ cp pixmaps/gadmin-bind.png $(DESTDIR)$(datadir)/pixmaps/; \ fi; if test -f $(DESTDIR)$(bindir)/consolehelper && test ! -f $(DESTDIR)$(bindir)/gadmin-bind; then \ ln -s $(DESTDIR)$(bindir)/consolehelper $(DESTDIR)$(bindir)/gadmin-bind; \ fi; if test -d $(DESTDIR)$(sysconfdir)/pam.d; then \ cp etc/pam.d/gadmin-bind $(DESTDIR)$(sysconfdir)/pam.d/; \ fi; if test -d $(DESTDIR)$(sysconfdir)/security/console.apps; then \ cp etc/security/console.apps/gadmin-bind $(DESTDIR)$(sysconfdir)/security/console.apps/; \ fi; if test -d $(DESTDIR)$(datadir)/applications; then \ cp desktop/gadmin-bind.desktop $(DESTDIR)$(datadir)/applications/; \ fi ; if test ! -d $(DESTDIR)$(datadir)/doc/gadmin-bind; then \ $(mkinstalldirs) $(DESTDIR)$(datadir)/doc/gadmin-bind; \ fi; if test -d $(DESTDIR)$(datadir)/doc/gadmin-bind; then \ cp AUTHORS $(DESTDIR)$(datadir)/doc/gadmin-bind/; \ cp README $(DESTDIR)$(datadir)/doc/gadmin-bind/; \ cp ChangeLog $(DESTDIR)$(datadir)/doc/gadmin-bind/; \ cp COPYING $(DESTDIR)$(datadir)/doc/gadmin-bind/; \ fi; @echo "" @echo "Start GAdmin-BIND by typing gadmin-bind in a terminal" @echo "or start it from the menu." @echo "" @echo "Send bugreports, comments or questions to magnus-swe@telia.com" @echo "" dist-hook: if test -d pixmaps; then \ mkdir $(DESTDIR)$(distdir)/pixmaps; \ for pixmap in pixmaps/*; do \ if test -f $$pixmap; then \ cp -p $$pixmap $(DESTDIR)$(distdir)/pixmaps; \ fi \ done \ fi # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gadmin-bind-0.2.5/ChangeLog0000644000000000000000000000472211350706673014154 0ustar rootrootVersion 0.2.5 ------------- Fixes specfile desktop entry. Use correct sysinit stop command. Version 0.2.4 ------------- Now using a gadmin-bind sysinit script. Sets status color. Sets missing server color. Version 0.2.3 -------------- Changed the name of the desktop file to gadmin-bind.desktop. Updated ip_handling.[c,h] to GPL version 3 thanks to Daniel Baumann. A Big thanks to JJ, Daniel Baumann and a happy birthday to me :) Version 0.2.2 -------------- Changed name from gbindadmin to gadmin-bind. Added options "listen-on port 53" and "listen-on-v6 port 53" to the default configuration. Added SYSINIT_START_CMD and SYSINIT_STOP_CMD for starting the server at boot. Activation status is now read from the proc filesystem. Added log reading optimizations. Added IPv6 support. Fixed reverse IPv4 lookups. Updated to the new pam specs. Switched to GPL version 3. Version 0.1.5 -------------- Added RNDC_CONF path configure option. Fixed a problem where the defined group NOBODY wouldnt be added in some cases (thanks to Jason Banks). User and group delimiters for chown are now colons. Pressing enter in the verification entry now runs the specified command. Fixed cases where rndc.conf could be missing (thanks to Jason Banks). All translatable strings are now utf8 aware and the entire application can be translated. Added Swedish translation (Magnus-swe) Version 0.1.4 -------------- User NOBODY is added if it doesnt exist. The secret key is now shown in the settings window. Version 0.1.3 -------------- Owner and group for the bind chroot is now set to root.NAMED_USER so the user the server runs as has read and write permissions where it should. Added a domain verification tab. Version 0.1.2 -------------- Domain type is now selected with a combo box. The settings directory is created if it doesnt exist. Fixed the rpm specfile. Added a new program icon (Thanks to Bjorn Lindner) Thanks to Sebastian Schoss for the new site www.gadmintools.org Version 0.1.1 -------------- Added allow-updates and also-notify in the domain settings. The domain settings window now hides entries that cannot be used depending on the selected domain type. Mayor path restructuring, the path settings can now be used. Changed the way PTR records where created. Version 0.1.0 -------------- Added Domain change button with domain setting window with recursive domain changes and on the fly domain type changes etc. Added a Settings window with paths and rndc key generation. Added a Resolvers tab. gadmin-bind-0.2.5/INSTALL0000644000000000000000000000156110750422263013422 0ustar rootroot Installation instructions: ---------------------------------- GAdmin-BIND cant be installed without giving the correct configure options. Named will be running in a chroot environment and the default location is /var/named GAdmin-BIND will set up this environment for you if it is missing. See the Autoinstall file for the various configure options. This software also requires the following binaries: BIND [named, rndc, rndc-confgen, dig] mv, cp, mknod, chmod, chown and sed. GAdmin-BIND currently supports the following systems to a varying degree: Linux FreeBSD OpenBSD NetBSD Darwin Mac OSX AIX HP-UX Solaris SunOS If GAdmin-BIND doesnt work flawlessly on your system and you know how to correct it then send a mail explaining how to this in detail, preferrably with a patch to: magnus-swe@telia.com (comments and questions are also welcome). gadmin-bind-0.2.5/mkinstalldirs0000755000000000000000000000341110360304720015165 0ustar rootroot#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain errstatus=0 dirmode="" usage="\ Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..." # process command line arguments while test $# -gt 0 ; do case "${1}" in -h | --help | --h* ) # -h for help echo "${usage}" 1>&2; exit 0 ;; -m ) # -m PERM arg shift test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; } dirmode="${1}" shift ;; -- ) shift; break ;; # stop option processing -* ) echo "${usage}" 1>&2; exit 1 ;; # unknown option * ) break ;; # first non-opt arg esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac case $dirmode in '') if mkdir -p -- . 2>/dev/null; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" fi ;; *) if mkdir -m "$dirmode" -p -- . 2>/dev/null; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" fi ;; esac for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case "$pathcomp" in -* ) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr="" chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp="$pathcomp/" done done exit $errstatus # Local Variables: # mode: shell-script # sh-indentation: 3 # End: # mkinstalldirs ends here gadmin-bind-0.2.5/gadmin-bind.spec0000644000000000000000000000436011350706715015422 0ustar rootroot%define desktop_vendor magnus-swe@telia.com %{!?_dist: %{expand: %%define dist rhfc12}} Summary: GADMIN-BIND -- A GTK+ administation tool for ISC BIND. Name: gadmin-bind Version: 0.2.5 Release: 0.1.%{dist}.nr License: GPL Group: Applications/System URL: http://mange.dynalias.org/linux.html Source0: http://mange.dynalias.org/linux/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_builddir}/%{name}-%{version}-root Provides: gadmin-bind %description GADMIN-BIND is a fast and easy to use GTK+ administration tool for ISC BIND. %prep %setup -q %configure SYSINIT_START_CMD="chkconfig named on" SYSINIT_STOP_CMD="chkconfig named off" %build %{__make} %install rm -rf $RPM_BUILD_ROOT %makeinstall INSTALL_USER=`id -un` INSTALL_GROUP=`id -gn` # pam auth install -d %{buildroot}%{_sysconfdir}/pam.d/ install -d %{buildroot}%{_sysconfdir}/security/console.apps install -m 644 etc/pam.d/%{name} %{buildroot}%{_sysconfdir}/pam.d/%{name} install -m 644 etc/security/console.apps/%{name} %{buildroot}%{_sysconfdir}/security/console.apps/%{name} # desktop entry install -d %{buildroot}%{_datadir}/applications install -m 644 desktop/%{name}.desktop %{buildroot}%{_datadir}/applications/%{name}.desktop # docs, theres no need to have version, rpm is not fun. install -d %{buildroot}%{_datadir}/doc/%{name} install -m 644 README COPYING AUTHORS ChangeLog %{buildroot}%{_datadir}/doc/%{name}/ %find_lang %name %post if test ! -h %{_bindir}/gadmin-bind; then \ ln -s %{_bindir}/consolehelper %{_bindir}/gadmin-bind ; \ fi; %clean rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang ##%files %defattr(0755, root, root) %{_sbindir}/%{name} %defattr(0644, root, root) %{_sysconfdir}/pam.d/%{name} %{_sysconfdir}/security/console.apps/%{name} %{_datadir}/applications/%{name}.desktop %{_datadir}/pixmaps/*.png %dir %{_datadir}/pixmaps/%{name} %{_datadir}/pixmaps/%{name}/*.png %dir %{_datadir}/doc/%{name} %{_datadir}/doc/%{name}/README %{_datadir}/doc/%{name}/COPYING %{_datadir}/doc/%{name}/AUTHORS %{_datadir}/doc/%{name}/ChangeLog %changelog * Fri Mar 19 2010 Magnus-swe - Fixes specfile desktop entry. - Use correct sysinit satop command. * Thu Feb 28 2008 Magnus-swe - Updated license for ip_handling.[c,h]. - Big thanks to Daniel Baumann!!! gadmin-bind-0.2.5/Makefile.am0000644000000000000000000000373310760310432014423 0ustar rootroot## Process this file with automake to produce Makefile.in VERSION = @VERSION@ SUBDIRS = src po EXTRA_DIST = \ autogen.sh install-data-local: @$(NORMAL_INSTALL) if test -d $(srcdir)/pixmaps; then \ $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/gadmin-bind; \ for pixmap in $(srcdir)/pixmaps/*; do \ if test -f $$pixmap; then \ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/gadmin-bind; \ fi \ done \ fi; if test -d $(DESTDIR)$(datadir)/pixmaps; then \ cp pixmaps/gadmin-bind.png $(DESTDIR)$(datadir)/pixmaps/; \ fi; if test -f $(DESTDIR)$(bindir)/consolehelper && test ! -f $(DESTDIR)$(bindir)/gadmin-bind; then \ ln -s $(DESTDIR)$(bindir)/consolehelper $(DESTDIR)$(bindir)/gadmin-bind; \ fi; if test -d $(DESTDIR)$(sysconfdir)/pam.d; then \ cp etc/pam.d/gadmin-bind $(DESTDIR)$(sysconfdir)/pam.d/; \ fi; if test -d $(DESTDIR)$(sysconfdir)/security/console.apps; then \ cp etc/security/console.apps/gadmin-bind $(DESTDIR)$(sysconfdir)/security/console.apps/; \ fi; if test -d $(DESTDIR)$(datadir)/applications; then \ cp desktop/gadmin-bind.desktop $(DESTDIR)$(datadir)/applications/; \ fi ; if test ! -d $(DESTDIR)$(datadir)/doc/gadmin-bind; then \ $(mkinstalldirs) $(DESTDIR)$(datadir)/doc/gadmin-bind; \ fi; if test -d $(DESTDIR)$(datadir)/doc/gadmin-bind; then \ cp AUTHORS $(DESTDIR)$(datadir)/doc/gadmin-bind/; \ cp README $(DESTDIR)$(datadir)/doc/gadmin-bind/; \ cp ChangeLog $(DESTDIR)$(datadir)/doc/gadmin-bind/; \ cp COPYING $(DESTDIR)$(datadir)/doc/gadmin-bind/; \ fi; @echo "" @echo "Start GAdmin-BIND by typing gadmin-bind in a terminal" @echo "or start it from the menu." @echo "" @echo "Send bugreports, comments or questions to magnus-swe@telia.com" @echo "" dist-hook: if test -d pixmaps; then \ mkdir $(DESTDIR)$(distdir)/pixmaps; \ for pixmap in pixmaps/*; do \ if test -f $$pixmap; then \ cp -p $$pixmap $(DESTDIR)$(distdir)/pixmaps; \ fi \ done \ fi gadmin-bind-0.2.5/aclocal.m40000644000000000000000000015605011334742551014241 0ustar rootroot# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009 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. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.63],, [m4_warning([this file was generated for autoconf 2.63. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # 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 , 1995, 1996 # # Modified to never use included libintl. # Owen Taylor , 12/15/1998 # # Major rework to remove unused code # Owen Taylor , 12/11/2002 # # Added better handling of ALL_LINGUAS from GNU gettext version # written by Bruno Haible, Owen Taylor 5/30/3002 # # Modified to require ngettext # Matthias Clasen 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 ], [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 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 ], [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 ], [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) MSGFMT_OPTS= AC_MSG_CHECKING([if msgfmt accepts -c]) GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test \n" "Language-Team: C \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" ], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) AC_SUBST(MSGFMT_OPTS) 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" glib_save_datarootdir="$datarootdir" test "x$prefix" = xNONE && prefix=$ac_default_prefix test "x$exec_prefix" = xNONE && exec_prefix=$prefix datarootdir=`eval echo "${datarootdir}"` 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" datarootdir="$glib_save_datarootdir" 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 # GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) # # Create a temporary file with TEST-FILE as its contents and pass the # file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with # 0 and perform ACTION-IF-FAIL for any other exit status. AC_DEFUN([GLIB_RUN_PROG], [cat >conftest.foo <<_ACEOF $2 _ACEOF if AC_RUN_LOG([$1 conftest.foo]); then m4_ifval([$3], [$3], [:]) m4_ifvaln([$4], [else $4])dnl echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD fi]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # # Similar to PKG_CHECK_MODULES, make sure that the first instance of # this or PKG_CHECK_MODULES is called, or make sure to call # PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_ifval([$2], [$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ifelse([$4], , [AC_MSG_ERROR(dnl [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT ])], [AC_MSG_RESULT([no]) $4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])], [$4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) ifelse([$3], , :, [$3]) fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 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. # 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. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 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. # 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, 2005 # 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. # serial 4 # 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, 2005, 2006, 2008 # 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. # serial 9 # 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])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl 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])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 # 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. # serial 10 # 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], UPC, [depcc="$UPC" am_compiler_list=], [$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 am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) 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 # 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. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; 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 ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj 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])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # 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. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf 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. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/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"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # 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. # serial 8 # 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 -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 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. # serial 16 # 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. # 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.62])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 if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi 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 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])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) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl 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 AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # 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_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008 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. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 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. # serial 2 # 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. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # 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. # serial 5 # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless `enable' is passed literally. # For symmetry, `disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful (and sometimes confusing) to the casual installer], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 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, 2005, 2009 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. # serial 4 # 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 this is the am__doit target .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 # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # 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. # serial 6 # 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 AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # 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 ]) # Copyright (C) 2003, 2004, 2005, 2006 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. # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008 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. # serial 4 # _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], [m4_foreach_w([_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. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # 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. # serial 5 # 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 # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # 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)]) # Copyright (C) 2001, 2003, 2005 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. # AM_PROG_INSTALL_STRIP # --------------------- # 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="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008 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. # serial 2 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 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. # serial 2 # _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 /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 gadmin-bind-0.2.5/TODO0000644000000000000000000000071510754645215013071 0ustar rootroot TODO: ----------------------------------------------------------- Change resource button: Create the change resource window and functions. Add: Views Add: DNS SEC Tab for: blackhole lists and domain access lists (named.conf) Add "stub" and "forward"(caching) domain type selections. Add update intervals to "change domain" window: "ttl 3D" "3W" "2D" "1H". Domain settings window: Adresses changes not done. Add: NAPTR's sip:address mailto:address etc. gadmin-bind-0.2.5/configure0000755000000000000000000102753711350705230014307 0ustar rootroot#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.63. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008 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 more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # PATH needs CR # 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 as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. 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 IFS=$as_save_IFS ;; 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 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; 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 || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH if test "x$CONFIG_SHELL" = x; then if (eval ":") 2>/dev/null; then as_have_required=yes else as_have_required=no fi if test $as_have_required = yes && (eval ": (as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=\$LINENO as_lineno_2=\$LINENO test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } ") 2> /dev/null; then : else as_candidate_shells= 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=. case $as_dir in /*) for as_base in sh bash ksh sh5; do as_candidate_shells="$as_candidate_shells $as_dir/$as_base" done;; esac done IFS=$as_save_IFS for as_shell in $as_candidate_shells $SHELL; do # Try only shells that exist, to save several forks. if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { ("$as_shell") 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi : _ASEOF }; then CONFIG_SHELL=$as_shell as_have_required=yes if { "$as_shell" 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi : (as_func_return () { (exit $1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = "$1" ); then : else exitcode=1 echo positional parameters were not saved. fi test $exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } _ASEOF }; then break fi fi done if test "x$CONFIG_SHELL" != x; then for as_var in BASH_ENV ENV do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done export CONFIG_SHELL exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} fi if test $as_have_required = no; then echo This script requires a shell more modern than all the echo shells that I found on your system. Please install a echo modern shell, or manually run the script under such a echo shell if you do have one. { (exit 1); exit 1; } fi fi fi (eval "as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0") || { echo No shell found that supports shell functions. echo Please tell bug-autoconf@gnu.org about your system, echo including any error possibly output before this message. echo This can help us improve future autoconf versions. echo Configuration will now proceed without shell functions. } as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # 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 after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, 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 # scripts with optimization help from Paolo Bonzini. Blame Lee # E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_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 sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # 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'" exec 7<&0 &1 # 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` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # 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 #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS SBINDIR LOCALSTATEDIR SYSCONFDIR MKINSTALLDIRS POSUB POFILES PO_IN_DATADIR_FALSE PO_IN_DATADIR_TRUE INTLLIBS INSTOBJEXT GMOFILES DATADIRNAME CATOBJEXT CATALOGS XGETTEXT GMSGFMT MSGFMT_OPTS MSGFMT USE_NLS GETTEXT_PACKAGE PACKAGE_LIBS PACKAGE_CFLAGS PKG_CONFIG EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC host_os host_vendor host_cpu host build_os build_vendor build_cpu build MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_maintainer_mode enable_dependency_tracking ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP PKG_CONFIG PACKAGE_CFLAGS PACKAGE_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # 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. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= 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 case $ac_option in *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -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) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 { (exit 1); exit 1; }; } ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 { (exit 1); exit 1; }; } ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$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 ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$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 ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) 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 ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$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_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 { (exit 1); exit 1; }; } ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 { (exit 1); exit 1; }; } ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=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 ;; -*) { $as_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 && { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_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'` { $as_echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2 { (exit 1); exit 1; }; } ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; } 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 $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || { $as_echo "$as_me: error: working directory cannot be determined" >&2 { (exit 1); exit 1; }; } test "X$ac_ls_di" = "X$ac_pwd_ls_di" || { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 { (exit 1); exit 1; }; } # 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 the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | 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 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2 { (exit 1); exit 1; }; } pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # 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 \`..'] 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] --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] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _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 System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --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 if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility PACKAGE_CFLAGS C compiler flags for PACKAGE, overriding pkg-config PACKAGE_LIBS linker flags for PACKAGE, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested 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 else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF configure generated by GNU Autoconf 2.63 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 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 fi cat >config.log <<_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.63. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { 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` /usr/bin/hostinfo = `(/usr/bin/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=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&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_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=`$as_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_arg'" ;; 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: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. 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, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) $as_unset $ac_var ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo cat <<\_ASBOX ## ----------------- ## ## Output variables. ## ## ----------------- ## _ASBOX echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ## ------------------- ## ## File substitutions. ## ## ------------------- ## _ASBOX echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then cat <<\_ASBOX ## ----------- ## ## confdefs.h. ## ## ----------- ## _ASBOX echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r 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 -f -r conftest* 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 an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then ac_site_file1=$CONFIG_SITE elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test -r "$ac_site_file"; then { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" 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 { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5 $as_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 $ac_precious_vars; 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,) { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 $as_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 # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_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 { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 $as_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.11' 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 { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 $as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} { (exit 1); exit 1; }; } fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # 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. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$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 rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir 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. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 $as_echo "$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' { $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) { { $as_echo "$as_me:$LINENO: error: unsafe absolute working directory name" >&5 $as_echo "$as_me: error: unsafe absolute working directory name" >&2;} { (exit 1); exit 1; }; };; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) { { $as_echo "$as_me:$LINENO: error: unsafe srcdir value: \`$srcdir'" >&5 $as_echo "$as_me: error: unsafe srcdir value: \`$srcdir'" >&2;} { (exit 1); exit 1; }; };; esac # 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". { { $as_echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 $as_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 { { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 $as_echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi { $as_echo "$as_me:$LINENO: result: yes" >&5 $as_echo "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 $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:$LINENO: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if test "${ac_cv_path_mkdir+set}" = set; then $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. test -d ./--version && rmdir ./--version MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:$LINENO: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_AWK+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:$LINENO: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:$LINENO: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "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 if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then { { $as_echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 $as_echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } fi 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=gadmin-bind VERSION=0.2.5 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"} # 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 -' ac_config_headers="$ac_config_headers config.h" { $as_echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-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 { $as_echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$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 # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || { { $as_echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 $as_echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} { (exit 1); exit 1; }; } { $as_echo "$as_me:$LINENO: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if test "${ac_cv_build+set}" = set; then $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && { { $as_echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 $as_echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 $as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} { (exit 1); exit 1; }; } fi { $as_echo "$as_me:$LINENO: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 $as_echo "$as_me: error: invalid value of canonical build" >&2;} { (exit 1); exit 1; }; };; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:$LINENO: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if test "${ac_cv_host+set}" = set; then $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 $as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} { (exit 1); exit 1; }; } fi fi { $as_echo "$as_me:$LINENO: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 $as_echo "$as_me: error: invalid value of canonical host" >&2;} { (exit 1); exit 1; }; };; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:$LINENO: checking for OS type" >&5 $as_echo_n "checking for OS type... " >&6; } case $host in *-linux*) { $as_echo "$as_me:$LINENO: result: Linux ($host) found." >&5 $as_echo "Linux ($host) found." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_LINUX 1 _ACEOF ;; *-solaris*) { $as_echo "$as_me:$LINENO: result: Solaris ($host) found." >&5 $as_echo "Solaris ($host) found." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_SUNOS 1 _ACEOF ;; *-sunos*) { $as_echo "$as_me:$LINENO: result: Solaris ($host) found." >&5 $as_echo "Solaris ($host) found." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_SUNOS 1 _ACEOF ;; *-freebsd*) { $as_echo "$as_me:$LINENO: result: Free BSD ($host) found." >&5 $as_echo "Free BSD ($host) found." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_FREEBSD 1 _ACEOF ;; *-openbsd*) { $as_echo "$as_me:$LINENO: result: Open BSD ($host) found." >&5 $as_echo "Open BSD ($host) found." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_OPENBSD 1 _ACEOF ;; *-netbsd*) { $as_echo "$as_me:$LINENO: result: Net BSD ($host) found." >&5 $as_echo "Net BSD ($host) found." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_NETBSD 1 _ACEOF ;; *-darwin*) { $as_echo "$as_me:$LINENO: result: Darwin Mac OS X ($host) found." >&5 $as_echo "Darwin Mac OS X ($host) found." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_DARWIN 1 _ACEOF ;; *-aix*) { $as_echo "$as_me:$LINENO: result: AIX ($host) found." >&5 $as_echo "AIX ($host) found." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_AIX 1 _ACEOF ;; *-hpux*) { $as_echo "$as_me:$LINENO: result: HP UX ($host) found." >&5 $as_echo "HP UX ($host) found." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_HPUX 1 _ACEOF ;; *) { $as_echo "$as_me:$LINENO: result: Unknown host found: ($host). Using Linux macros..." >&5 $as_echo "Unknown host found: ($host). Using Linux macros..." >&6; } cat >>confdefs.h <<\_ACEOF #define USE_LINUX 1 _ACEOF ;; esac DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:$LINENO: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS 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 { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 $as_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. $as_echo "$as_me:$LINENO: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? $as_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.out.dSYM 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. { $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { (ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi { $as_echo "$as_me:$LINENO: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } if test -z "$ac_file"; then $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables See \`config.log' for more details." >&5 $as_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 # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&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' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_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 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_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 $as_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 { $as_echo "$as_me:$LINENO: result: yes" >&5 $as_echo "yes" >&6; } rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } { $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } { $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_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 | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 $as_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 { $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT { $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if test "${ac_cv_objext+set}" = set; then $as_echo_n "(cached) " >&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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 $as_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 { $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then $as_echo_n "(cached) " >&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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" 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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" 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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" 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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 $as_echo "$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 { $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=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 #include #include #include /* 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 -std 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 -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 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 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:$LINENO: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:$LINENO: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac 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= { $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then $as_echo_n "(cached) " >&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 am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac 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 # 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. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; 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 ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj 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 { $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$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 { $as_echo "$as_me:$LINENO: checking for library containing strerror" >&5 $as_echo_n "checking for library containing strerror... " >&6; } if test "${ac_cv_search_strerror+set}" = set; then $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$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 GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char strerror (); int main () { return strerror (); ; return 0; } _ACEOF for ac_lib in '' cposix; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then ac_cv_search_strerror=$ac_res else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext if test "${ac_cv_search_strerror+set}" = set; then break fi done if test "${ac_cv_search_strerror+set}" = set; then : else ac_cv_search_strerror=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 $as_echo "$ac_cv_search_strerror" >&6; } ac_res=$ac_cv_search_strerror if test "$ac_res" != no; then test "$ac_res" = "none required" || LIBS="$ac_res $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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS 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 { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 $as_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. $as_echo "$as_me:$LINENO: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then $as_echo_n "(cached) " >&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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" 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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" 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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" 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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 $as_echo "$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 { $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=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 #include #include #include /* 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 -std 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 -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 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 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:$LINENO: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:$LINENO: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac 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= { $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then $as_echo_n "(cached) " >&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 am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac 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 # 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. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; 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 ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj 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 { $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS 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 { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe 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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:$LINENO: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 $as_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. $as_echo "$as_me:$LINENO: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then $as_echo_n "(cached) " >&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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" 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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" 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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" 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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 $as_echo "$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 { $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=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 #include #include #include /* 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 -std 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 -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 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 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:$LINENO: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:$LINENO: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac 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= { $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then $as_echo_n "(cached) " >&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 am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac 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 # 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. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; 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 ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj 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 { $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$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 { $as_echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&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 $as_echo_n "(cached) " >&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 to if __STDC__ is defined, since # 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 #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&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 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else $as_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 nonexistent 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 _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&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 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else $as_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 { $as_echo "$as_me:$LINENO: result: $CPP" >&5 $as_echo "$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 to if __STDC__ is defined, since # 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 #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&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 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else $as_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 nonexistent 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 _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&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 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else $as_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 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 $as_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 { $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if test "${ac_cv_path_GREP+set}" = set; then $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break ac_count=`expr $ac_count + 1` if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 $as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} { (exit 1); exit 1; }; } fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:$LINENO: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if test "${ac_cv_path_EGREP+set}" = set; then $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break ac_count=`expr $ac_count + 1` if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 $as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} { (exit 1); exit 1; }; } fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if test "${ac_cv_header_stdc+set}" = set; then $as_echo_n "(cached) " >&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 #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_header_stdc=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdc=no fi rm -f core 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 _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 _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 #include #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)) return 2; return 0; } _ACEOF rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -rf conftest.dSYM rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi { $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi pkg_modules="gtk+-2.0 >= 1.3.13" if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_PKG_CONFIG+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:$LINENO: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:$LINENO: checking for PACKAGE" >&5 $as_echo_n "checking for PACKAGE... " >&6; } if test -n "$PACKAGE_CFLAGS"; then pkg_cv_PACKAGE_CFLAGS="$PACKAGE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\"") >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_PACKAGE_CFLAGS=`$PKG_CONFIG --cflags "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$PACKAGE_LIBS"; then pkg_cv_PACKAGE_LIBS="$PACKAGE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\"") >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_PACKAGE_LIBS=`$PKG_CONFIG --libs "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then PACKAGE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$pkg_modules" 2>&1` else PACKAGE_PKG_ERRORS=`$PKG_CONFIG --print-errors "$pkg_modules" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$PACKAGE_PKG_ERRORS" >&5 { { $as_echo "$as_me:$LINENO: error: Package requirements ($pkg_modules) were not met: $PACKAGE_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables PACKAGE_CFLAGS and PACKAGE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 $as_echo "$as_me: error: Package requirements ($pkg_modules) were not met: $PACKAGE_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables PACKAGE_CFLAGS and PACKAGE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables PACKAGE_CFLAGS and PACKAGE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&5 $as_echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables PACKAGE_CFLAGS and PACKAGE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; }; } else PACKAGE_CFLAGS=$pkg_cv_PACKAGE_CFLAGS PACKAGE_LIBS=$pkg_cv_PACKAGE_LIBS { $as_echo "$as_me:$LINENO: result: yes" >&5 $as_echo "yes" >&6; } : fi GETTEXT_PACKAGE=gadmin-bind cat >>confdefs.h <<_ACEOF #define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" _ACEOF ALL_LINGUAS="sv" # 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=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 $as_echo_n "checking for $ac_header... " >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then $as_echo_n "(cached) " >&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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then eval "$as_ac_Header=yes" else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_Header=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ac_res=`eval 'as_val=${'$as_ac_Header'} $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } as_val=`eval 'as_val=${'$as_ac_Header'} $as_echo "$as_val"'` if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in locale.h do as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 $as_echo_n "checking for $ac_header... " >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then $as_echo_n "(cached) " >&6 fi ac_res=`eval 'as_val=${'$as_ac_Header'} $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 $as_echo_n "checking $ac_header usability... " >&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 { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 $as_echo_n "checking $ac_header presence... " >&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 { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&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 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else $as_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 { $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 $as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 $as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ;; esac { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 $as_echo_n "checking for $ac_header... " >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then $as_echo_n "(cached) " >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval 'as_val=${'$as_ac_Header'} $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi as_val=`eval 'as_val=${'$as_ac_Header'} $as_echo "$as_val"'` if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done if test $ac_cv_header_locale_h = yes; then { $as_echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 $as_echo_n "checking for LC_MESSAGES... " >&6; } if test "${am_cv_val_LC_MESSAGES+set}" = set; then $as_echo_n "(cached) " >&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 int main () { return LC_MESSAGES ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then am_cv_val_LC_MESSAGES=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 am_cv_val_LC_MESSAGES=no fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 $as_echo "$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 { $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 $as_echo_n "checking for libintl.h... " >&6; } if test "${ac_cv_header_libintl_h+set}" = set; then $as_echo_n "(cached) " >&6 fi { $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 $as_echo "$ac_cv_header_libintl_h" >&6; } else # Is the header compilable? { $as_echo "$as_me:$LINENO: checking libintl.h usability" >&5 $as_echo_n "checking libintl.h usability... " >&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 _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:$LINENO: checking libintl.h presence" >&5 $as_echo_n "checking libintl.h presence... " >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&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 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else $as_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 { $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { $as_echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { $as_echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;} { $as_echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;} { $as_echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5 $as_echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;} { $as_echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5 $as_echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;} ;; esac { $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 $as_echo_n "checking for libintl.h... " >&6; } if test "${ac_cv_header_libintl_h+set}" = set; then $as_echo_n "(cached) " >&6 else ac_cv_header_libintl_h=$ac_header_preproc fi { $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 $as_echo "$ac_cv_header_libintl_h" >&6; } fi if test "x$ac_cv_header_libintl_h" = x""yes; then gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # { $as_echo "$as_me:$LINENO: checking for ngettext in libc" >&5 $as_echo_n "checking for ngettext in libc... " >&6; } if test "${gt_cv_func_ngettext_libc+set}" = set; then $as_echo_n "(cached) " >&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 int main () { return !ngettext ("","", 1) ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then gt_cv_func_ngettext_libc=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_func_ngettext_libc=no fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5 $as_echo "$gt_cv_func_ngettext_libc" >&6; } if test "$gt_cv_func_ngettext_libc" = "yes" ; then { $as_echo "$as_me:$LINENO: checking for dgettext in libc" >&5 $as_echo_n "checking for dgettext in libc... " >&6; } if test "${gt_cv_func_dgettext_libc+set}" = set; then $as_echo_n "(cached) " >&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 int main () { return !dgettext ("","") ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then gt_cv_func_dgettext_libc=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_func_dgettext_libc=no fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5 $as_echo "$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=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` { $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 $as_echo_n "checking for $ac_func... " >&6; } if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then $as_echo_n "(cached) " >&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 declares $ac_func. For example, HP-UX 11i 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 to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $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 #endif int main () { return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then eval "$as_ac_var=yes" else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval 'as_val=${'$as_ac_var'} $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } as_val=`eval 'as_val=${'$as_ac_var'} $as_echo "$as_val"'` if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_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 { $as_echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5 $as_echo_n "checking for bindtextdomain in -lintl... " >&6; } if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then $as_echo_n "(cached) " >&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 GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char bindtextdomain (); int main () { return bindtextdomain (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then ac_cv_lib_intl_bindtextdomain=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_bindtextdomain=no fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5 $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } if test "${ac_cv_lib_intl_ngettext+set}" = set; then $as_echo_n "(cached) " >&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 GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then ac_cv_lib_intl_ngettext=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_ngettext=no fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } if test "x$ac_cv_lib_intl_ngettext" = x""yes; then { $as_echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5 $as_echo_n "checking for dgettext in -lintl... " >&6; } if test "${ac_cv_lib_intl_dgettext+set}" = set; then $as_echo_n "(cached) " >&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 GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dgettext (); int main () { return dgettext (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then ac_cv_lib_intl_dgettext=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_dgettext=no fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5 $as_echo "$ac_cv_lib_intl_dgettext" >&6; } if test "x$ac_cv_lib_intl_dgettext" = x""yes; then gt_cv_func_dgettext_libintl=yes fi fi fi if test "$gt_cv_func_dgettext_libintl" != "yes" ; then { $as_echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5 $as_echo_n "checking if -liconv is needed to use gettext... " >&6; } { $as_echo "$as_me:$LINENO: result: " >&5 $as_echo "" >&6; } { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } if test "${ac_cv_lib_intl_ngettext+set}" = set; then $as_echo_n "(cached) " >&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 GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then ac_cv_lib_intl_ngettext=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_ngettext=no fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } if test "x$ac_cv_lib_intl_ngettext" = x""yes; then { $as_echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5 $as_echo_n "checking for dcgettext in -lintl... " >&6; } if test "${ac_cv_lib_intl_dcgettext+set}" = set; then $as_echo_n "(cached) " >&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 GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dcgettext (); int main () { return dcgettext (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then ac_cv_lib_intl_dcgettext=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_dcgettext=no fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5 $as_echo "$ac_cv_lib_intl_dcgettext" >&6; } if test "x$ac_cv_lib_intl_dcgettext" = x""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=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` { $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 $as_echo_n "checking for $ac_func... " >&6; } if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then $as_echo_n "(cached) " >&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 declares $ac_func. For example, HP-UX 11i 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 to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $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 #endif int main () { return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then eval "$as_ac_var=yes" else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval 'as_val=${'$as_ac_var'} $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } as_val=`eval 'as_val=${'$as_ac_var'} $as_echo "$as_val"'` if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_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 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_MSGFMT+set}" = set; then $as_echo_n "(cached) " >&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 { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" for ac_func in dcgettext do as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` { $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 $as_echo_n "checking for $ac_func... " >&6; } if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then $as_echo_n "(cached) " >&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 declares $ac_func. For example, HP-UX 11i 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 to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $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 #endif int main () { return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then eval "$as_ac_var=yes" else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval 'as_val=${'$as_ac_var'} $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } as_val=`eval 'as_val=${'$as_ac_var'} $as_echo "$as_val"'` if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done MSGFMT_OPTS= { $as_echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5 $as_echo_n "checking if msgfmt accepts -c... " >&6; } cat >conftest.foo <<_ACEOF msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test \n" "Language-Team: C \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" _ACEOF if { ($as_echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5 ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 ac_status=$? $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then MSGFMT_OPTS=-c; { $as_echo "$as_me:$LINENO: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } echo "$as_me: failed input was:" >&5 sed 's/^/| /' conftest.foo >&5 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_GMSGFMT+set}" = set; then $as_echo_n "(cached) " >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:$LINENO: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_XGETTEXT+set}" = set; then $as_echo_n "(cached) " >&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 { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:$LINENO: result: no" >&5 $as_echo "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 { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then CATOBJEXT=.gmo DATADIRNAME=share else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 case $host in *-*-solaris*) { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 $as_echo_n "checking for bind_textdomain_codeset... " >&6; } if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then $as_echo_n "(cached) " >&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 declares bind_textdomain_codeset. For example, HP-UX 11i 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 to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef bind_textdomain_codeset /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char 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 #endif int main () { return bind_textdomain_codeset (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" $as_echo "$ac_try_echo") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then ac_cv_func_bind_textdomain_codeset=yes else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_bind_textdomain_codeset=no fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 $as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; } if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then CATOBJEXT=.gmo DATADIRNAME=share else CATOBJEXT=.mo DATADIRNAME=lib fi ;; *) CATOBJEXT=.mo DATADIRNAME=lib ;; esac fi rm -rf conftest.dSYM rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 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 { $as_echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 $as_echo "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 { $as_echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 $as_echo_n "checking for catalogs to be installed... " >&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 { $as_echo "$as_me:$LINENO: result: $LINGUAS" >&5 $as_echo "$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 if test "x$GCC" = "xyes"; then case " $CFLAGS " in *[\ \ ]-Wall[\ \ ]*) ;; *) CFLAGS="$CFLAGS -Wall" ;; esac fi SYSCONFDIR=`eval echo $sysconfdir` LOCALSTATEDIR=`eval echo $localstatedir` SBINDIR=`eval echo $sbindir` test "x$prefix" = xNONE && prefix=$ac_default_prefix test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' cat >>confdefs.h <<_ACEOF #define SYSCONFDIR "`eval echo "${sysconfdir}"`" _ACEOF cat >>confdefs.h <<_ACEOF #define LOCALSTATEDIR "`eval echo "${localstatedir}"`" _ACEOF default_chroot_path=`eval echo $localstatedir`"/named" test "x$CHROOT_PATH" = x && CHROOT_PATH=$default_chroot_path cat >>confdefs.h <<_ACEOF #define CHROOT_PATH "`eval echo "$CHROOT_PATH"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using chroot path: (${CHROOT_PATH})" >&5 $as_echo "Using chroot path: (${CHROOT_PATH})" >&6; } default_rndc_conf=`eval echo $sysconfdir`"/rndc.conf" test "x$RNDC_CONF" = x && RNDC_CONF=$default_rndc_conf cat >>confdefs.h <<_ACEOF #define RNDC_CONF "`eval echo "$RNDC_CONF"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using rndc.conf: (${RNDC_CONF})" >&5 $as_echo "Using rndc.conf: (${RNDC_CONF})" >&6; } default_resolv_conf=`eval echo $sysconfdir`"/resolv.conf" test "x$RESOLV_PATH" = x && RESOLV_PATH=$default_resolv_conf cat >>confdefs.h <<_ACEOF #define RESOLV_PATH "`eval echo "$RESOLV_PATH"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using resolv.conf: (${RESOLV_PATH})" >&5 $as_echo "Using resolv.conf: (${RESOLV_PATH})" >&6; } default_syslog_file=`eval echo $localstatedir`"/log/messages" test "x$SYSLOG_PATH" = x && SYSLOG_PATH=$default_syslog_file cat >>confdefs.h <<_ACEOF #define SYSLOG_PATH "`eval echo "$SYSLOG_PATH"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using syslog file: (${SYSLOG_PATH})" >&5 $as_echo "Using syslog file: (${SYSLOG_PATH})" >&6; } default_proc_path="/proc" test "x$PROC_PATH" = x && PROC_PATH=$default_proc_path cat >>confdefs.h <<_ACEOF #define PROC_PATH "`eval echo "$PROC_PATH"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using proc filesystem: (${PROC_PATH})" >&5 $as_echo "Using proc filesystem: (${PROC_PATH})" >&6; } default_settings_dir=`eval echo $sysconfdir`"/gadmin-bind" test "x$SETTINGS_DIR" = x && SETTINGS_DIR=$default_settings_dir cat >>confdefs.h <<_ACEOF #define SETTINGS_DIR "`eval echo "$SETTINGS_DIR"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using settings directory: (${SETTINGS_DIR})" >&5 $as_echo "Using settings directory: (${SETTINGS_DIR})" >&6; } default_named_binary="named" test "x$NAMED_BINARY" = x && NAMED_BINARY=$default_named_binary cat >>confdefs.h <<_ACEOF #define NAMED_BINARY "`eval echo "${NAMED_BINARY}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using bind binary: (${NAMED_BINARY})" >&5 $as_echo "Using bind binary: (${NAMED_BINARY})" >&6; } default_rndc_binary="rndc" test "x$RNDC_BINARY" = x && RNDC_BINARY=$default_rndc_binary cat >>confdefs.h <<_ACEOF #define RNDC_BINARY "`eval echo "${RNDC_BINARY}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using rndc binary: (${RNDC_BINARY})" >&5 $as_echo "Using rndc binary: (${RNDC_BINARY})" >&6; } default_rndc_confgen_binary="rndc-confgen" test "x$RNDC_CONFGEN_BINARY" = x && RNDC_CONFGEN_BINARY=$default_rndc_confgen_binary cat >>confdefs.h <<_ACEOF #define RNDC_CONFGEN_BINARY "`eval echo "${RNDC_CONFGEN_BINARY}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using rndc-confgen binary: (${RNDC_CONFGEN_BINARY})" >&5 $as_echo "Using rndc-confgen binary: (${RNDC_CONFGEN_BINARY})" >&6; } default_sed_binary="sed" test "x$SED_BINARY" = x && SED_BINARY=$default_sed_binary cat >>confdefs.h <<_ACEOF #define SED_BINARY "`eval echo "${SED_BINARY}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using sed binary: (${SED_BINARY})" >&5 $as_echo "Using sed binary: (${SED_BINARY})" >&6; } default_dig_binary="dig" test "x$DIG_BINARY" = x && DIG_BINARY=$default_dig_binary cat >>confdefs.h <<_ACEOF #define DIG_BINARY "`eval echo "${DIG_BINARY}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using dig binary: (${DIG_BINARY})" >&5 $as_echo "Using dig binary: (${DIG_BINARY})" >&6; } default_named_user="nobody" test "x$NAMED_USER" = x && NAMED_USER=$default_named_user cat >>confdefs.h <<_ACEOF #define NAMED_USER "`eval echo "${NAMED_USER}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using bind user: (${NAMED_USER})" >&5 $as_echo "Using bind user: (${NAMED_USER})" >&6; } default_useradd_binary="useradd" test "x$USERADD_BINARY" = x && USERADD_BINARY=$default_useradd_binary cat >>confdefs.h <<_ACEOF #define USERADD_BINARY "`eval echo "${USERADD_BINARY}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using useradd binary: (${USERADD_BINARY})" >&5 $as_echo "Using useradd binary: (${USERADD_BINARY})" >&6; } default_groupadd_binary="groupadd" test "x$GROUPADD_BINARY" = x && GROUPADD_BINARY=$default_groupadd_binary cat >>confdefs.h <<_ACEOF #define GROUPADD_BINARY "`eval echo "${GROUPADD_BINARY}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using groupadd binary: (${GROUPADD_BINARY})" >&5 $as_echo "Using groupadd binary: (${GROUPADD_BINARY})" >&6; } default_cmd_sleep_log_secs=3 test "x$CMD_SLEEP_LOG_SECS" = x && CMD_SLEEP_LOG_SECS=$default_cmd_sleep_log_secs cat >>confdefs.h <<_ACEOF #define CMD_SLEEP_LOG_SECS "`eval echo "$CMD_SLEEP_LOG_SECS"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using sleep before log seconds: (${CMD_SLEEP_LOG_SECS})" >&5 $as_echo "Using sleep before log seconds: (${CMD_SLEEP_LOG_SECS})" >&6; } default_sysinit_start_cmd="none" test "x$SYSINIT_START_CMD" = x && SYSINIT_START_CMD=$default_sysinit_start_cmd cat >>confdefs.h <<_ACEOF #define SYSINIT_START_CMD "`eval echo "$SYSINIT_START_CMD"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using sysinit start cmd: (${SYSINIT_START_CMD})" >&5 $as_echo "Using sysinit start cmd: (${SYSINIT_START_CMD})" >&6; } default_sysinit_scripts_dir="/etc/init.d" test "x$SYSINIT_SCRIPTS_DIR" = x && SYSINIT_SCRIPTS_DIR=$default_sysinit_scripts_dir cat >>confdefs.h <<_ACEOF #define SYSINIT_SCRIPTS_DIR "`eval echo "${SYSINIT_SCRIPTS_DIR}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using sysinit scripts dir: (${SYSINIT_SCRIPTS_DIR})" >&5 $as_echo "Using sysinit scripts dir: (${SYSINIT_SCRIPTS_DIR})" >&6; } default_sysinit_script_name="gadmin-bind" test "x$SYSINIT_SCRIPT_NAME" = x && SYSINIT_SCRIPT_NAME=$default_sysinit_script_name cat >>confdefs.h <<_ACEOF #define SYSINIT_SCRIPT_NAME "`eval echo "${SYSINIT_SCRIPT_NAME}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using sysinit script name: (${SYSINIT_SCRIPT_NAME})" >&5 $as_echo "Using sysinit script name: (${SYSINIT_SCRIPT_NAME})" >&6; } default_sysinit_stop_cmd="none" test "x$SYSINIT_STOP_CMD" = x && SYSINIT_STOP_CMD=$default_sysinit_stop_cmd cat >>confdefs.h <<_ACEOF #define SYSINIT_STOP_CMD "`eval echo "$SYSINIT_STOP_CMD"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using sysinit stop cmd: (${SYSINIT_STOP_CMD})" >&5 $as_echo "Using sysinit stop cmd: (${SYSINIT_STOP_CMD})" >&6; } PASSWD_FILE="/etc/passwd" cat >>confdefs.h <<_ACEOF #define PASSWD_FILE "`eval echo "${PASSWD_FILE}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using password file: (${PASSWD_FILE})" >&5 $as_echo "Using password file: (${PASSWD_FILE})" >&6; } SHADOW_FILE="/etc/shadow" cat >>confdefs.h <<_ACEOF #define SHADOW_FILE "`eval echo "${SHADOW_FILE}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using shadow file: (${SHADOW_FILE})" >&5 $as_echo "Using shadow file: (${SHADOW_FILE})" >&6; } GROUP_FILE="/etc/group" cat >>confdefs.h <<_ACEOF #define GROUP_FILE "`eval echo "${GROUP_FILE}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using group file: (${GROUP_FILE})" >&5 $as_echo "Using group file: (${GROUP_FILE})" >&6; } GSHADOW_FILE="/etc/gshadow" cat >>confdefs.h <<_ACEOF #define GSHADOW_FILE "`eval echo "${GSHADOW_FILE}"`" _ACEOF { $as_echo "$as_me:$LINENO: result: Using gshadow file: (${GSHADOW_FILE})" >&5 $as_echo "Using gshadow file: (${GSHADOW_FILE})" >&6; } 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, we kill variables containing newlines. # 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. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) $as_unset $ac_var ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}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 "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end 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" && { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} 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}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then { { $as_echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." >&5 $as_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 { { $as_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 $as_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 { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 $as_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 { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 $as_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 { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 $as_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_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 #! $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 || ac_write_fail=1 ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # PATH needs CR # 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 as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. 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 IFS=$as_save_IFS ;; 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 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; 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 || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # 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 after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, 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 # scripts with optimization help from Paolo Bonzini. Blame Lee # E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_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 sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # 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'" exec 6>&1 # Save the log message, to keep $[0] and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by $as_me, which was generated by GNU Autoconf 2.63. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTION]... [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit -q, --quiet, --silent 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 ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.63, with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2008 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. 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 ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac CONFIG_FILES="$CONFIG_FILES '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header { $as_echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; };; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) { $as_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" ac_need_defaults=false ;; 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 || ac_write_fail=1 if \$ac_cs_recheck; then set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 $as_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 against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= trap 'exit_status=$? { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$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 "./confXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || { $as_echo "$as_me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=' ' ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\).*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\).*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5 $as_echo "$as_me: error: could not setup config files machinery" >&2;} { (exit 1); exit 1; }; } _ACEOF # 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 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_t=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_t"; then break elif $ac_last_try; then { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5 $as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #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. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5 $as_echo "$as_me: error: could not setup config headers machinery" >&2;} { (exit 1); exit 1; }; } fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5 $as_echo "$as_me: error: invalid tag $ac_tag" >&2;} { (exit 1); exit 1; }; };; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 $as_echo "$as_me: error: cannot find input file: $ac_f" >&2;} { (exit 1); exit 1; }; };; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac ac_file_inputs="$ac_file_inputs '$ac_f'" done # 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. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:$LINENO: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin" \ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 $as_echo "$as_me: error: could not create $ac_file" >&2;} { (exit 1); exit 1; }; } ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` { as_dir="$ac_dir" case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 $as_echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p ' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;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&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 $as_echo "$as_me: error: could not create $ac_file" >&2;} { (exit 1); exit 1; }; } test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&2;} rm -f "$tmp/stdin" case $ac_file in -) cat "$tmp/out" && rm -f "$tmp/out";; *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; esac \ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 $as_echo "$as_me: error: could not create $ac_file" >&2;} { (exit 1); exit 1; }; } ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" } >"$tmp/config.h" \ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 $as_echo "$as_me: error: could not create $ac_file" >&2;} { (exit 1); exit 1; }; } if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$tmp/config.h" "$ac_file" \ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 $as_echo "$as_me: error: could not create $ac_file" >&2;} { (exit 1); exit 1; }; } fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5 $as_echo "$as_me: error: could not create -" >&2;} { (exit 1); exit 1; }; } fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf 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. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_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=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` { as_dir=$dirpart/$fdir case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 $as_echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac ;; esac done # for ac_tag { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5 $as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } # 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 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi gadmin-bind-0.2.5/etc/0000755000000000000000000000000010217276354013147 5ustar rootrootgadmin-bind-0.2.5/etc/pam.d/0000755000076400007640000000000010750417217014427 5ustar bomanbomangadmin-bind-0.2.5/etc/pam.d/gadmin-bind0000644000000000000000000000021610727575454016252 0ustar rootroot#%PAM-1.0 auth include config-util account include config-util session include config-util gadmin-bind-0.2.5/etc/security/0000755000076400007640000000000007733307621015303 5ustar bomanbomangadmin-bind-0.2.5/etc/security/console.apps/0000755000076400007640000000000010750417275017707 5ustar bomanbomangadmin-bind-0.2.5/etc/security/console.apps/gadmin-bind0000644000000000000000000000006510750417275021520 0ustar rootrootUSER=root PROGRAM=/usr/sbin/gadmin-bind SESSION=true gadmin-bind-0.2.5/config.h.in0000644000000000000000000000713711334742553014427 0ustar rootroot/* config.h.in. Generated from configure.in by autoheader. */ /* Path to the chroot /var/named directory */ #undef CHROOT_PATH /* Seconds to wait from starting named until the log tab is updated */ #undef CMD_SLEEP_LOG_SECS /* Path to the dig binary */ #undef DIG_BINARY /* always defined to indicate that i18n is enabled */ #undef ENABLE_NLS /* needed for gettext... */ #undef GETTEXT_PACKAGE /* The groupadd binary */ #undef GROUPADD_BINARY /* Path to group */ #undef GROUP_FILE /* Path to gshadow */ #undef GSHADOW_FILE /* 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 header file. */ #undef HAVE_INTTYPES_H /* Define if your file defines LC_MESSAGES. */ #undef HAVE_LC_MESSAGES /* Define to 1 if you have the header file. */ #undef HAVE_LOCALE_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* localstatedir */ #undef LOCALSTATEDIR /* Path to the named binary */ #undef NAMED_BINARY /* The user which named runs as */ #undef NAMED_USER /* 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 /* Path to passwd */ #undef PASSWD_FILE /* Path to the proc filesystem */ #undef PROC_PATH /* Path to resolv.conf */ #undef RESOLV_PATH /* Path to the rndc binary */ #undef RNDC_BINARY /* Path to rndc.conf */ #undef RNDC_CONF /* Path to the rndc-confgen binary */ #undef RNDC_CONFGEN_BINARY /* Path to the sed binary */ #undef SED_BINARY /* Path to settings directory etc/gadmin-bind */ #undef SETTINGS_DIR /* Path to shadow */ #undef SHADOW_FILE /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* sysconfdir */ #undef SYSCONFDIR /* Path to the sysinit scripts directory */ #undef SYSINIT_SCRIPTS_DIR /* Name of the sysinit script */ #undef SYSINIT_SCRIPT_NAME /* Command for starting the server at boot */ #undef SYSINIT_START_CMD /* Command for not starting the server at boot */ #undef SYSINIT_STOP_CMD /* Path to syslog messages */ #undef SYSLOG_PATH /* The useradd binary */ #undef USERADD_BINARY /* using aix macros... */ #undef USE_AIX /* using darwin macros... */ #undef USE_DARWIN /* using freebsd macros... */ #undef USE_FREEBSD /* using hpux macros... */ #undef USE_HPUX /* using Linux macros... */ #undef USE_LINUX /* using netbsd macros... */ #undef USE_NETBSD /* using openbsd macros... */ #undef USE_OPENBSD /* using sunos macros... */ #undef USE_SUNOS /* Version number of package */ #undef VERSION gadmin-bind-0.2.5/desktop/0000755000076400007640000000000010760310400014311 5ustar bomanbomangadmin-bind-0.2.5/desktop/gadmin-bind.desktop0000644000000000000000000000077510760310354017612 0ustar rootroot[Desktop Entry] Encoding=UTF-8 Name=GADMIN-BIND Name[de]=GADMIN-BIND Name[es]=GADMIN-BIND Name[fi]=GADMIN-BIND Name[fr]=GADMIN-BIND Name[ko]=GADMIN-BIND Name[no]=GADMIN-BIND Name[pt_BR]=GADMIN-BIND Name[sl]=GADMIN-BIND Name[sv]=GADMIN-BIND Name[uk]=GADMIN-BIND Name[ro]=GADMIN-BIND Name[zh_TW]=GADMIN-BIND GenericName=GADMIN-BIND Comment=BIND DNS server administration Exec=gadmin-bind Icon=gadmin-bind.png Terminal=false Type=Application Categories=Application;Network;X-Red-Hat-ServerConfig;X-Red-Hat-Base;