You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bluesky-commits@incubator.apache.org by pi...@apache.org on 2009/11/30 11:44:54 UTC

svn commit: r885383 [12/18] - in /incubator/bluesky/trunk/RealClass: DTU/ DTU/autom4te.cache/ DTU/src/ DTU/src/.deps/ Teacher/src/

Added: incubator/bluesky/trunk/RealClass/DTU/missing
URL: http://svn.apache.org/viewvc/incubator/bluesky/trunk/RealClass/DTU/missing?rev=885383&view=auto
==============================================================================
--- incubator/bluesky/trunk/RealClass/DTU/missing (added)
+++ incubator/bluesky/trunk/RealClass/DTU/missing Mon Nov 30 11:44:51 2009
@@ -0,0 +1,198 @@
+#! /bin/sh
+# Common stub for a few missing GNU programs while installing.
+# Copyright (C) 1996, 1997, 2001, 2002 Free Software Foundation, Inc.
+# Franc,ois Pinard <pi...@iro.umontreal.ca>, 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.
+
+if test $# -eq 0; then
+  echo 1>&2 "Try \`$0 --help' for more information"
+  exit 1
+fi
+
+# In the cases where this matters, `missing' is being run in the
+# srcdir already.
+if test -f configure.in; then
+  configure_ac=configure.ac
+else
+  configure_ac=configure.in
+fi
+
+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
+
+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
+  lex          create \`lex.yy.c', if possible, from existing .c
+  makeinfo     touch the output file
+  yacc         create \`y.tab.[ch]', if possible, from existing .[ch]"
+    ;;
+
+  -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
+    echo "missing - GNU libit 0.0"
+    ;;
+
+  -*)
+    echo 1>&2 "$0: Unknown \`$1' option"
+    echo 1>&2 "Try \`$0 --help' for more information"
+    exit 1
+    ;;
+
+  aclocal*)
+    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)
+    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)
+    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*)
+    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
+    ;;
+
+  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
+    ;;
+
+  makeinfo)
+    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
+    ;;
+
+  *)
+    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

Added: incubator/bluesky/trunk/RealClass/DTU/mkinstalldirs
URL: http://svn.apache.org/viewvc/incubator/bluesky/trunk/RealClass/DTU/mkinstalldirs?rev=885383&view=auto
==============================================================================
--- incubator/bluesky/trunk/RealClass/DTU/mkinstalldirs (added)
+++ incubator/bluesky/trunk/RealClass/DTU/mkinstalldirs Mon Nov 30 11:44:51 2009
@@ -0,0 +1,40 @@
+#! /bin/sh
+# mkinstalldirs --- make directory hierarchy
+# Author: Noah Friedman <fr...@prep.ai.mit.edu>
+# Created: 1993-05-16
+# Public domain
+
+# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $
+
+errstatus=0
+
+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
+        fi
+     fi
+
+     pathcomp="$pathcomp/"
+   done
+done
+
+exit $errstatus
+
+# mkinstalldirs ends here

Added: incubator/bluesky/trunk/RealClass/DTU/setup-gettext
URL: http://svn.apache.org/viewvc/incubator/bluesky/trunk/RealClass/DTU/setup-gettext?rev=885383&view=auto
==============================================================================
--- incubator/bluesky/trunk/RealClass/DTU/setup-gettext (added)
+++ incubator/bluesky/trunk/RealClass/DTU/setup-gettext Mon Nov 30 11:44:51 2009
@@ -0,0 +1,201 @@
+#!/bin/sh
+#
+# setup-gettext - Provides compatibility with versions of gettext
+#                 from the 0.10.x series and 0.11.x.
+#
+# Copyright (C) 2002 Christian Hammond.
+#
+# 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
+#
+
+VERSION=0.1.3
+
+VERBOSE=1
+
+parse_gettext_version() {
+	GETTEXT_VERSION=`$GETTEXT_TOOL --version | sed -n 's/^.*\([0-9]\+\)\.\([0-9]\+\)\.\([0-9]\+\).*$/\1.\2.\3/p'`
+	GETTEXT_MAJOR_VERSION=`echo $GETTEXT_VERSION | sed -n 's/^\([0-9]\+\).*/\1/p'`
+	GETTEXT_MINOR_VERSION=`echo $GETTEXT_VERSION | sed -n 's/^[0-9]\+\.\([0-9]\+\).*/\1/p'`
+	GETTEXT_MICRO_VERSION=`echo $GETTEXT_VERSION | sed -n 's/^[0-9]\+\.[0-9]\+\.\([0-9]\+\).*/\1/p'`
+}
+
+find_gettext() {
+	GETTEXT_TOOL=autopoint
+	
+	(autopoint --version) < /dev/null > /dev/null 2>&1 || {
+		GETTEXT_TOOL=gettextize
+
+		(gettextize --version) < /dev/null > /dev/null 2>&1 || {
+			GETTEXT_TOOL=
+		}
+	}
+}
+
+install() {
+	[ -f configure.in ] && {
+		cp configure.in .tmp-configure.in
+		sed -e 's/^AM_GNU_GETTEXT\(.*\)$/AM_GNU_GETTEXT\1\
+AM_GNU_GETTEXT_VERSION(0.10.40)/' < .tmp-configure.in > configure.in
+		rm .tmp-configure.in
+	}
+
+	[ -f configure.ac ] && {
+		cp configure.ac .tmp-configure.ac
+		sed -e 's/^AM_GNU_GETTEXT\(.*\)$/AM_GNU_GETTEXT\1\
+AM_GNU_GETTEXT_VERSION(0.10.40)/' < .tmp-configure.ac > configure.ac
+		rm .tmp-configure.ac
+	}
+
+	[ -f autogen.sh ] && {
+		cp autogen.sh .tmp-autogen.sh
+		sed -e 's/\(gettextize\|autopoint\) --version/.\/setup-gettext --gettext-tool/1' -e 's/^\(echo.*|[\t ]*\)\?\(gettextize\|autopoint\) -.*$/.\/setup-gettext/1' < .tmp-autogen.sh > autogen.sh
+		rm .tmp-autogen.sh
+	}
+
+	echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' >> acinclude.m4
+}
+
+backup_m4() {
+	[ -d m4 ] && mv m4 m4~
+}
+
+restore_m4() {
+	[ -d m4~ ] && {
+		rm -rf m4
+		mv m4~ m4
+	}
+}
+
+restore_files() {
+	[ -f configure.in~ ] && mv -f configure.in~ configure.in
+	[ -f configure.ac~ ] && mv -f configure.ac~ configure.ac
+	[ -f Makefile.am~ ]  && mv -f Makefile.am~  Makefile.am
+}
+
+abort() {
+	restore_files
+	restore_m4
+
+	exit 1
+}
+
+# Main code
+
+find_gettext
+
+# See if a version of gettext and its tools are installed.
+if [ x$GETTEXT_TOOL = x ]; then
+	echo
+	echo "You do not have a version of gettext installed."
+	echo "Please download one from your local package repository or"
+	echo "from ftp://ftp.gnu.org/pub/gnu/gettext/"
+	echo
+	exit 1
+fi
+
+parse_gettext_version
+
+NUMVAR=$#
+
+if [ $NUMVAR -gt 0 ]; then
+	if [ $NUMVAR -gt 1 ]; then
+		echo "Only one option at a time!"
+		exit 1
+
+	elif [ $1 = "--gettext-tool" ]; then
+		echo $GETTEXT_TOOL
+		exit 0
+
+	elif [ $1 = "--help" ]; then
+		echo "setup-gettext v$VERSION"
+		echo "Usage:"
+		echo "   --gettext-tool           Returns gettextize or autopoint, depending"
+		echo "                            on the version of gettext installed."
+		echo "   --gettext-version        Returns the version of gettext installed."
+		echo "   --gettext-major-version  Returns the major version of gettext installed."
+		echo "   --gettext-minor-version  Returns the minor version of gettext installed."
+		echo "   --gettext-micro-version  Returns the micro version of gettext installed."
+		echo "   --help                   Displays this help screen."
+		echo
+		exit 0
+
+	elif [ $1 = "--version" ]; then
+		echo $VERSION
+		exit 0
+
+	elif [ $1 = "--gettext-version" ]; then
+		echo $GETTEXT_VERSION
+		exit 0
+
+	elif [ $1 = "--gettext-major-version" ]; then
+		echo $GETTEXT_MAJOR_VERSION
+		exit 0
+
+	elif [ $1 = "--gettext-minor-version" ]; then
+		echo $GETTEXT_MINOR_VERSION
+		exit 0
+
+	elif [ $1 = "--gettext-micro-version" ]; then
+		echo $GETTEXT_MICRO_VERSION
+		exit 0
+	
+	elif [ $1 = "--install" ]; then
+		install
+		echo "setup-gettext installed."
+		exit 0
+
+	elif [ $1 = "--happy-url" ]; then
+		echo http://gaim.sf.net/forkgettext.jpg
+		exit 0
+	
+	elif [ $1 = "--verbose" ]; then
+		VERBOSE=1
+
+	else
+		echo "Invalid option '$1'"
+		exit 1
+	fi
+fi
+
+# Okay, run the main stuff
+if [ "$GETTEXT_TOOL" = "autopoint" ]; then
+	backup_m4
+	[ $VERBOSE -eq 1 ] && echo "  autopoint --force"
+	echo n | autopoint --force || abort
+	restore_m4
+else
+	if [ $GETTEXT_MINOR_VERSION -eq 11 ]; then
+		backup_m4
+
+		# Gettext is pure evil. It DEMANDS that we press Return no matter
+		# what. This gets rid of their happy "feature" of doom.
+		[ $VERBOSE -eq 1 ] && \
+			echo "  gettextize --copy --force --intl --no-changelog"
+
+		sed 's:read .*< /dev/tty::' `which gettextize` > .temp-gettextize
+		chmod +x .temp-gettextize
+		echo n | ./.temp-gettextize --copy --force --intl --no-changelog || abort
+		rm .temp-gettextize
+
+		restore_files
+		restore_m4
+
+		[ -f po/Makevars.template ] && mv po/Makevars.template po/Makevars
+	else
+		[ $VERBOSE -eq 1 ] && echo "  gettextize --copy --force --intl"
+		echo n | gettextize --copy --force --intl || exit;
+	fi
+fi

Added: incubator/bluesky/trunk/RealClass/DTU/src/.deps/asyncsocketex.P
URL: http://svn.apache.org/viewvc/incubator/bluesky/trunk/RealClass/DTU/src/.deps/asyncsocketex.P?rev=885383&view=auto
==============================================================================
--- incubator/bluesky/trunk/RealClass/DTU/src/.deps/asyncsocketex.P (added)
+++ incubator/bluesky/trunk/RealClass/DTU/src/.deps/asyncsocketex.P Mon Nov 30 11:44:51 2009
@@ -0,0 +1,102 @@
+asyncsocketex.o: asyncsocketex.cpp stdafx.h /usr/include/sys/socket.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/sys/uio.h \
+  /usr/include/sys/types.h /usr/include/bits/types.h \
+  /usr/include/bits/typesizes.h /usr/include/time.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/stddef.h \
+  /usr/include/endian.h /usr/include/bits/endian.h \
+  /usr/include/sys/select.h /usr/include/bits/select.h \
+  /usr/include/bits/sigset.h /usr/include/bits/time.h \
+  /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
+  /usr/include/bits/uio.h /usr/include/bits/socket.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/limits.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/syslimits.h \
+  /usr/include/limits.h /usr/include/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/include/bits/sockaddr.h \
+  /usr/include/asm/socket.h /usr/include/asm/sockios.h \
+  /usr/include/netinet/in.h /usr/include/stdint.h \
+  /usr/include/bits/wchar.h /usr/include/bits/in.h \
+  /usr/include/bits/byteswap.h /usr/include/arpa/inet.h \
+  /usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \
+  /usr/include/asm/ioctls.h /usr/include/asm/ioctl.h \
+  /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \
+  /usr/include/sys/ttydefaults.h /usr/include/net/if.h \
+  /usr/include/string.h /usr/include/xlocale.h /usr/include/netdb.h \
+  /usr/include/rpc/netdb.h /usr/include/bits/siginfo.h \
+  /usr/include/bits/netdb.h /usr/include/unistd.h \
+  /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
+  /usr/include/bits/confname.h /usr/include/getopt.h /usr/include/stdio.h \
+  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/stdarg.h \
+  /usr/include/bits/sys_errlist.h asyncsocketex.h
+asyncsocketex.cpp :
+stdafx.h :
+/usr/include/sys/socket.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/sys/uio.h :
+/usr/include/sys/types.h :
+/usr/include/bits/types.h :
+/usr/include/bits/typesizes.h :
+/usr/include/time.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/stddef.h :
+/usr/include/endian.h :
+/usr/include/bits/endian.h :
+/usr/include/sys/select.h :
+/usr/include/bits/select.h :
+/usr/include/bits/sigset.h :
+/usr/include/bits/time.h :
+/usr/include/sys/sysmacros.h :
+/usr/include/bits/pthreadtypes.h :
+/usr/include/bits/uio.h :
+/usr/include/bits/socket.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/limits.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/syslimits.h :
+/usr/include/limits.h :
+/usr/include/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/include/bits/sockaddr.h :
+/usr/include/asm/socket.h :
+/usr/include/asm/sockios.h :
+/usr/include/netinet/in.h :
+/usr/include/stdint.h :
+/usr/include/bits/wchar.h :
+/usr/include/bits/in.h :
+/usr/include/bits/byteswap.h :
+/usr/include/arpa/inet.h :
+/usr/include/sys/ioctl.h :
+/usr/include/bits/ioctls.h :
+/usr/include/asm/ioctls.h :
+/usr/include/asm/ioctl.h :
+/usr/include/asm-generic/ioctl.h :
+/usr/include/bits/ioctl-types.h :
+/usr/include/sys/ttydefaults.h :
+/usr/include/net/if.h :
+/usr/include/string.h :
+/usr/include/xlocale.h :
+/usr/include/netdb.h :
+/usr/include/rpc/netdb.h :
+/usr/include/bits/siginfo.h :
+/usr/include/bits/netdb.h :
+/usr/include/unistd.h :
+/usr/include/bits/posix_opt.h :
+/usr/include/bits/environments.h :
+/usr/include/bits/confname.h :
+/usr/include/getopt.h :
+/usr/include/stdio.h :
+/usr/include/libio.h :
+/usr/include/_G_config.h :
+/usr/include/wchar.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/stdarg.h :
+/usr/include/bits/sys_errlist.h :
+asyncsocketex.h :

Added: incubator/bluesky/trunk/RealClass/DTU/src/.deps/callbacks.P
URL: http://svn.apache.org/viewvc/incubator/bluesky/trunk/RealClass/DTU/src/.deps/callbacks.P?rev=885383&view=auto
==============================================================================
--- incubator/bluesky/trunk/RealClass/DTU/src/.deps/callbacks.P (added)
+++ incubator/bluesky/trunk/RealClass/DTU/src/.deps/callbacks.P Mon Nov 30 11:44:51 2009
@@ -0,0 +1,1060 @@
+callbacks.o: callbacks.cpp ../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/cairo/cairo-deprecated.h \
+  /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/glib-2.0/glib.h \
+  /usr/include/glib-2.0/glib/galloca.h \
+  /usr/include/glib-2.0/glib/gtypes.h \
+  /usr/lib/glib-2.0/include/glibconfig.h \
+  /usr/include/glib-2.0/glib/gmacros.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/stddef.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/limits.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/syslimits.h \
+  /usr/include/limits.h /usr/include/features.h /usr/include/sys/cdefs.h \
+  /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
+  /usr/include/gnu/stubs-32.h /usr/include/bits/posix1_lim.h \
+  /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
+  /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
+  /usr/include/bits/stdio_lim.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/float.h \
+  /usr/include/glib-2.0/glib/garray.h \
+  /usr/include/glib-2.0/glib/gasyncqueue.h \
+  /usr/include/glib-2.0/glib/gthread.h \
+  /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \
+  /usr/include/glib-2.0/glib/gutils.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/stdarg.h \
+  /usr/include/glib-2.0/glib/gatomic.h \
+  /usr/include/glib-2.0/glib/gbacktrace.h \
+  /usr/include/glib-2.0/glib/gbase64.h \
+  /usr/include/glib-2.0/glib/gbookmarkfile.h /usr/include/time.h \
+  /usr/include/bits/time.h /usr/include/bits/types.h \
+  /usr/include/bits/typesizes.h /usr/include/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/giochannel.h \
+  /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gslist.h \
+  /usr/include/glib-2.0/glib/gstring.h \
+  /usr/include/glib-2.0/glib/gunicode.h \
+  /usr/include/glib-2.0/glib/gkeyfile.h \
+  /usr/include/glib-2.0/glib/gmappedfile.h \
+  /usr/include/glib-2.0/glib/gmarkup.h \
+  /usr/include/glib-2.0/glib/gmessages.h \
+  /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/goption.h \
+  /usr/include/glib-2.0/glib/gpattern.h \
+  /usr/include/glib-2.0/glib/gprimes.h \
+  /usr/include/glib-2.0/glib/gqsort.h /usr/include/glib-2.0/glib/gqueue.h \
+  /usr/include/glib-2.0/glib/grand.h /usr/include/glib-2.0/glib/grel.h \
+  /usr/include/glib-2.0/glib/gregex.h \
+  /usr/include/glib-2.0/glib/gscanner.h \
+  /usr/include/glib-2.0/glib/gsequence.h \
+  /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gspawn.h \
+  /usr/include/glib-2.0/glib/gstrfuncs.h \
+  /usr/include/glib-2.0/glib/gtestutils.h \
+  /usr/include/glib-2.0/glib/gthreadpool.h \
+  /usr/include/glib-2.0/glib/gtimer.h /usr/include/glib-2.0/glib/gtree.h \
+  /usr/include/glib-2.0/glib/gurifuncs.h \
+  /usr/include/pango-1.0/pango/pango.h \
+  /usr/include/pango-1.0/pango/pango-attributes.h \
+  /usr/include/pango-1.0/pango/pango-font.h \
+  /usr/include/pango-1.0/pango/pango-coverage.h \
+  /usr/include/pango-1.0/pango/pango-types.h \
+  /usr/include/glib-2.0/glib-object.h \
+  /usr/include/glib-2.0/gobject/gboxed.h \
+  /usr/include/glib-2.0/gobject/gtype.h \
+  /usr/include/glib-2.0/gobject/genums.h \
+  /usr/include/glib-2.0/gobject/gobject.h \
+  /usr/include/glib-2.0/gobject/gvalue.h \
+  /usr/include/glib-2.0/gobject/gparam.h \
+  /usr/include/glib-2.0/gobject/gclosure.h \
+  /usr/include/glib-2.0/gobject/gsignal.h \
+  /usr/include/glib-2.0/gobject/gmarshal.h \
+  /usr/include/glib-2.0/gobject/gparamspecs.h \
+  /usr/include/glib-2.0/gobject/gsourceclosure.h \
+  /usr/include/glib-2.0/gobject/gtypemodule.h \
+  /usr/include/glib-2.0/gobject/gtypeplugin.h \
+  /usr/include/glib-2.0/gobject/gvaluearray.h \
+  /usr/include/glib-2.0/gobject/gvaluetypes.h \
+  /usr/include/pango-1.0/pango/pango-gravity.h \
+  /usr/include/pango-1.0/pango/pango-matrix.h \
+  /usr/include/pango-1.0/pango/pango-script.h \
+  /usr/include/pango-1.0/pango/pango-language.h \
+  /usr/include/pango-1.0/pango/pango-break.h \
+  /usr/include/pango-1.0/pango/pango-item.h \
+  /usr/include/pango-1.0/pango/pango-context.h \
+  /usr/include/pango-1.0/pango/pango-fontmap.h \
+  /usr/include/pango-1.0/pango/pango-fontset.h \
+  /usr/include/pango-1.0/pango/pango-engine.h \
+  /usr/include/pango-1.0/pango/pango-glyph.h \
+  /usr/include/pango-1.0/pango/pango-enum-types.h \
+  /usr/include/pango-1.0/pango/pango-features.h \
+  /usr/include/pango-1.0/pango/pango-glyph-item.h \
+  /usr/include/pango-1.0/pango/pango-layout.h \
+  /usr/include/pango-1.0/pango/pango-tabs.h \
+  /usr/include/pango-1.0/pango/pango-renderer.h \
+  /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \
+  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+  /usr/include/bits/sys_errlist.h /usr/lib/gtk-2.0/include/gdkconfig.h \
+  /usr/include/gtk-2.0/gdk/gdkpixbuf.h /usr/include/gtk-2.0/gdk/gdkrgb.h \
+  /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \
+  /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \
+  /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \
+  /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \
+  /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \
+  /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \
+  /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \
+  /usr/include/glib-2.0/gmodule.h \
+  /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \
+  /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \
+  /usr/include/pango-1.0/pango/pangocairo.h \
+  /usr/include/gtk-2.0/gdk/gdkcursor.h \
+  /usr/include/gtk-2.0/gdk/gdkdisplay.h \
+  /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkdnd.h \
+  /usr/include/gtk-2.0/gdk/gdkinput.h \
+  /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \
+  /usr/include/gtk-2.0/gdk/gdkenumtypes.h \
+  /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \
+  /usr/include/gtk-2.0/gdk/gdkkeys.h \
+  /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \
+  /usr/include/gtk-2.0/gdk/gdkpango.h \
+  /usr/include/gtk-2.0/gdk/gdkpixmap.h \
+  /usr/include/gtk-2.0/gdk/gdkproperty.h \
+  /usr/include/gtk-2.0/gdk/gdkregion.h \
+  /usr/include/gtk-2.0/gdk/gdkscreen.h \
+  /usr/include/gtk-2.0/gdk/gdkselection.h \
+  /usr/include/gtk-2.0/gdk/gdkspawn.h \
+  /usr/include/gtk-2.0/gdk/gdkvisual.h \
+  /usr/include/gtk-2.0/gdk/gdkwindow.h \
+  /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \
+  /usr/include/gtk-2.0/gtk/gtkdialog.h \
+  /usr/include/gtk-2.0/gtk/gtkwindow.h \
+  /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \
+  /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \
+  /usr/include/gtk-2.0/gtk/gtkcontainer.h \
+  /usr/include/gtk-2.0/gtk/gtkwidget.h \
+  /usr/include/gtk-2.0/gtk/gtkobject.h \
+  /usr/include/gtk-2.0/gtk/gtktypeutils.h \
+  /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \
+  /usr/include/gtk-2.0/gtk/gtkdebug.h \
+  /usr/include/gtk-2.0/gtk/gtkadjustment.h \
+  /usr/include/gtk-2.0/gtk/gtkstyle.h \
+  /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \
+  /usr/include/atk-1.0/atk/atkobject.h \
+  /usr/include/atk-1.0/atk/atkstate.h \
+  /usr/include/atk-1.0/atk/atkrelationtype.h \
+  /usr/include/gtk-2.0/gtk/gtkaccellabel.h \
+  /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \
+  /usr/include/gtk-2.0/gtk/gtkmenu.h \
+  /usr/include/gtk-2.0/gtk/gtkmenushell.h \
+  /usr/include/gtk-2.0/gtk/gtkaccelmap.h \
+  /usr/include/gtk-2.0/gtk/gtkaccessible.h /usr/include/atk-1.0/atk/atk.h \
+  /usr/include/atk-1.0/atk/atkaction.h \
+  /usr/include/atk-1.0/atk/atkcomponent.h \
+  /usr/include/atk-1.0/atk/atkutil.h \
+  /usr/include/atk-1.0/atk/atkdocument.h \
+  /usr/include/atk-1.0/atk/atkeditabletext.h \
+  /usr/include/atk-1.0/atk/atktext.h \
+  /usr/include/atk-1.0/atk/atkgobjectaccessible.h \
+  /usr/include/atk-1.0/atk/atkhyperlink.h \
+  /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \
+  /usr/include/atk-1.0/atk/atkhypertext.h \
+  /usr/include/atk-1.0/atk/atkimage.h \
+  /usr/include/atk-1.0/atk/atknoopobject.h \
+  /usr/include/atk-1.0/atk/atknoopobjectfactory.h \
+  /usr/include/atk-1.0/atk/atkobjectfactory.h \
+  /usr/include/atk-1.0/atk/atkregistry.h \
+  /usr/include/atk-1.0/atk/atkobjectfactory.h \
+  /usr/include/atk-1.0/atk/atkrelation.h \
+  /usr/include/atk-1.0/atk/atkrelationset.h \
+  /usr/include/atk-1.0/atk/atkselection.h \
+  /usr/include/atk-1.0/atk/atkstateset.h \
+  /usr/include/atk-1.0/atk/atkstreamablecontent.h \
+  /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \
+  /usr/include/atk-1.0/atk/atkvalue.h \
+  /usr/include/gtk-2.0/gtk/gtkaction.h \
+  /usr/include/gtk-2.0/gtk/gtkactiongroup.h \
+  /usr/include/gtk-2.0/gtk/gtkitemfactory.h \
+  /usr/include/gtk-2.0/gtk/gtkalignment.h \
+  /usr/include/gtk-2.0/gtk/gtkarrow.h \
+  /usr/include/gtk-2.0/gtk/gtkaspectframe.h \
+  /usr/include/gtk-2.0/gtk/gtkframe.h \
+  /usr/include/gtk-2.0/gtk/gtkassistant.h \
+  /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \
+  /usr/include/gtk-2.0/gtk/gtkbindings.h \
+  /usr/include/gtk-2.0/gtk/gtkbuildable.h \
+  /usr/include/gtk-2.0/gtk/gtkbuilder.h \
+  /usr/include/gtk-2.0/gtk/gtkbutton.h \
+  /usr/include/gtk-2.0/gtk/gtkimage.h \
+  /usr/include/gtk-2.0/gtk/gtkcalendar.h \
+  /usr/include/gtk-2.0/gtk/gtksignal.h \
+  /usr/include/gtk-2.0/gtk/gtkmarshal.h \
+  /usr/include/gtk-2.0/gtk/gtkcelllayout.h \
+  /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \
+  /usr/include/gtk-2.0/gtk/gtkcelleditable.h \
+  /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \
+  /usr/include/gtk-2.0/gtk/gtktreemodel.h \
+  /usr/include/gtk-2.0/gtk/gtktreesortable.h \
+  /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \
+  /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \
+  /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \
+  /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \
+  /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \
+  /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \
+  /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \
+  /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \
+  /usr/include/gtk-2.0/gtk/gtkcellview.h \
+  /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \
+  /usr/include/gtk-2.0/gtk/gtktogglebutton.h \
+  /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \
+  /usr/include/gtk-2.0/gtk/gtkmenuitem.h \
+  /usr/include/gtk-2.0/gtk/gtkitem.h \
+  /usr/include/gtk-2.0/gtk/gtkclipboard.h \
+  /usr/include/gtk-2.0/gtk/gtkselection.h \
+  /usr/include/gtk-2.0/gtk/gtktextiter.h \
+  /usr/include/gtk-2.0/gtk/gtktexttag.h \
+  /usr/include/gtk-2.0/gtk/gtktextchild.h \
+  /usr/include/gtk-2.0/gtk/gtkclist.h \
+  /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \
+  /usr/include/gtk-2.0/gtk/gtkscrollbar.h \
+  /usr/include/gtk-2.0/gtk/gtkrange.h \
+  /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \
+  /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \
+  /usr/include/gtk-2.0/gtk/gtkcolorsel.h \
+  /usr/include/gtk-2.0/gtk/gtkvbox.h \
+  /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \
+  /usr/include/gtk-2.0/gtk/gtkcombo.h /usr/include/gtk-2.0/gtk/gtkhbox.h \
+  /usr/include/gtk-2.0/gtk/gtkcombobox.h \
+  /usr/include/gtk-2.0/gtk/gtktreeview.h \
+  /usr/include/gtk-2.0/gtk/gtkdnd.h /usr/include/gtk-2.0/gtk/gtkentry.h \
+  /usr/include/gtk-2.0/gtk/gtkeditable.h \
+  /usr/include/gtk-2.0/gtk/gtkimcontext.h \
+  /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \
+  /usr/include/gtk-2.0/gtk/gtkliststore.h \
+  /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \
+  /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \
+  /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \
+  /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \
+  /usr/include/gtk-2.0/gtk/gtkeventbox.h \
+  /usr/include/gtk-2.0/gtk/gtkexpander.h \
+  /usr/include/gtk-2.0/gtk/gtkfilesel.h \
+  /usr/include/gtk-2.0/gtk/gtkfixed.h \
+  /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \
+  /usr/include/gtk-2.0/gtk/gtkfilechooser.h \
+  /usr/include/gtk-2.0/gtk/gtkfilefilter.h \
+  /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \
+  /usr/include/gtk-2.0/gtk/gtkfilechooser.h \
+  /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \
+  /usr/include/gtk-2.0/gtk/gtkfontbutton.h \
+  /usr/include/gtk-2.0/gtk/gtkfontsel.h \
+  /usr/include/gtk-2.0/gtk/gtkgamma.h /usr/include/gtk-2.0/gtk/gtkgc.h \
+  /usr/include/gtk-2.0/gtk/gtkhandlebox.h \
+  /usr/include/gtk-2.0/gtk/gtkhbbox.h \
+  /usr/include/gtk-2.0/gtk/gtkhpaned.h \
+  /usr/include/gtk-2.0/gtk/gtkpaned.h \
+  /usr/include/gtk-2.0/gtk/gtkhruler.h \
+  /usr/include/gtk-2.0/gtk/gtkruler.h \
+  /usr/include/gtk-2.0/gtk/gtkhscale.h \
+  /usr/include/gtk-2.0/gtk/gtkscale.h \
+  /usr/include/gtk-2.0/gtk/gtkhseparator.h \
+  /usr/include/gtk-2.0/gtk/gtkseparator.h \
+  /usr/include/gtk-2.0/gtk/gtkiconfactory.h \
+  /usr/include/gtk-2.0/gtk/gtkicontheme.h \
+  /usr/include/gtk-2.0/gtk/gtkiconview.h \
+  /usr/include/gtk-2.0/gtk/gtktooltip.h \
+  /usr/include/gtk-2.0/gtk/gtkwidget.h \
+  /usr/include/gtk-2.0/gtk/gtkwindow.h \
+  /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \
+  /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \
+  /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \
+  /usr/include/gtk-2.0/gtk/gtkinputdialog.h \
+  /usr/include/gtk-2.0/gtk/gtkinvisible.h \
+  /usr/include/gtk-2.0/gtk/gtklayout.h \
+  /usr/include/gtk-2.0/gtk/gtklinkbutton.h \
+  /usr/include/gtk-2.0/gtk/gtklist.h \
+  /usr/include/gtk-2.0/gtk/gtklistitem.h \
+  /usr/include/gtk-2.0/gtk/gtkmain.h \
+  /usr/include/gtk-2.0/gtk/gtkmenubar.h \
+  /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \
+  /usr/include/gtk-2.0/gtk/gtkmenu.h \
+  /usr/include/gtk-2.0/gtk/gtktoolbutton.h \
+  /usr/include/gtk-2.0/gtk/gtktoolitem.h \
+  /usr/include/gtk-2.0/gtk/gtktooltips.h \
+  /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \
+  /usr/include/gtk-2.0/gtk/gtkmodules.h \
+  /usr/include/gtk-2.0/gtk/gtknotebook.h \
+  /usr/include/gtk-2.0/gtk/gtkoldeditable.h \
+  /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \
+  /usr/include/gtk-2.0/gtk/gtkpixmap.h /usr/include/gtk-2.0/gtk/gtkplug.h \
+  /usr/include/gtk-2.0/gtk/gtksocket.h \
+  /usr/include/gtk-2.0/gtk/gtkpreview.h \
+  /usr/include/gtk-2.0/gtk/gtkprintoperation.h \
+  /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkenums.h \
+  /usr/include/gtk-2.0/gtk/gtkpagesetup.h \
+  /usr/include/gtk-2.0/gtk/gtkpapersize.h \
+  /usr/include/gtk-2.0/gtk/gtkprintsettings.h \
+  /usr/include/gtk-2.0/gtk/gtkprintcontext.h \
+  /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \
+  /usr/include/gtk-2.0/gtk/gtkprogress.h \
+  /usr/include/gtk-2.0/gtk/gtkprogressbar.h \
+  /usr/include/gtk-2.0/gtk/gtkradioaction.h \
+  /usr/include/gtk-2.0/gtk/gtktoggleaction.h \
+  /usr/include/gtk-2.0/gtk/gtkradiobutton.h \
+  /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \
+  /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \
+  /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \
+  /usr/include/gtk-2.0/gtk/gtktoolbutton.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentaction.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \
+  /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \
+  /usr/include/gtk-2.0/gtk/gtkscalebutton.h \
+  /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \
+  /usr/include/gtk-2.0/gtk/gtkviewport.h \
+  /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \
+  /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \
+  /usr/include/gtk-2.0/gtk/gtksizegroup.h \
+  /usr/include/gtk-2.0/gtk/gtkspinbutton.h \
+  /usr/include/gtk-2.0/gtk/gtkstatusbar.h \
+  /usr/include/gtk-2.0/gtk/gtkstatusicon.h \
+  /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \
+  /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \
+  /usr/include/gtk-2.0/gtk/gtktext.h \
+  /usr/include/gtk-2.0/gtk/gtktextbuffer.h \
+  /usr/include/gtk-2.0/gtk/gtktexttagtable.h \
+  /usr/include/gtk-2.0/gtk/gtktextmark.h \
+  /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \
+  /usr/include/gtk-2.0/gtk/gtktextview.h \
+  /usr/include/gtk-2.0/gtk/gtktipsquery.h \
+  /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \
+  /usr/include/gtk-2.0/gtk/gtktoolbar.h \
+  /usr/include/gtk-2.0/gtk/gtktoolbutton.h \
+  /usr/include/gtk-2.0/gtk/gtktoolitem.h \
+  /usr/include/gtk-2.0/gtk/gtktree.h \
+  /usr/include/gtk-2.0/gtk/gtktreednd.h \
+  /usr/include/gtk-2.0/gtk/gtktreeitem.h \
+  /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \
+  /usr/include/gtk-2.0/gtk/gtktreeselection.h \
+  /usr/include/gtk-2.0/gtk/gtktreestore.h \
+  /usr/include/gtk-2.0/gtk/gtkuimanager.h \
+  /usr/include/gtk-2.0/gtk/gtkvbbox.h \
+  /usr/include/gtk-2.0/gtk/gtkversion.h \
+  /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \
+  /usr/include/gtk-2.0/gtk/gtkvpaned.h \
+  /usr/include/gtk-2.0/gtk/gtkvruler.h \
+  /usr/include/gtk-2.0/gtk/gtkvscale.h \
+  /usr/include/gtk-2.0/gtk/gtkvseparator.h callbacks.h interface.h \
+  stdafx.h /usr/include/sys/socket.h /usr/include/sys/uio.h \
+  /usr/include/sys/types.h /usr/include/endian.h \
+  /usr/include/bits/endian.h /usr/include/sys/select.h \
+  /usr/include/bits/select.h /usr/include/bits/sigset.h \
+  /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
+  /usr/include/bits/uio.h /usr/include/bits/socket.h \
+  /usr/include/bits/sockaddr.h /usr/include/asm/socket.h \
+  /usr/include/asm/sockios.h /usr/include/netinet/in.h \
+  /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/bits/in.h \
+  /usr/include/bits/byteswap.h /usr/include/arpa/inet.h \
+  /usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \
+  /usr/include/asm/ioctls.h /usr/include/asm/ioctl.h \
+  /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \
+  /usr/include/sys/ttydefaults.h /usr/include/net/if.h \
+  /usr/include/string.h /usr/include/netdb.h /usr/include/rpc/netdb.h \
+  /usr/include/bits/siginfo.h /usr/include/bits/netdb.h \
+  /usr/include/unistd.h /usr/include/bits/posix_opt.h \
+  /usr/include/bits/environments.h /usr/include/bits/confname.h \
+  /usr/include/getopt.h support.h dtufunction.h \
+  /usr/include/jrtplib3/rtpsession.h /usr/include/jrtplib3/rtpconfig.h \
+  /usr/include/jrtplib3/rtpconfig_unix.h \
+  /usr/include/jrtplib3/rtplibraryversion.h /usr/include/c++/4.2/string \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/c++config.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/os_defines.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/cpu_defines.h \
+  /usr/include/c++/4.2/bits/stringfwd.h \
+  /usr/include/c++/4.2/bits/char_traits.h /usr/include/c++/4.2/cstring \
+  /usr/include/c++/4.2/cstddef /usr/include/c++/4.2/bits/stl_algobase.h \
+  /usr/include/c++/4.2/climits /usr/include/c++/4.2/cstdlib \
+  /usr/include/stdlib.h /usr/include/bits/waitflags.h \
+  /usr/include/bits/waitstatus.h /usr/include/alloca.h \
+  /usr/include/c++/4.2/iosfwd \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/c++locale.h \
+  /usr/include/c++/4.2/cstdio /usr/include/c++/4.2/clocale \
+  /usr/include/locale.h /usr/include/bits/locale.h \
+  /usr/include/langinfo.h /usr/include/nl_types.h /usr/include/iconv.h \
+  /usr/include/libintl.h /usr/include/c++/4.2/cstdarg \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/c++io.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/gthr.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/gthr-default.h \
+  /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
+  /usr/include/signal.h /usr/include/bits/setjmp.h \
+  /usr/include/c++/4.2/cctype /usr/include/ctype.h \
+  /usr/include/c++/4.2/bits/postypes.h /usr/include/c++/4.2/cwchar \
+  /usr/include/c++/4.2/ctime /usr/include/c++/4.2/bits/functexcept.h \
+  /usr/include/c++/4.2/exception_defines.h \
+  /usr/include/c++/4.2/bits/stl_pair.h \
+  /usr/include/c++/4.2/bits/cpp_type_traits.h \
+  /usr/include/c++/4.2/ext/type_traits.h /usr/include/c++/4.2/utility \
+  /usr/include/c++/4.2/bits/stl_relops.h \
+  /usr/include/c++/4.2/bits/stl_iterator_base_types.h \
+  /usr/include/c++/4.2/bits/stl_iterator_base_funcs.h \
+  /usr/include/c++/4.2/bits/concept_check.h \
+  /usr/include/c++/4.2/bits/stl_iterator.h \
+  /usr/include/c++/4.2/debug/debug.h /usr/include/c++/4.2/memory \
+  /usr/include/c++/4.2/bits/allocator.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/c++allocator.h \
+  /usr/include/c++/4.2/ext/new_allocator.h /usr/include/c++/4.2/new \
+  /usr/include/c++/4.2/exception \
+  /usr/include/c++/4.2/bits/stl_construct.h \
+  /usr/include/c++/4.2/bits/stl_uninitialized.h \
+  /usr/include/c++/4.2/bits/stl_raw_storage_iter.h \
+  /usr/include/c++/4.2/limits /usr/include/c++/4.2/bits/ostream_insert.h \
+  /usr/include/c++/4.2/bits/stl_function.h \
+  /usr/include/c++/4.2/bits/basic_string.h \
+  /usr/include/c++/4.2/ext/atomicity.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/atomic_word.h \
+  /usr/include/c++/4.2/algorithm /usr/include/c++/4.2/bits/stl_algo.h \
+  /usr/include/c++/4.2/bits/stl_heap.h \
+  /usr/include/c++/4.2/bits/stl_tempbuf.h \
+  /usr/include/c++/4.2/bits/basic_string.tcc \
+  /usr/include/jrtplib3/rtppacketbuilder.h \
+  /usr/include/jrtplib3/rtperrors.h /usr/include/jrtplib3/rtpdefines.h \
+  /usr/include/jrtplib3/rtprandom.h /usr/include/jrtplib3/rtptypes.h \
+  /usr/include/jrtplib3/rtptypes_unix.h /usr/include/inttypes.h \
+  /usr/include/jrtplib3/rtptimeutilities.h /usr/include/sys/time.h \
+  /usr/include/jrtplib3/rtpsessionsources.h \
+  /usr/include/jrtplib3/rtpsources.h \
+  /usr/include/jrtplib3/rtpkeyhashtable.h \
+  /usr/include/jrtplib3/rtcpsdespacket.h \
+  /usr/include/jrtplib3/rtcppacket.h /usr/include/jrtplib3/rtpstructs.h \
+  /usr/include/jrtplib3/rtptransmitter.h \
+  /usr/include/jrtplib3/rtpcollisionlist.h \
+  /usr/include/jrtplib3/rtpaddress.h /usr/include/c++/4.2/list \
+  /usr/include/c++/4.2/bits/stl_list.h /usr/include/c++/4.2/bits/list.tcc \
+  /usr/include/jrtplib3/rtcpscheduler.h \
+  /usr/include/jrtplib3/rtcppacketbuilder.h \
+  /usr/include/jrtplib3/rtcpsdesinfo.h /usr/include/jthread/jmutex.h \
+  /usr/include/jrtplib3/rtppacket.h \
+  /usr/include/jrtplib3/rtpudpv4transmitter.h \
+  /usr/include/jrtplib3/rtpipv4destination.h \
+  /usr/include/jrtplib3/rtphashtable.h \
+  /usr/include/jrtplib3/rtpipv4address.h \
+  /usr/include/jrtplib3/rtpsessionparams.h \
+  /usr/include/jrtplib3/rtperrors.h /usr/include/c++/4.2/iostream \
+  /usr/include/c++/4.2/ostream /usr/include/c++/4.2/ios \
+  /usr/include/c++/4.2/bits/localefwd.h \
+  /usr/include/c++/4.2/bits/ios_base.h \
+  /usr/include/c++/4.2/bits/locale_classes.h \
+  /usr/include/c++/4.2/streambuf /usr/include/c++/4.2/bits/streambuf.tcc \
+  /usr/include/c++/4.2/bits/basic_ios.h \
+  /usr/include/c++/4.2/bits/streambuf_iterator.h \
+  /usr/include/c++/4.2/bits/locale_facets.h /usr/include/c++/4.2/cwctype \
+  /usr/include/wctype.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/ctype_base.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/ctype_inline.h \
+  /usr/include/c++/4.2/bits/codecvt.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/time_members.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/messages_members.h \
+  /usr/include/c++/4.2/bits/basic_ios.tcc \
+  /usr/include/c++/4.2/bits/ostream.tcc /usr/include/c++/4.2/locale \
+  /usr/include/c++/4.2/bits/locale_facets.tcc \
+  /usr/include/c++/4.2/typeinfo /usr/include/c++/4.2/istream \
+  /usr/include/c++/4.2/bits/istream.tcc dtuporttype.h mcumessage.h \
+  ts_communicate.h clientsocket.h asyncsocketex.h singlecomm.h tcpcomm.h
+callbacks.cpp :
+../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/cairo/cairo-deprecated.h :
+/usr/include/gtk-2.0/gdk/gdktypes.h :
+/usr/include/glib-2.0/glib.h :
+/usr/include/glib-2.0/glib/galloca.h :
+/usr/include/glib-2.0/glib/gtypes.h :
+/usr/lib/glib-2.0/include/glibconfig.h :
+/usr/include/glib-2.0/glib/gmacros.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/stddef.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/limits.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/syslimits.h :
+/usr/include/limits.h :
+/usr/include/features.h :
+/usr/include/sys/cdefs.h :
+/usr/include/bits/wordsize.h :
+/usr/include/gnu/stubs.h :
+/usr/include/gnu/stubs-32.h :
+/usr/include/bits/posix1_lim.h :
+/usr/include/bits/local_lim.h :
+/usr/include/linux/limits.h :
+/usr/include/bits/posix2_lim.h :
+/usr/include/bits/xopen_lim.h :
+/usr/include/bits/stdio_lim.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/float.h :
+/usr/include/glib-2.0/glib/garray.h :
+/usr/include/glib-2.0/glib/gasyncqueue.h :
+/usr/include/glib-2.0/glib/gthread.h :
+/usr/include/glib-2.0/glib/gerror.h :
+/usr/include/glib-2.0/glib/gquark.h :
+/usr/include/glib-2.0/glib/gutils.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/stdarg.h :
+/usr/include/glib-2.0/glib/gatomic.h :
+/usr/include/glib-2.0/glib/gbacktrace.h :
+/usr/include/glib-2.0/glib/gbase64.h :
+/usr/include/glib-2.0/glib/gbookmarkfile.h :
+/usr/include/time.h :
+/usr/include/bits/time.h :
+/usr/include/bits/types.h :
+/usr/include/bits/typesizes.h :
+/usr/include/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/giochannel.h :
+/usr/include/glib-2.0/glib/gmain.h :
+/usr/include/glib-2.0/glib/gslist.h :
+/usr/include/glib-2.0/glib/gstring.h :
+/usr/include/glib-2.0/glib/gunicode.h :
+/usr/include/glib-2.0/glib/gkeyfile.h :
+/usr/include/glib-2.0/glib/gmappedfile.h :
+/usr/include/glib-2.0/glib/gmarkup.h :
+/usr/include/glib-2.0/glib/gmessages.h :
+/usr/include/glib-2.0/glib/gnode.h :
+/usr/include/glib-2.0/glib/goption.h :
+/usr/include/glib-2.0/glib/gpattern.h :
+/usr/include/glib-2.0/glib/gprimes.h :
+/usr/include/glib-2.0/glib/gqsort.h :
+/usr/include/glib-2.0/glib/gqueue.h :
+/usr/include/glib-2.0/glib/grand.h :
+/usr/include/glib-2.0/glib/grel.h :
+/usr/include/glib-2.0/glib/gregex.h :
+/usr/include/glib-2.0/glib/gscanner.h :
+/usr/include/glib-2.0/glib/gsequence.h :
+/usr/include/glib-2.0/glib/gshell.h :
+/usr/include/glib-2.0/glib/gspawn.h :
+/usr/include/glib-2.0/glib/gstrfuncs.h :
+/usr/include/glib-2.0/glib/gtestutils.h :
+/usr/include/glib-2.0/glib/gthreadpool.h :
+/usr/include/glib-2.0/glib/gtimer.h :
+/usr/include/glib-2.0/glib/gtree.h :
+/usr/include/glib-2.0/glib/gurifuncs.h :
+/usr/include/pango-1.0/pango/pango.h :
+/usr/include/pango-1.0/pango/pango-attributes.h :
+/usr/include/pango-1.0/pango/pango-font.h :
+/usr/include/pango-1.0/pango/pango-coverage.h :
+/usr/include/pango-1.0/pango/pango-types.h :
+/usr/include/glib-2.0/glib-object.h :
+/usr/include/glib-2.0/gobject/gboxed.h :
+/usr/include/glib-2.0/gobject/gtype.h :
+/usr/include/glib-2.0/gobject/genums.h :
+/usr/include/glib-2.0/gobject/gobject.h :
+/usr/include/glib-2.0/gobject/gvalue.h :
+/usr/include/glib-2.0/gobject/gparam.h :
+/usr/include/glib-2.0/gobject/gclosure.h :
+/usr/include/glib-2.0/gobject/gsignal.h :
+/usr/include/glib-2.0/gobject/gmarshal.h :
+/usr/include/glib-2.0/gobject/gparamspecs.h :
+/usr/include/glib-2.0/gobject/gsourceclosure.h :
+/usr/include/glib-2.0/gobject/gtypemodule.h :
+/usr/include/glib-2.0/gobject/gtypeplugin.h :
+/usr/include/glib-2.0/gobject/gvaluearray.h :
+/usr/include/glib-2.0/gobject/gvaluetypes.h :
+/usr/include/pango-1.0/pango/pango-gravity.h :
+/usr/include/pango-1.0/pango/pango-matrix.h :
+/usr/include/pango-1.0/pango/pango-script.h :
+/usr/include/pango-1.0/pango/pango-language.h :
+/usr/include/pango-1.0/pango/pango-break.h :
+/usr/include/pango-1.0/pango/pango-item.h :
+/usr/include/pango-1.0/pango/pango-context.h :
+/usr/include/pango-1.0/pango/pango-fontmap.h :
+/usr/include/pango-1.0/pango/pango-fontset.h :
+/usr/include/pango-1.0/pango/pango-engine.h :
+/usr/include/pango-1.0/pango/pango-glyph.h :
+/usr/include/pango-1.0/pango/pango-enum-types.h :
+/usr/include/pango-1.0/pango/pango-features.h :
+/usr/include/pango-1.0/pango/pango-glyph-item.h :
+/usr/include/pango-1.0/pango/pango-layout.h :
+/usr/include/pango-1.0/pango/pango-tabs.h :
+/usr/include/pango-1.0/pango/pango-renderer.h :
+/usr/include/pango-1.0/pango/pango-utils.h :
+/usr/include/stdio.h :
+/usr/include/libio.h :
+/usr/include/_G_config.h :
+/usr/include/wchar.h :
+/usr/include/bits/sys_errlist.h :
+/usr/lib/gtk-2.0/include/gdkconfig.h :
+/usr/include/gtk-2.0/gdk/gdkpixbuf.h :
+/usr/include/gtk-2.0/gdk/gdkrgb.h :
+/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h :
+/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h :
+/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h :
+/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h :
+/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h :
+/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h :
+/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h :
+/usr/include/glib-2.0/gmodule.h :
+/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h :
+/usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h :
+/usr/include/pango-1.0/pango/pangocairo.h :
+/usr/include/gtk-2.0/gdk/gdkcursor.h :
+/usr/include/gtk-2.0/gdk/gdkdisplay.h :
+/usr/include/gtk-2.0/gdk/gdkevents.h :
+/usr/include/gtk-2.0/gdk/gdkdnd.h :
+/usr/include/gtk-2.0/gdk/gdkinput.h :
+/usr/include/gtk-2.0/gdk/gdkdrawable.h :
+/usr/include/gtk-2.0/gdk/gdkgc.h :
+/usr/include/gtk-2.0/gdk/gdkenumtypes.h :
+/usr/include/gtk-2.0/gdk/gdkfont.h :
+/usr/include/gtk-2.0/gdk/gdkimage.h :
+/usr/include/gtk-2.0/gdk/gdkkeys.h :
+/usr/include/gtk-2.0/gdk/gdkdisplaymanager.h :
+/usr/include/gtk-2.0/gdk/gdkpango.h :
+/usr/include/gtk-2.0/gdk/gdkpixmap.h :
+/usr/include/gtk-2.0/gdk/gdkproperty.h :
+/usr/include/gtk-2.0/gdk/gdkregion.h :
+/usr/include/gtk-2.0/gdk/gdkscreen.h :
+/usr/include/gtk-2.0/gdk/gdkselection.h :
+/usr/include/gtk-2.0/gdk/gdkspawn.h :
+/usr/include/gtk-2.0/gdk/gdkvisual.h :
+/usr/include/gtk-2.0/gdk/gdkwindow.h :
+/usr/include/gtk-2.0/gtk/gtkaboutdialog.h :
+/usr/include/gtk-2.0/gtk/gtkdialog.h :
+/usr/include/gtk-2.0/gtk/gtkwindow.h :
+/usr/include/gtk-2.0/gtk/gtkaccelgroup.h :
+/usr/include/gtk-2.0/gtk/gtkenums.h :
+/usr/include/gtk-2.0/gtk/gtkbin.h :
+/usr/include/gtk-2.0/gtk/gtkcontainer.h :
+/usr/include/gtk-2.0/gtk/gtkwidget.h :
+/usr/include/gtk-2.0/gtk/gtkobject.h :
+/usr/include/gtk-2.0/gtk/gtktypeutils.h :
+/usr/include/gtk-2.0/gtk/gtktypebuiltins.h :
+/usr/include/gtk-2.0/gtk/gtkdebug.h :
+/usr/include/gtk-2.0/gtk/gtkadjustment.h :
+/usr/include/gtk-2.0/gtk/gtkstyle.h :
+/usr/include/gtk-2.0/gtk/gtksettings.h :
+/usr/include/gtk-2.0/gtk/gtkrc.h :
+/usr/include/atk-1.0/atk/atkobject.h :
+/usr/include/atk-1.0/atk/atkstate.h :
+/usr/include/atk-1.0/atk/atkrelationtype.h :
+/usr/include/gtk-2.0/gtk/gtkaccellabel.h :
+/usr/include/gtk-2.0/gtk/gtklabel.h :
+/usr/include/gtk-2.0/gtk/gtkmisc.h :
+/usr/include/gtk-2.0/gtk/gtkmenu.h :
+/usr/include/gtk-2.0/gtk/gtkmenushell.h :
+/usr/include/gtk-2.0/gtk/gtkaccelmap.h :
+/usr/include/gtk-2.0/gtk/gtkaccessible.h :
+/usr/include/atk-1.0/atk/atk.h :
+/usr/include/atk-1.0/atk/atkaction.h :
+/usr/include/atk-1.0/atk/atkcomponent.h :
+/usr/include/atk-1.0/atk/atkutil.h :
+/usr/include/atk-1.0/atk/atkdocument.h :
+/usr/include/atk-1.0/atk/atkeditabletext.h :
+/usr/include/atk-1.0/atk/atktext.h :
+/usr/include/atk-1.0/atk/atkgobjectaccessible.h :
+/usr/include/atk-1.0/atk/atkhyperlink.h :
+/usr/include/atk-1.0/atk/atkhyperlinkimpl.h :
+/usr/include/atk-1.0/atk/atkhypertext.h :
+/usr/include/atk-1.0/atk/atkimage.h :
+/usr/include/atk-1.0/atk/atknoopobject.h :
+/usr/include/atk-1.0/atk/atknoopobjectfactory.h :
+/usr/include/atk-1.0/atk/atkobjectfactory.h :
+/usr/include/atk-1.0/atk/atkregistry.h :
+/usr/include/atk-1.0/atk/atkobjectfactory.h :
+/usr/include/atk-1.0/atk/atkrelation.h :
+/usr/include/atk-1.0/atk/atkrelationset.h :
+/usr/include/atk-1.0/atk/atkselection.h :
+/usr/include/atk-1.0/atk/atkstateset.h :
+/usr/include/atk-1.0/atk/atkstreamablecontent.h :
+/usr/include/atk-1.0/atk/atktable.h :
+/usr/include/atk-1.0/atk/atkmisc.h :
+/usr/include/atk-1.0/atk/atkvalue.h :
+/usr/include/gtk-2.0/gtk/gtkaction.h :
+/usr/include/gtk-2.0/gtk/gtkactiongroup.h :
+/usr/include/gtk-2.0/gtk/gtkitemfactory.h :
+/usr/include/gtk-2.0/gtk/gtkalignment.h :
+/usr/include/gtk-2.0/gtk/gtkarrow.h :
+/usr/include/gtk-2.0/gtk/gtkaspectframe.h :
+/usr/include/gtk-2.0/gtk/gtkframe.h :
+/usr/include/gtk-2.0/gtk/gtkassistant.h :
+/usr/include/gtk-2.0/gtk/gtkbbox.h :
+/usr/include/gtk-2.0/gtk/gtkbox.h :
+/usr/include/gtk-2.0/gtk/gtkbindings.h :
+/usr/include/gtk-2.0/gtk/gtkbuildable.h :
+/usr/include/gtk-2.0/gtk/gtkbuilder.h :
+/usr/include/gtk-2.0/gtk/gtkbutton.h :
+/usr/include/gtk-2.0/gtk/gtkimage.h :
+/usr/include/gtk-2.0/gtk/gtkcalendar.h :
+/usr/include/gtk-2.0/gtk/gtksignal.h :
+/usr/include/gtk-2.0/gtk/gtkmarshal.h :
+/usr/include/gtk-2.0/gtk/gtkcelllayout.h :
+/usr/include/gtk-2.0/gtk/gtkcellrenderer.h :
+/usr/include/gtk-2.0/gtk/gtkcelleditable.h :
+/usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h :
+/usr/include/gtk-2.0/gtk/gtktreemodel.h :
+/usr/include/gtk-2.0/gtk/gtktreesortable.h :
+/usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h :
+/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h :
+/usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h :
+/usr/include/gtk-2.0/gtk/gtkcellrenderertext.h :
+/usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h :
+/usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h :
+/usr/include/gtk-2.0/gtk/gtkcellrendererspin.h :
+/usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h :
+/usr/include/gtk-2.0/gtk/gtkcellview.h :
+/usr/include/gtk-2.0/gtk/gtkcheckbutton.h :
+/usr/include/gtk-2.0/gtk/gtktogglebutton.h :
+/usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h :
+/usr/include/gtk-2.0/gtk/gtkmenuitem.h :
+/usr/include/gtk-2.0/gtk/gtkitem.h :
+/usr/include/gtk-2.0/gtk/gtkclipboard.h :
+/usr/include/gtk-2.0/gtk/gtkselection.h :
+/usr/include/gtk-2.0/gtk/gtktextiter.h :
+/usr/include/gtk-2.0/gtk/gtktexttag.h :
+/usr/include/gtk-2.0/gtk/gtktextchild.h :
+/usr/include/gtk-2.0/gtk/gtkclist.h :
+/usr/include/gtk-2.0/gtk/gtkhscrollbar.h :
+/usr/include/gtk-2.0/gtk/gtkscrollbar.h :
+/usr/include/gtk-2.0/gtk/gtkrange.h :
+/usr/include/gtk-2.0/gtk/gtkvscrollbar.h :
+/usr/include/gtk-2.0/gtk/gtkcolorbutton.h :
+/usr/include/gtk-2.0/gtk/gtkcolorsel.h :
+/usr/include/gtk-2.0/gtk/gtkvbox.h :
+/usr/include/gtk-2.0/gtk/gtkcolorseldialog.h :
+/usr/include/gtk-2.0/gtk/gtkcombo.h :
+/usr/include/gtk-2.0/gtk/gtkhbox.h :
+/usr/include/gtk-2.0/gtk/gtkcombobox.h :
+/usr/include/gtk-2.0/gtk/gtktreeview.h :
+/usr/include/gtk-2.0/gtk/gtkdnd.h :
+/usr/include/gtk-2.0/gtk/gtkentry.h :
+/usr/include/gtk-2.0/gtk/gtkeditable.h :
+/usr/include/gtk-2.0/gtk/gtkimcontext.h :
+/usr/include/gtk-2.0/gtk/gtkentrycompletion.h :
+/usr/include/gtk-2.0/gtk/gtkliststore.h :
+/usr/include/gtk-2.0/gtk/gtktreemodelfilter.h :
+/usr/include/gtk-2.0/gtk/gtkcomboboxentry.h :
+/usr/include/gtk-2.0/gtk/gtkctree.h :
+/usr/include/gtk-2.0/gtk/gtkcurve.h :
+/usr/include/gtk-2.0/gtk/gtkdrawingarea.h :
+/usr/include/gtk-2.0/gtk/gtkeventbox.h :
+/usr/include/gtk-2.0/gtk/gtkexpander.h :
+/usr/include/gtk-2.0/gtk/gtkfilesel.h :
+/usr/include/gtk-2.0/gtk/gtkfixed.h :
+/usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h :
+/usr/include/gtk-2.0/gtk/gtkfilechooser.h :
+/usr/include/gtk-2.0/gtk/gtkfilefilter.h :
+/usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h :
+/usr/include/gtk-2.0/gtk/gtkfilechooser.h :
+/usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h :
+/usr/include/gtk-2.0/gtk/gtkfontbutton.h :
+/usr/include/gtk-2.0/gtk/gtkfontsel.h :
+/usr/include/gtk-2.0/gtk/gtkgamma.h :
+/usr/include/gtk-2.0/gtk/gtkgc.h :
+/usr/include/gtk-2.0/gtk/gtkhandlebox.h :
+/usr/include/gtk-2.0/gtk/gtkhbbox.h :
+/usr/include/gtk-2.0/gtk/gtkhpaned.h :
+/usr/include/gtk-2.0/gtk/gtkpaned.h :
+/usr/include/gtk-2.0/gtk/gtkhruler.h :
+/usr/include/gtk-2.0/gtk/gtkruler.h :
+/usr/include/gtk-2.0/gtk/gtkhscale.h :
+/usr/include/gtk-2.0/gtk/gtkscale.h :
+/usr/include/gtk-2.0/gtk/gtkhseparator.h :
+/usr/include/gtk-2.0/gtk/gtkseparator.h :
+/usr/include/gtk-2.0/gtk/gtkiconfactory.h :
+/usr/include/gtk-2.0/gtk/gtkicontheme.h :
+/usr/include/gtk-2.0/gtk/gtkiconview.h :
+/usr/include/gtk-2.0/gtk/gtktooltip.h :
+/usr/include/gtk-2.0/gtk/gtkwidget.h :
+/usr/include/gtk-2.0/gtk/gtkwindow.h :
+/usr/include/gtk-2.0/gtk/gtkimagemenuitem.h :
+/usr/include/gtk-2.0/gtk/gtkimcontextsimple.h :
+/usr/include/gtk-2.0/gtk/gtkimmulticontext.h :
+/usr/include/gtk-2.0/gtk/gtkinputdialog.h :
+/usr/include/gtk-2.0/gtk/gtkinvisible.h :
+/usr/include/gtk-2.0/gtk/gtklayout.h :
+/usr/include/gtk-2.0/gtk/gtklinkbutton.h :
+/usr/include/gtk-2.0/gtk/gtklist.h :
+/usr/include/gtk-2.0/gtk/gtklistitem.h :
+/usr/include/gtk-2.0/gtk/gtkmain.h :
+/usr/include/gtk-2.0/gtk/gtkmenubar.h :
+/usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h :
+/usr/include/gtk-2.0/gtk/gtkmenu.h :
+/usr/include/gtk-2.0/gtk/gtktoolbutton.h :
+/usr/include/gtk-2.0/gtk/gtktoolitem.h :
+/usr/include/gtk-2.0/gtk/gtktooltips.h :
+/usr/include/gtk-2.0/gtk/gtkmessagedialog.h :
+/usr/include/gtk-2.0/gtk/gtkmodules.h :
+/usr/include/gtk-2.0/gtk/gtknotebook.h :
+/usr/include/gtk-2.0/gtk/gtkoldeditable.h :
+/usr/include/gtk-2.0/gtk/gtkoptionmenu.h :
+/usr/include/gtk-2.0/gtk/gtkpixmap.h :
+/usr/include/gtk-2.0/gtk/gtkplug.h :
+/usr/include/gtk-2.0/gtk/gtksocket.h :
+/usr/include/gtk-2.0/gtk/gtkpreview.h :
+/usr/include/gtk-2.0/gtk/gtkprintoperation.h :
+/usr/include/gtk-2.0/gtk/gtkmain.h :
+/usr/include/gtk-2.0/gtk/gtkenums.h :
+/usr/include/gtk-2.0/gtk/gtkpagesetup.h :
+/usr/include/gtk-2.0/gtk/gtkpapersize.h :
+/usr/include/gtk-2.0/gtk/gtkprintsettings.h :
+/usr/include/gtk-2.0/gtk/gtkprintcontext.h :
+/usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h :
+/usr/include/gtk-2.0/gtk/gtkprogress.h :
+/usr/include/gtk-2.0/gtk/gtkprogressbar.h :
+/usr/include/gtk-2.0/gtk/gtkradioaction.h :
+/usr/include/gtk-2.0/gtk/gtktoggleaction.h :
+/usr/include/gtk-2.0/gtk/gtkradiobutton.h :
+/usr/include/gtk-2.0/gtk/gtkradiomenuitem.h :
+/usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h :
+/usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h :
+/usr/include/gtk-2.0/gtk/gtktoolbutton.h :
+/usr/include/gtk-2.0/gtk/gtkrecentaction.h :
+/usr/include/gtk-2.0/gtk/gtkrecentmanager.h :
+/usr/include/gtk-2.0/gtk/gtkrecentchooser.h :
+/usr/include/gtk-2.0/gtk/gtkrecentmanager.h :
+/usr/include/gtk-2.0/gtk/gtkrecentfilter.h :
+/usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h :
+/usr/include/gtk-2.0/gtk/gtkrecentchooser.h :
+/usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h :
+/usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h :
+/usr/include/gtk-2.0/gtk/gtkrecentfilter.h :
+/usr/include/gtk-2.0/gtk/gtkscalebutton.h :
+/usr/include/gtk-2.0/gtk/gtkscrolledwindow.h :
+/usr/include/gtk-2.0/gtk/gtkviewport.h :
+/usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h :
+/usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h :
+/usr/include/gtk-2.0/gtk/gtksizegroup.h :
+/usr/include/gtk-2.0/gtk/gtkspinbutton.h :
+/usr/include/gtk-2.0/gtk/gtkstatusbar.h :
+/usr/include/gtk-2.0/gtk/gtkstatusicon.h :
+/usr/include/gtk-2.0/gtk/gtkstock.h :
+/usr/include/gtk-2.0/gtk/gtktable.h :
+/usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h :
+/usr/include/gtk-2.0/gtk/gtktext.h :
+/usr/include/gtk-2.0/gtk/gtktextbuffer.h :
+/usr/include/gtk-2.0/gtk/gtktexttagtable.h :
+/usr/include/gtk-2.0/gtk/gtktextmark.h :
+/usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h :
+/usr/include/gtk-2.0/gtk/gtktextview.h :
+/usr/include/gtk-2.0/gtk/gtktipsquery.h :
+/usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h :
+/usr/include/gtk-2.0/gtk/gtktoolbar.h :
+/usr/include/gtk-2.0/gtk/gtktoolbutton.h :
+/usr/include/gtk-2.0/gtk/gtktoolitem.h :
+/usr/include/gtk-2.0/gtk/gtktree.h :
+/usr/include/gtk-2.0/gtk/gtktreednd.h :
+/usr/include/gtk-2.0/gtk/gtktreeitem.h :
+/usr/include/gtk-2.0/gtk/gtktreemodelsort.h :
+/usr/include/gtk-2.0/gtk/gtktreeselection.h :
+/usr/include/gtk-2.0/gtk/gtktreestore.h :
+/usr/include/gtk-2.0/gtk/gtkuimanager.h :
+/usr/include/gtk-2.0/gtk/gtkvbbox.h :
+/usr/include/gtk-2.0/gtk/gtkversion.h :
+/usr/include/gtk-2.0/gtk/gtkvolumebutton.h :
+/usr/include/gtk-2.0/gtk/gtkvpaned.h :
+/usr/include/gtk-2.0/gtk/gtkvruler.h :
+/usr/include/gtk-2.0/gtk/gtkvscale.h :
+/usr/include/gtk-2.0/gtk/gtkvseparator.h :
+callbacks.h :
+interface.h :
+stdafx.h :
+/usr/include/sys/socket.h :
+/usr/include/sys/uio.h :
+/usr/include/sys/types.h :
+/usr/include/endian.h :
+/usr/include/bits/endian.h :
+/usr/include/sys/select.h :
+/usr/include/bits/select.h :
+/usr/include/bits/sigset.h :
+/usr/include/sys/sysmacros.h :
+/usr/include/bits/pthreadtypes.h :
+/usr/include/bits/uio.h :
+/usr/include/bits/socket.h :
+/usr/include/bits/sockaddr.h :
+/usr/include/asm/socket.h :
+/usr/include/asm/sockios.h :
+/usr/include/netinet/in.h :
+/usr/include/stdint.h :
+/usr/include/bits/wchar.h :
+/usr/include/bits/in.h :
+/usr/include/bits/byteswap.h :
+/usr/include/arpa/inet.h :
+/usr/include/sys/ioctl.h :
+/usr/include/bits/ioctls.h :
+/usr/include/asm/ioctls.h :
+/usr/include/asm/ioctl.h :
+/usr/include/asm-generic/ioctl.h :
+/usr/include/bits/ioctl-types.h :
+/usr/include/sys/ttydefaults.h :
+/usr/include/net/if.h :
+/usr/include/string.h :
+/usr/include/netdb.h :
+/usr/include/rpc/netdb.h :
+/usr/include/bits/siginfo.h :
+/usr/include/bits/netdb.h :
+/usr/include/unistd.h :
+/usr/include/bits/posix_opt.h :
+/usr/include/bits/environments.h :
+/usr/include/bits/confname.h :
+/usr/include/getopt.h :
+support.h :
+dtufunction.h :
+/usr/include/jrtplib3/rtpsession.h :
+/usr/include/jrtplib3/rtpconfig.h :
+/usr/include/jrtplib3/rtpconfig_unix.h :
+/usr/include/jrtplib3/rtplibraryversion.h :
+/usr/include/c++/4.2/string :
+/usr/include/c++/4.2/i486-linux-gnu/bits/c++config.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/os_defines.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/cpu_defines.h :
+/usr/include/c++/4.2/bits/stringfwd.h :
+/usr/include/c++/4.2/bits/char_traits.h :
+/usr/include/c++/4.2/cstring :
+/usr/include/c++/4.2/cstddef :
+/usr/include/c++/4.2/bits/stl_algobase.h :
+/usr/include/c++/4.2/climits :
+/usr/include/c++/4.2/cstdlib :
+/usr/include/stdlib.h :
+/usr/include/bits/waitflags.h :
+/usr/include/bits/waitstatus.h :
+/usr/include/alloca.h :
+/usr/include/c++/4.2/iosfwd :
+/usr/include/c++/4.2/i486-linux-gnu/bits/c++locale.h :
+/usr/include/c++/4.2/cstdio :
+/usr/include/c++/4.2/clocale :
+/usr/include/locale.h :
+/usr/include/bits/locale.h :
+/usr/include/langinfo.h :
+/usr/include/nl_types.h :
+/usr/include/iconv.h :
+/usr/include/libintl.h :
+/usr/include/c++/4.2/cstdarg :
+/usr/include/c++/4.2/i486-linux-gnu/bits/c++io.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/gthr.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/gthr-default.h :
+/usr/include/pthread.h :
+/usr/include/sched.h :
+/usr/include/bits/sched.h :
+/usr/include/signal.h :
+/usr/include/bits/setjmp.h :
+/usr/include/c++/4.2/cctype :
+/usr/include/ctype.h :
+/usr/include/c++/4.2/bits/postypes.h :
+/usr/include/c++/4.2/cwchar :
+/usr/include/c++/4.2/ctime :
+/usr/include/c++/4.2/bits/functexcept.h :
+/usr/include/c++/4.2/exception_defines.h :
+/usr/include/c++/4.2/bits/stl_pair.h :
+/usr/include/c++/4.2/bits/cpp_type_traits.h :
+/usr/include/c++/4.2/ext/type_traits.h :
+/usr/include/c++/4.2/utility :
+/usr/include/c++/4.2/bits/stl_relops.h :
+/usr/include/c++/4.2/bits/stl_iterator_base_types.h :
+/usr/include/c++/4.2/bits/stl_iterator_base_funcs.h :
+/usr/include/c++/4.2/bits/concept_check.h :
+/usr/include/c++/4.2/bits/stl_iterator.h :
+/usr/include/c++/4.2/debug/debug.h :
+/usr/include/c++/4.2/memory :
+/usr/include/c++/4.2/bits/allocator.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/c++allocator.h :
+/usr/include/c++/4.2/ext/new_allocator.h :
+/usr/include/c++/4.2/new :
+/usr/include/c++/4.2/exception :
+/usr/include/c++/4.2/bits/stl_construct.h :
+/usr/include/c++/4.2/bits/stl_uninitialized.h :
+/usr/include/c++/4.2/bits/stl_raw_storage_iter.h :
+/usr/include/c++/4.2/limits :
+/usr/include/c++/4.2/bits/ostream_insert.h :
+/usr/include/c++/4.2/bits/stl_function.h :
+/usr/include/c++/4.2/bits/basic_string.h :
+/usr/include/c++/4.2/ext/atomicity.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/atomic_word.h :
+/usr/include/c++/4.2/algorithm :
+/usr/include/c++/4.2/bits/stl_algo.h :
+/usr/include/c++/4.2/bits/stl_heap.h :
+/usr/include/c++/4.2/bits/stl_tempbuf.h :
+/usr/include/c++/4.2/bits/basic_string.tcc :
+/usr/include/jrtplib3/rtppacketbuilder.h :
+/usr/include/jrtplib3/rtperrors.h :
+/usr/include/jrtplib3/rtpdefines.h :
+/usr/include/jrtplib3/rtprandom.h :
+/usr/include/jrtplib3/rtptypes.h :
+/usr/include/jrtplib3/rtptypes_unix.h :
+/usr/include/inttypes.h :
+/usr/include/jrtplib3/rtptimeutilities.h :
+/usr/include/sys/time.h :
+/usr/include/jrtplib3/rtpsessionsources.h :
+/usr/include/jrtplib3/rtpsources.h :
+/usr/include/jrtplib3/rtpkeyhashtable.h :
+/usr/include/jrtplib3/rtcpsdespacket.h :
+/usr/include/jrtplib3/rtcppacket.h :
+/usr/include/jrtplib3/rtpstructs.h :
+/usr/include/jrtplib3/rtptransmitter.h :
+/usr/include/jrtplib3/rtpcollisionlist.h :
+/usr/include/jrtplib3/rtpaddress.h :
+/usr/include/c++/4.2/list :
+/usr/include/c++/4.2/bits/stl_list.h :
+/usr/include/c++/4.2/bits/list.tcc :
+/usr/include/jrtplib3/rtcpscheduler.h :
+/usr/include/jrtplib3/rtcppacketbuilder.h :
+/usr/include/jrtplib3/rtcpsdesinfo.h :
+/usr/include/jthread/jmutex.h :
+/usr/include/jrtplib3/rtppacket.h :
+/usr/include/jrtplib3/rtpudpv4transmitter.h :
+/usr/include/jrtplib3/rtpipv4destination.h :
+/usr/include/jrtplib3/rtphashtable.h :
+/usr/include/jrtplib3/rtpipv4address.h :
+/usr/include/jrtplib3/rtpsessionparams.h :
+/usr/include/jrtplib3/rtperrors.h :
+/usr/include/c++/4.2/iostream :
+/usr/include/c++/4.2/ostream :
+/usr/include/c++/4.2/ios :
+/usr/include/c++/4.2/bits/localefwd.h :
+/usr/include/c++/4.2/bits/ios_base.h :
+/usr/include/c++/4.2/bits/locale_classes.h :
+/usr/include/c++/4.2/streambuf :
+/usr/include/c++/4.2/bits/streambuf.tcc :
+/usr/include/c++/4.2/bits/basic_ios.h :
+/usr/include/c++/4.2/bits/streambuf_iterator.h :
+/usr/include/c++/4.2/bits/locale_facets.h :
+/usr/include/c++/4.2/cwctype :
+/usr/include/wctype.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/ctype_base.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/ctype_inline.h :
+/usr/include/c++/4.2/bits/codecvt.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/time_members.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/messages_members.h :
+/usr/include/c++/4.2/bits/basic_ios.tcc :
+/usr/include/c++/4.2/bits/ostream.tcc :
+/usr/include/c++/4.2/locale :
+/usr/include/c++/4.2/bits/locale_facets.tcc :
+/usr/include/c++/4.2/typeinfo :
+/usr/include/c++/4.2/istream :
+/usr/include/c++/4.2/bits/istream.tcc :
+dtuporttype.h :
+mcumessage.h :
+ts_communicate.h :
+clientsocket.h :
+asyncsocketex.h :
+singlecomm.h :
+tcpcomm.h :

Added: incubator/bluesky/trunk/RealClass/DTU/src/.deps/clientsocket.P
URL: http://svn.apache.org/viewvc/incubator/bluesky/trunk/RealClass/DTU/src/.deps/clientsocket.P?rev=885383&view=auto
==============================================================================
--- incubator/bluesky/trunk/RealClass/DTU/src/.deps/clientsocket.P (added)
+++ incubator/bluesky/trunk/RealClass/DTU/src/.deps/clientsocket.P Mon Nov 30 11:44:51 2009
@@ -0,0 +1,337 @@
+clientsocket.o: clientsocket.cpp stdafx.h /usr/include/sys/socket.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/sys/uio.h \
+  /usr/include/sys/types.h /usr/include/bits/types.h \
+  /usr/include/bits/typesizes.h /usr/include/time.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/stddef.h \
+  /usr/include/endian.h /usr/include/bits/endian.h \
+  /usr/include/sys/select.h /usr/include/bits/select.h \
+  /usr/include/bits/sigset.h /usr/include/bits/time.h \
+  /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
+  /usr/include/bits/uio.h /usr/include/bits/socket.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/limits.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/syslimits.h \
+  /usr/include/limits.h /usr/include/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/include/bits/sockaddr.h \
+  /usr/include/asm/socket.h /usr/include/asm/sockios.h \
+  /usr/include/netinet/in.h /usr/include/stdint.h \
+  /usr/include/bits/wchar.h /usr/include/bits/in.h \
+  /usr/include/bits/byteswap.h /usr/include/arpa/inet.h \
+  /usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \
+  /usr/include/asm/ioctls.h /usr/include/asm/ioctl.h \
+  /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \
+  /usr/include/sys/ttydefaults.h /usr/include/net/if.h \
+  /usr/include/string.h /usr/include/xlocale.h /usr/include/netdb.h \
+  /usr/include/rpc/netdb.h /usr/include/bits/siginfo.h \
+  /usr/include/bits/netdb.h /usr/include/unistd.h \
+  /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
+  /usr/include/bits/confname.h /usr/include/getopt.h /usr/include/stdio.h \
+  /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+  /usr/lib/gcc/i486-linux-gnu/4.2.4/include/stdarg.h \
+  /usr/include/bits/sys_errlist.h clientsocket.h asyncsocketex.h \
+  ts_communicate.h singlecomm.h /usr/include/jthread/jmutex.h \
+  /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
+  /usr/include/signal.h /usr/include/bits/setjmp.h tcpcomm.h mcumessage.h \
+  dtufunction.h /usr/include/jrtplib3/rtpsession.h \
+  /usr/include/jrtplib3/rtpconfig.h \
+  /usr/include/jrtplib3/rtpconfig_unix.h \
+  /usr/include/jrtplib3/rtplibraryversion.h /usr/include/c++/4.2/string \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/c++config.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/os_defines.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/cpu_defines.h \
+  /usr/include/c++/4.2/bits/stringfwd.h \
+  /usr/include/c++/4.2/bits/char_traits.h /usr/include/c++/4.2/cstring \
+  /usr/include/c++/4.2/cstddef /usr/include/c++/4.2/bits/stl_algobase.h \
+  /usr/include/c++/4.2/climits /usr/include/c++/4.2/cstdlib \
+  /usr/include/stdlib.h /usr/include/bits/waitflags.h \
+  /usr/include/bits/waitstatus.h /usr/include/alloca.h \
+  /usr/include/c++/4.2/iosfwd \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/c++locale.h \
+  /usr/include/c++/4.2/cstdio /usr/include/c++/4.2/clocale \
+  /usr/include/locale.h /usr/include/bits/locale.h \
+  /usr/include/langinfo.h /usr/include/nl_types.h /usr/include/iconv.h \
+  /usr/include/libintl.h /usr/include/c++/4.2/cstdarg \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/c++io.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/gthr.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/gthr-default.h \
+  /usr/include/c++/4.2/cctype /usr/include/ctype.h \
+  /usr/include/c++/4.2/bits/postypes.h /usr/include/c++/4.2/cwchar \
+  /usr/include/c++/4.2/ctime /usr/include/c++/4.2/bits/functexcept.h \
+  /usr/include/c++/4.2/exception_defines.h \
+  /usr/include/c++/4.2/bits/stl_pair.h \
+  /usr/include/c++/4.2/bits/cpp_type_traits.h \
+  /usr/include/c++/4.2/ext/type_traits.h /usr/include/c++/4.2/utility \
+  /usr/include/c++/4.2/bits/stl_relops.h \
+  /usr/include/c++/4.2/bits/stl_iterator_base_types.h \
+  /usr/include/c++/4.2/bits/stl_iterator_base_funcs.h \
+  /usr/include/c++/4.2/bits/concept_check.h \
+  /usr/include/c++/4.2/bits/stl_iterator.h \
+  /usr/include/c++/4.2/debug/debug.h /usr/include/c++/4.2/memory \
+  /usr/include/c++/4.2/bits/allocator.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/c++allocator.h \
+  /usr/include/c++/4.2/ext/new_allocator.h /usr/include/c++/4.2/new \
+  /usr/include/c++/4.2/exception \
+  /usr/include/c++/4.2/bits/stl_construct.h \
+  /usr/include/c++/4.2/bits/stl_uninitialized.h \
+  /usr/include/c++/4.2/bits/stl_raw_storage_iter.h \
+  /usr/include/c++/4.2/limits /usr/include/c++/4.2/bits/ostream_insert.h \
+  /usr/include/c++/4.2/bits/stl_function.h \
+  /usr/include/c++/4.2/bits/basic_string.h \
+  /usr/include/c++/4.2/ext/atomicity.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/atomic_word.h \
+  /usr/include/c++/4.2/algorithm /usr/include/c++/4.2/bits/stl_algo.h \
+  /usr/include/c++/4.2/bits/stl_heap.h \
+  /usr/include/c++/4.2/bits/stl_tempbuf.h \
+  /usr/include/c++/4.2/bits/basic_string.tcc \
+  /usr/include/jrtplib3/rtppacketbuilder.h \
+  /usr/include/jrtplib3/rtperrors.h /usr/include/jrtplib3/rtpdefines.h \
+  /usr/include/jrtplib3/rtprandom.h /usr/include/jrtplib3/rtptypes.h \
+  /usr/include/jrtplib3/rtptypes_unix.h /usr/include/inttypes.h \
+  /usr/include/jrtplib3/rtptimeutilities.h /usr/include/sys/time.h \
+  /usr/include/jrtplib3/rtpsessionsources.h \
+  /usr/include/jrtplib3/rtpsources.h \
+  /usr/include/jrtplib3/rtpkeyhashtable.h \
+  /usr/include/jrtplib3/rtcpsdespacket.h \
+  /usr/include/jrtplib3/rtcppacket.h /usr/include/jrtplib3/rtpstructs.h \
+  /usr/include/jrtplib3/rtptransmitter.h \
+  /usr/include/jrtplib3/rtpcollisionlist.h \
+  /usr/include/jrtplib3/rtpaddress.h /usr/include/c++/4.2/list \
+  /usr/include/c++/4.2/bits/stl_list.h /usr/include/c++/4.2/bits/list.tcc \
+  /usr/include/jrtplib3/rtcpscheduler.h \
+  /usr/include/jrtplib3/rtcppacketbuilder.h \
+  /usr/include/jrtplib3/rtcpsdesinfo.h /usr/include/jrtplib3/rtppacket.h \
+  /usr/include/jrtplib3/rtpudpv4transmitter.h \
+  /usr/include/jrtplib3/rtpipv4destination.h \
+  /usr/include/jrtplib3/rtphashtable.h \
+  /usr/include/jrtplib3/rtpipv4address.h \
+  /usr/include/jrtplib3/rtpsessionparams.h \
+  /usr/include/jrtplib3/rtperrors.h /usr/include/c++/4.2/iostream \
+  /usr/include/c++/4.2/ostream /usr/include/c++/4.2/ios \
+  /usr/include/c++/4.2/bits/localefwd.h \
+  /usr/include/c++/4.2/bits/ios_base.h \
+  /usr/include/c++/4.2/bits/locale_classes.h \
+  /usr/include/c++/4.2/streambuf /usr/include/c++/4.2/bits/streambuf.tcc \
+  /usr/include/c++/4.2/bits/basic_ios.h \
+  /usr/include/c++/4.2/bits/streambuf_iterator.h \
+  /usr/include/c++/4.2/bits/locale_facets.h /usr/include/c++/4.2/cwctype \
+  /usr/include/wctype.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/ctype_base.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/ctype_inline.h \
+  /usr/include/c++/4.2/bits/codecvt.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/time_members.h \
+  /usr/include/c++/4.2/i486-linux-gnu/bits/messages_members.h \
+  /usr/include/c++/4.2/bits/basic_ios.tcc \
+  /usr/include/c++/4.2/bits/ostream.tcc /usr/include/c++/4.2/locale \
+  /usr/include/c++/4.2/bits/locale_facets.tcc \
+  /usr/include/c++/4.2/typeinfo /usr/include/c++/4.2/istream \
+  /usr/include/c++/4.2/bits/istream.tcc dtuporttype.h
+clientsocket.cpp :
+stdafx.h :
+/usr/include/sys/socket.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/sys/uio.h :
+/usr/include/sys/types.h :
+/usr/include/bits/types.h :
+/usr/include/bits/typesizes.h :
+/usr/include/time.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/stddef.h :
+/usr/include/endian.h :
+/usr/include/bits/endian.h :
+/usr/include/sys/select.h :
+/usr/include/bits/select.h :
+/usr/include/bits/sigset.h :
+/usr/include/bits/time.h :
+/usr/include/sys/sysmacros.h :
+/usr/include/bits/pthreadtypes.h :
+/usr/include/bits/uio.h :
+/usr/include/bits/socket.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/limits.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/syslimits.h :
+/usr/include/limits.h :
+/usr/include/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/include/bits/sockaddr.h :
+/usr/include/asm/socket.h :
+/usr/include/asm/sockios.h :
+/usr/include/netinet/in.h :
+/usr/include/stdint.h :
+/usr/include/bits/wchar.h :
+/usr/include/bits/in.h :
+/usr/include/bits/byteswap.h :
+/usr/include/arpa/inet.h :
+/usr/include/sys/ioctl.h :
+/usr/include/bits/ioctls.h :
+/usr/include/asm/ioctls.h :
+/usr/include/asm/ioctl.h :
+/usr/include/asm-generic/ioctl.h :
+/usr/include/bits/ioctl-types.h :
+/usr/include/sys/ttydefaults.h :
+/usr/include/net/if.h :
+/usr/include/string.h :
+/usr/include/xlocale.h :
+/usr/include/netdb.h :
+/usr/include/rpc/netdb.h :
+/usr/include/bits/siginfo.h :
+/usr/include/bits/netdb.h :
+/usr/include/unistd.h :
+/usr/include/bits/posix_opt.h :
+/usr/include/bits/environments.h :
+/usr/include/bits/confname.h :
+/usr/include/getopt.h :
+/usr/include/stdio.h :
+/usr/include/libio.h :
+/usr/include/_G_config.h :
+/usr/include/wchar.h :
+/usr/lib/gcc/i486-linux-gnu/4.2.4/include/stdarg.h :
+/usr/include/bits/sys_errlist.h :
+clientsocket.h :
+asyncsocketex.h :
+ts_communicate.h :
+singlecomm.h :
+/usr/include/jthread/jmutex.h :
+/usr/include/pthread.h :
+/usr/include/sched.h :
+/usr/include/bits/sched.h :
+/usr/include/signal.h :
+/usr/include/bits/setjmp.h :
+tcpcomm.h :
+mcumessage.h :
+dtufunction.h :
+/usr/include/jrtplib3/rtpsession.h :
+/usr/include/jrtplib3/rtpconfig.h :
+/usr/include/jrtplib3/rtpconfig_unix.h :
+/usr/include/jrtplib3/rtplibraryversion.h :
+/usr/include/c++/4.2/string :
+/usr/include/c++/4.2/i486-linux-gnu/bits/c++config.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/os_defines.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/cpu_defines.h :
+/usr/include/c++/4.2/bits/stringfwd.h :
+/usr/include/c++/4.2/bits/char_traits.h :
+/usr/include/c++/4.2/cstring :
+/usr/include/c++/4.2/cstddef :
+/usr/include/c++/4.2/bits/stl_algobase.h :
+/usr/include/c++/4.2/climits :
+/usr/include/c++/4.2/cstdlib :
+/usr/include/stdlib.h :
+/usr/include/bits/waitflags.h :
+/usr/include/bits/waitstatus.h :
+/usr/include/alloca.h :
+/usr/include/c++/4.2/iosfwd :
+/usr/include/c++/4.2/i486-linux-gnu/bits/c++locale.h :
+/usr/include/c++/4.2/cstdio :
+/usr/include/c++/4.2/clocale :
+/usr/include/locale.h :
+/usr/include/bits/locale.h :
+/usr/include/langinfo.h :
+/usr/include/nl_types.h :
+/usr/include/iconv.h :
+/usr/include/libintl.h :
+/usr/include/c++/4.2/cstdarg :
+/usr/include/c++/4.2/i486-linux-gnu/bits/c++io.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/gthr.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/gthr-default.h :
+/usr/include/c++/4.2/cctype :
+/usr/include/ctype.h :
+/usr/include/c++/4.2/bits/postypes.h :
+/usr/include/c++/4.2/cwchar :
+/usr/include/c++/4.2/ctime :
+/usr/include/c++/4.2/bits/functexcept.h :
+/usr/include/c++/4.2/exception_defines.h :
+/usr/include/c++/4.2/bits/stl_pair.h :
+/usr/include/c++/4.2/bits/cpp_type_traits.h :
+/usr/include/c++/4.2/ext/type_traits.h :
+/usr/include/c++/4.2/utility :
+/usr/include/c++/4.2/bits/stl_relops.h :
+/usr/include/c++/4.2/bits/stl_iterator_base_types.h :
+/usr/include/c++/4.2/bits/stl_iterator_base_funcs.h :
+/usr/include/c++/4.2/bits/concept_check.h :
+/usr/include/c++/4.2/bits/stl_iterator.h :
+/usr/include/c++/4.2/debug/debug.h :
+/usr/include/c++/4.2/memory :
+/usr/include/c++/4.2/bits/allocator.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/c++allocator.h :
+/usr/include/c++/4.2/ext/new_allocator.h :
+/usr/include/c++/4.2/new :
+/usr/include/c++/4.2/exception :
+/usr/include/c++/4.2/bits/stl_construct.h :
+/usr/include/c++/4.2/bits/stl_uninitialized.h :
+/usr/include/c++/4.2/bits/stl_raw_storage_iter.h :
+/usr/include/c++/4.2/limits :
+/usr/include/c++/4.2/bits/ostream_insert.h :
+/usr/include/c++/4.2/bits/stl_function.h :
+/usr/include/c++/4.2/bits/basic_string.h :
+/usr/include/c++/4.2/ext/atomicity.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/atomic_word.h :
+/usr/include/c++/4.2/algorithm :
+/usr/include/c++/4.2/bits/stl_algo.h :
+/usr/include/c++/4.2/bits/stl_heap.h :
+/usr/include/c++/4.2/bits/stl_tempbuf.h :
+/usr/include/c++/4.2/bits/basic_string.tcc :
+/usr/include/jrtplib3/rtppacketbuilder.h :
+/usr/include/jrtplib3/rtperrors.h :
+/usr/include/jrtplib3/rtpdefines.h :
+/usr/include/jrtplib3/rtprandom.h :
+/usr/include/jrtplib3/rtptypes.h :
+/usr/include/jrtplib3/rtptypes_unix.h :
+/usr/include/inttypes.h :
+/usr/include/jrtplib3/rtptimeutilities.h :
+/usr/include/sys/time.h :
+/usr/include/jrtplib3/rtpsessionsources.h :
+/usr/include/jrtplib3/rtpsources.h :
+/usr/include/jrtplib3/rtpkeyhashtable.h :
+/usr/include/jrtplib3/rtcpsdespacket.h :
+/usr/include/jrtplib3/rtcppacket.h :
+/usr/include/jrtplib3/rtpstructs.h :
+/usr/include/jrtplib3/rtptransmitter.h :
+/usr/include/jrtplib3/rtpcollisionlist.h :
+/usr/include/jrtplib3/rtpaddress.h :
+/usr/include/c++/4.2/list :
+/usr/include/c++/4.2/bits/stl_list.h :
+/usr/include/c++/4.2/bits/list.tcc :
+/usr/include/jrtplib3/rtcpscheduler.h :
+/usr/include/jrtplib3/rtcppacketbuilder.h :
+/usr/include/jrtplib3/rtcpsdesinfo.h :
+/usr/include/jrtplib3/rtppacket.h :
+/usr/include/jrtplib3/rtpudpv4transmitter.h :
+/usr/include/jrtplib3/rtpipv4destination.h :
+/usr/include/jrtplib3/rtphashtable.h :
+/usr/include/jrtplib3/rtpipv4address.h :
+/usr/include/jrtplib3/rtpsessionparams.h :
+/usr/include/jrtplib3/rtperrors.h :
+/usr/include/c++/4.2/iostream :
+/usr/include/c++/4.2/ostream :
+/usr/include/c++/4.2/ios :
+/usr/include/c++/4.2/bits/localefwd.h :
+/usr/include/c++/4.2/bits/ios_base.h :
+/usr/include/c++/4.2/bits/locale_classes.h :
+/usr/include/c++/4.2/streambuf :
+/usr/include/c++/4.2/bits/streambuf.tcc :
+/usr/include/c++/4.2/bits/basic_ios.h :
+/usr/include/c++/4.2/bits/streambuf_iterator.h :
+/usr/include/c++/4.2/bits/locale_facets.h :
+/usr/include/c++/4.2/cwctype :
+/usr/include/wctype.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/ctype_base.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/ctype_inline.h :
+/usr/include/c++/4.2/bits/codecvt.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/time_members.h :
+/usr/include/c++/4.2/i486-linux-gnu/bits/messages_members.h :
+/usr/include/c++/4.2/bits/basic_ios.tcc :
+/usr/include/c++/4.2/bits/ostream.tcc :
+/usr/include/c++/4.2/locale :
+/usr/include/c++/4.2/bits/locale_facets.tcc :
+/usr/include/c++/4.2/typeinfo :
+/usr/include/c++/4.2/istream :
+/usr/include/c++/4.2/bits/istream.tcc :
+dtuporttype.h :