gtkguitune/0000755000175000017500000000000011064666204011713 5ustar flohflohgtkguitune/aboutbox.h0000644000175000017500000000034711062733003013701 0ustar flohfloh#include // for VERSION #include #define APPNAME "Gtk-- Guitune" #define GUITUNE_VERSION_STRING VERSION #ifdef __cplusplus extern "C" { #endif void about_cb(void); #ifdef __cplusplus } #endif gtkguitune/logview.h0000644000175000017500000000416411063701271013536 0ustar flohfloh// logview.cc // // logarithmic scale for tunes // // Copyright (C) 1999 Florian Berger // Copyright (C) 1999 Florian Berger // Email: florian.berger@jk.uni-linz.ac.at // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License Version 2 as // published by the Free Software Foundation; // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // // #include extern double KAMMERTON, KAMMERTON_LOG; class LogView : public Gtk::DrawingArea { // Q_OBJECT public: LogView(); ~LogView(); enum {us_scale,us_scale_alt,german_scale,german_scale_alt}; int lfreq_pos(double lfreq); int pos_note(int pos); void change_lfreq(double freq); void setScale(int scale); void set_nat_tuning(bool state); void invalidate(); void invalidate_arrow(); protected: bool on_expose_event(GdkEventExpose* p0); // void draw_default_impl(); bool on_button_press_event(GdkEventButton* p0); private: bool nat_tuning_on; int x0,y0,h; int grundton; // for natural tuning double lfreq0,lfreq1; double lfreq; double freqs[12]; double lfreqs[12]; Gdk::Color i_col_bg; Gdk::Color i_col_draw; Gdk::Color i_col_shad; Gdk::Color i_col_bg2; Gdk::Color i_col_pointer; Gdk::Color i_col_ticks; Gdk::Color i_col_marks; Glib::RefPtr i_GC; void draw_arrow(); void draw_it(); }; gtkguitune/osziview.cc0000644000175000017500000002636311063046206014104 0ustar flohfloh// osziview.cc // // oszi - widget for gtk-- // // Copyright (C) 1999 Florian Berger // Email: florian.berger@jk.uni-linz.ac.at // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License Version 2 as // published by the Free Software Foundation; // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // // #include #include #include #include "resources.h" #include "osziview.h" #include #include #include #define SCALE_HEIGHT 20 #define xscr 20 #define yscr 5 #define wscr (get_width()-xscr*2) #define hscr (get_height()-yscr-SCALE_HEIGHT-1) OsziView::OsziView() : Gtk::DrawingArea() { samp_byte_array = g_byte_array_new(); i_col_bg. set("black"); get_colormap()->alloc_color(i_col_bg ); i_col_trig. set("cyan" ); get_colormap()->alloc_color(i_col_trig ); i_col_mark. set("red" ); get_colormap()->alloc_color(i_col_mark ); i_col_data. set("green"); get_colormap()->alloc_color(i_col_data ); i_col_scale.set("#B8B8B8"); get_colormap()->alloc_color(i_col_scale); i_col_ticks.set("#666"); get_colormap()->alloc_color(i_col_ticks); i_col_zero. set("gray" ); get_colormap()->alloc_color(i_col_zero ); trigfact=0.6; i_adaptive_scale=1; freq=0.0; startpoint=0; endpoint=0; // Default to three dummy samples setSampleData((const unsigned char *) "\0\0\0", 3); } OsziView::~OsziView() { g_byte_array_free (samp_byte_array, TRUE); } void OsziView::calc_minmax(void) { int i; unsigned char * samp_uc; short int * samp_s16le; samp_s16le = (short int *) samp; samp_uc = (unsigned char *) samp; if(i_sampfmt == U8){ i_minsamp=255; i_maxsamp=0; for(i=0;i i_maxsamp ) i_maxsamp = samp_uc[i-1]; if ( samp_uc[i-1] < i_minsamp ) i_minsamp = samp_uc[i-1]; } if ( !i_adaptive_scale ){ i_divisor = 0x100; } else { i_divisor = 8; if ( 2*Abs(i_maxsamp-128) > i_divisor ) i_divisor=2*Abs(i_maxsamp-128); if ( 2*Abs(i_minsamp-128) > i_divisor ) i_divisor=2*Abs(i_minsamp-128); } } else if(i_sampfmt == S16_LE){ i_minsamp= 33000; i_maxsamp=-33000; for(i=0;i i_maxsamp ) i_maxsamp = samp_s16le[i-1]; if ( samp_s16le[i-1] < i_minsamp ) i_minsamp = samp_s16le[i-1]; } if ( !i_adaptive_scale ){ i_divisor = 0x10000; } else { i_divisor = 2048; if ( 2*Abs(i_maxsamp) > i_divisor ) i_divisor=2*Abs(i_maxsamp); if ( 2*Abs(i_minsamp) > i_divisor ) i_divisor=2*Abs(i_minsamp); } } } void OsziView::calc_freq(void) /* in units of sampfreq */ { int t1, t2, A1, A2, tc, i, schmitt_triggered; short int * samp_s16le; unsigned char * samp_uc; samp_s16le = (short int *) samp; samp_uc = (unsigned char *) samp; if(i_sampfmt==U8){ for(i=0,A1=0;i0) A1=Abs(samp_uc[i]-128); for(i=0,A2=0;i0) A1=Abs(samp_s16le[i]); for(i=0,A2=0;i=t1); else if( LEVTRIGN(samp_uc,i,t2) ) { endpoint=i; tc++; schmitt_triggered = NO; } } } else if(i_sampfmt==S16_LE){ for( i=startpoint, tc=0; i=t1); else if( LEVTRIGN(samp_s16le,i,t2) ) { endpoint=i; tc++; schmitt_triggered = NO; } } } if (endpoint==startpoint) endpoint++; freq = (double)tc/(double)(endpoint-startpoint); if (freq<1E-15) freq = 1E-15; trigger_a = t1; trigger_b = t2; } void OsziView::recalc(void) { calc_minmax(); calc_freq(); } void OsziView::paint_sample(void) { int i,x1,x2,y1,y2; unsigned char * samp_uc; short int * samp_s16le; //erase(); samp_s16le = (short int *) samp; samp_uc = (unsigned char *) samp; if (!i_GC) i_GC = Gdk::GC::create( get_window() ); i_GC->set_foreground(i_col_zero); get_window()-> draw_line( i_GC, xscr,yscr+hscr/2,xscr+wscr-1,yscr+hscr/2); i_GC->set_foreground(i_col_data); for(i=1;idraw_line( i_GC, x1, y1, x2, y2 ); } //printf("hallo\n"); } void OsziView::paint_marks(void) { int linex, liney; int t1 = trigger_a, t2 = trigger_b; i_GC->set_foreground(i_col_mark); linex = xscr+endpoint*wscr/sampnr; get_window()->draw_line( i_GC, linex, yscr, linex, yscr+hscr ); linex = xscr+startpoint*wscr/sampnr; get_window()->draw_line( i_GC, linex, yscr, linex, yscr+hscr ); i_GC->set_foreground(i_col_trig); if (i_sampfmt == U8) { t1 -= 128; t2 -= 128; } liney = yscr+(t1+i_divisor/2)*hscr/i_divisor; get_window()->draw_line( i_GC, xscr, liney, xscr+wscr, liney ); liney = yscr+(t2+i_divisor/2)*hscr/i_divisor; get_window()->draw_line( i_GC, xscr, liney, xscr+wscr, liney ); } void OsziView::copy_sample_data(const void *ptr, int data_size) { g_byte_array_set_size(samp_byte_array, 0); g_byte_array_append(samp_byte_array, (guint8 *) ptr, data_size); samp = (short int *) samp_byte_array->data; } void OsziView::setSampleData(const unsigned char *s, int num_samples) { copy_sample_data(s, num_samples); i_sampfmt = U8; if (num_samples != sampnr) { sampnr = num_samples; invalidate(); } else invalidate_sample(); recalc(); } void OsziView::setSampleData(const short int *s, int num_samples) { copy_sample_data(s, num_samples * sizeof (short int)); i_sampfmt = S16_LE; if (num_samples != sampnr) { sampnr = num_samples; invalidate(); } else invalidate_sample(); recalc(); } void OsziView::setSampleFreq(double f) { sampfreq = f; invalidate(); } void OsziView::setAdaptive(int active) { i_adaptive_scale = active; invalidate(); } void OsziView::setTrigFact(double fact) { trigfact=fact; invalidate(); } double OsziView::getTrigFact() { return(trigfact); } void OsziView::invalidate(void) { // Invalidate the whole window if (is_realized()) { Gdk::Rectangle rect = get_allocation(); rect.set_x(0); rect.set_y(0); // The gtkmm bindings won't let you call invalidate_rect // with a NULL argument to clear the whole window, so you // have to jump through these hoops get_window()->invalidate_rect(rect, false); } } void OsziView::invalidate_sample(void) { if (is_realized()) { Gdk::Rectangle rect = get_allocation(); rect.set_x(0); rect.set_y(0); rect.set_height(rect.get_height() - SCALE_HEIGHT); get_window()->invalidate_rect(rect, false); } } void OsziView::paint_scale() { double i,j; double di,dj; double dim; //mantissa of di char str[100]; // printf("nr=%d, freq=%lf\n",nr,f); if (!i_GC) i_GC = Gdk::GC::create( get_window() ); di = (double)sampnr/sampfreq/10.0; for(dim=di;dim>=10.0;dim/=10.0); for(;dim<1.0;dim*=10.0); if (dim<=5.0) { di=di/dim*5.0; dim=5.0; } else { di=di/dim*10.0; dim=10.0;} dj=di/10.0; int scale_top = get_height() - SCALE_HEIGHT; i_GC->set_foreground(i_col_ticks); for( j=0.0; j<(double)sampnr/sampfreq; j+=dj ){ get_window()-> draw_line( i_GC, xscr+(j*sampfreq)*wscr/sampnr,scale_top, xscr+(j*sampfreq)*wscr/sampnr,scale_top+3 ); } if (dim!=5.0){ dj=di/2.0; i_GC->set_foreground(i_col_scale); for( j=0.0; j<(double)sampnr/sampfreq; j+=dj ){ get_window()-> draw_line( i_GC, xscr+(j*sampfreq)*wscr/sampnr,scale_top, xscr+(j*sampfreq)*wscr/sampnr,scale_top+5 ); } } i_GC->set_foreground(i_col_scale); Glib::RefPtr layout = create_pango_layout(""); layout->set_font_description( Pango::FontDescription("Sans 8 ") ); for( i=0.0; i<(double)sampnr/sampfreq; i+=di ){ get_window()-> draw_line( i_GC, xscr+(i*sampfreq)*wscr/sampnr,scale_top, xscr+(i*sampfreq)*wscr/sampnr,scale_top+7 ); sprintf(str,"%.0f",i*1000); // in ms layout->set_text( str ); Pango::Rectangle extents = layout->get_pixel_logical_extents(); get_window()-> draw_layout(i_GC, xscr+(i*sampfreq)*wscr/sampnr- extents.get_width()/2, scale_top+7+extents.get_ascent(), layout ); } } bool OsziView::on_expose_event(GdkEventExpose *event) { Gtk::DrawingArea::on_expose_event(event); // Avoid painting the scale if only the sample area has changed if (event->area.y + event->area.height > get_height() - SCALE_HEIGHT) paint_scale(); paint_sample(); paint_marks(); return true; } void OsziView::on_realize() { Gtk::DrawingArea::on_realize(); get_window()->set_background( i_col_bg ); } gtkguitune/aboutbox.c0000644000175000017500000001170411064305726013704 0ustar flohfloh#include"aboutbox.h" #include "FB_logo.xpm" //static const char about_text[] = "Sound Stretcher Plugin\n\n //By Florian Berger\n \n\n (c) 2001"; static const char GPL_text[] = "\ 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.\n\n\ 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.\n\n\ 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."; static const char copy_text[] = "Copyright (C) 2001\n\ Florian Berger\n\n\ http://www.geocities.com/harpin_floh/home.html"; static const char title_text[] = APPNAME" - "GUITUNE_VERSION_STRING; static GtkWidget * about_dialog = NULL; static gint about_destroy_cb(GtkWidget * w, GdkEventAny * e, gpointer data) { gtk_widget_destroy(about_dialog); about_dialog = NULL; return TRUE; } static void about_ok_cb(GtkButton * button, gpointer data) { gtk_widget_destroy(GTK_WIDGET(about_dialog)); about_dialog = NULL; } void about_cb(void) { GtkWidget * vbox, * text, * scrolltext, * button; GtkWidget * titlelabel, * copylabel; GdkPixbuf * logopix; GtkWidget * logo; GdkPixmap * FBlogopix; GdkBitmap * FBlogomask; GtkWidget * FBlogo; GtkWidget * copyhbox, * copy_rbox, * copy_lbox; GtkTextBuffer *text_buf; GdkScreen *screen; GtkIconTheme *icon_theme; if (about_dialog != NULL) return; about_dialog = gtk_dialog_new(); gtk_widget_show(about_dialog); screen = gtk_widget_get_screen (about_dialog); icon_theme = gtk_icon_theme_get_for_screen (screen); /* title logo */ logopix = gtk_icon_theme_load_icon (icon_theme, "guitune_logo", 48, 0, NULL); logo = gtk_image_new (); if (logopix) { gtk_image_set_from_pixbuf (GTK_IMAGE (logo), logopix); g_object_unref (logopix); } /* FB-logo */ FBlogopix = gdk_pixmap_create_from_xpm_d(about_dialog->window, &FBlogomask, NULL, (gchar **) FB_logo_xpm); FBlogo = gtk_pixmap_new(FBlogopix,FBlogomask); gtk_signal_connect(GTK_OBJECT(about_dialog), "destroy", GTK_SIGNAL_FUNC(about_destroy_cb), NULL); gtk_window_set_title(GTK_WINDOW(about_dialog), "About "APPNAME); /* labels */ titlelabel = gtk_label_new(title_text); copylabel = gtk_label_new(copy_text); gtk_label_set_justify(GTK_LABEL(copylabel),GTK_JUSTIFY_LEFT); copy_lbox = gtk_hbox_new(FALSE,0); copy_rbox = gtk_hbox_new(FALSE,0); gtk_box_pack_end (GTK_BOX(copy_lbox), FBlogo, FALSE, TRUE, 0); gtk_box_pack_start(GTK_BOX(copy_rbox), copylabel, FALSE, TRUE, 0); copyhbox = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(copyhbox), copy_lbox, TRUE, TRUE, 5); gtk_box_pack_start(GTK_BOX(copyhbox), copy_rbox, TRUE, TRUE, 5); vbox = gtk_vbox_new(FALSE, 5); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(about_dialog)->vbox), vbox, TRUE, TRUE, 5); scrolltext = gtk_scrolled_window_new(NULL,NULL); text = gtk_text_view_new(); text_buf = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)); gtk_text_view_set_editable(GTK_TEXT_VIEW(text), FALSE); gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(text), GTK_WRAP_WORD); gtk_text_buffer_set_text(text_buf, GPL_text, -1); scrolltext = gtk_scrolled_window_new(NULL,NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolltext), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_container_add(GTK_CONTAINER(scrolltext),text); gtk_box_pack_start(GTK_BOX(vbox), logo, FALSE, TRUE, 5); gtk_box_pack_start(GTK_BOX(vbox), titlelabel, FALSE, TRUE, 5); gtk_box_pack_start(GTK_BOX(vbox), copyhbox, FALSE, TRUE, 5); gtk_box_pack_start(GTK_BOX(vbox), scrolltext, TRUE, TRUE, 5); gtk_container_set_border_width(GTK_CONTAINER(vbox), 8); gtk_widget_set_usize (scrolltext,-1,110); button = gtk_button_new_with_label("Close"); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(about_dialog)->action_area), button, FALSE, FALSE, 0); gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(about_ok_cb), NULL); GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); gtk_widget_grab_default(button); gtk_widget_show(button); // gtk_widget_set_usize (sndstretch_about_dialog,-1,-1); gtk_widget_show_all(about_dialog); } gtkguitune/configure0000755000175000017500000055062411064666173013643 0ustar flohfloh#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006 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=: # Zsh 3.x and 4.x performs 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 # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # 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.) as_nl=' ' 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 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. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # 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 || 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=: # Zsh 3.x and 4.x performs 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=: # Zsh 3.x and 4.x performs 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 autoconf@gnu.org about your system, echo including any error possibly output before this echo message } 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" || { 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 fi echo >conf$$.file 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 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="guitune.cc" # 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='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir localstatedir includedir oldincludedir docdir infodir htmldir dvidir pdfdir psdir libdir localedir mandir DEFS ECHO_C ECHO_N ECHO_T LIBS build_alias host_alias target_alias INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA am__isrc CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE LN_S PKG_CONFIG GTKMM_CFLAGS GTKMM_LIBS CPP GREP EGREP LIBOBJS LTLIBOBJS' ac_subst_files='' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CXX CXXFLAGS CCC PKG_CONFIG GTKMM_CFLAGS GTKMM_LIBS CPP' # Initialize some variables set by options. ac_init_help= ac_init_version=false # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (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_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=no ;; -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_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -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_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=\$ac_optarg ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` { echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi # Be sure to have absolute directory names. 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 case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac { 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 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 .` || { echo "$as_me: error: Working directory cannot be determined" >&2 { (exit 1); exit 1; }; } test "X$ac_ls_di" = "X$ac_pwd_ls_di" || { 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 -- "$0" || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X"$0" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." { 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" || { 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 _ACEOF fi if test -n "$ac_init_help"; then cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --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 CXX C++ compiler command CXXFLAGS C++ compiler flags PKG_CONFIG path to pkg-config utility GTKMM_CFLAGS C compiler flags for GTKMM, overriding pkg-config GTKMM_LIBS linker flags for GTKMM, overriding pkg-config CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. _ACEOF 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" || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`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 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.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 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.61. 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=. 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=`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_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $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=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac 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=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac 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 && echo "$as_me: caught signal $ac_signal" 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 explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then set x "$CONFIG_SITE" elif test "x$prefix" != xNONE; then set x "$prefix/share/config.site" "$prefix/etc/config.site" else set x "$ac_default_prefix/share/config.site" \ "$ac_default_prefix/etc/config.site" fi shift for ac_site_file do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $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,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.10' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} { (exit 1); exit 1; }; } fi # 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. { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in ./ | .// | /cC/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { 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 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done IFS=$as_save_IFS 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 { echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { echo "$as_me:$LINENO: checking whether build environment is sane" >&5 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&2;} { (exit 1); exit 1; }; } fi test "$2" = conftest.file ) then # Ok. : else { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm -f conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi { echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } if test -z "$MKDIR_P"; then if test "${ac_cv_path_mkdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { echo "$as_me:$LINENO: result: $MKDIR_P" >&5 echo "${ECHO_T}$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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$AWK" && break done { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } set x ${MAKE-make}; ac_make=`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 echo $ECHO_N "(cached) $ECHO_C" >&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 { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } SET_MAKE= else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null 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 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } fi 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=gtkguitune VERSION=0.7 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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" # 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" for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$AWK" && break done ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # # List of possible output files, starting from the most likely. # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) # only as a last resort. b.out is created by i960 compilers. ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' # # The IRIX 6 linker writes into existing files which may not be # executable, retaining their permissions. Remove them first so a # subsequent execution test works. ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link_default") 2>&5 ac_status=$? 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 | *.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 { echo "$as_me:$LINENO: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6; } if test -z "$ac_file"; then echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: C compiler cannot create executables See \`config.log' for more details." >&5 echo "$as_me: error: C compiler cannot create executables See \`config.log' for more details." >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { echo "$as_me:$LINENO: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6; } { echo "$as_me:$LINENO: checking for suffix of executables" >&5 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT { echo "$as_me:$LINENO: checking for suffix of object files" >&5 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>&5 ac_status=$? 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 ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $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 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 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 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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 "echo \"\$as_me:$LINENO: $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 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 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 "echo \"\$as_me:$LINENO: $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 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 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 "echo \"\$as_me:$LINENO: $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 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 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 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 "echo \"\$as_me:$LINENO: $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 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 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) { echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6; } ;; xno) { echo "$as_me:$LINENO: result: unsupported" >&5 echo "${ECHO_T}unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 echo "${ECHO_T}$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 DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi { echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking 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 depcc="$CC" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # 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_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # 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_CXX="$ac_prog" 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_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $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 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-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 "echo \"\$as_me:$LINENO: $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 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CXXFLAGS="" 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 "echo \"\$as_me:$LINENO: $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 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-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 "echo \"\$as_me:$LINENO: $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 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else 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_cxx_werror_flag=$ac_save_cxx_werror_flag fi { echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi 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 depcc="$CXX" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in ./ | .// | /cC/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { 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 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done IFS=$as_save_IFS 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 { echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { echo "$as_me:$LINENO: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6; } fi 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { 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" 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 { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" 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 { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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 { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { echo "$as_me:$LINENO: checking for GTKMM" >&5 echo $ECHO_N "checking for GTKMM... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$GTKMM_CFLAGS"; then pkg_cv_GTKMM_CFLAGS="$GTKMM_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glibmm-2.4 gtkmm-2.4 sigc++-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "glibmm-2.4 gtkmm-2.4 sigc++-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GTKMM_CFLAGS=`$PKG_CONFIG --cflags "glibmm-2.4 gtkmm-2.4 sigc++-2.0" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$GTKMM_LIBS"; then pkg_cv_GTKMM_LIBS="$GTKMM_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glibmm-2.4 gtkmm-2.4 sigc++-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "glibmm-2.4 gtkmm-2.4 sigc++-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GTKMM_LIBS=`$PKG_CONFIG --libs "glibmm-2.4 gtkmm-2.4 sigc++-2.0" 2>/dev/null` else pkg_failed=yes fi 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 GTKMM_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glibmm-2.4 gtkmm-2.4 sigc++-2.0"` else GTKMM_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glibmm-2.4 gtkmm-2.4 sigc++-2.0"` fi # Put the nasty error message in config.log where it belongs echo "$GTKMM_PKG_ERRORS" >&5 { { echo "$as_me:$LINENO: error: Package requirements (glibmm-2.4 gtkmm-2.4 sigc++-2.0) were not met: $GTKMM_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 GTKMM_CFLAGS and GTKMM_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 echo "$as_me: error: Package requirements (glibmm-2.4 gtkmm-2.4 sigc++-2.0) were not met: $GTKMM_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 GTKMM_CFLAGS and GTKMM_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 { { 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 GTKMM_CFLAGS and GTKMM_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 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 GTKMM_CFLAGS and GTKMM_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 GTKMM_CFLAGS=$pkg_cv_GTKMM_CFLAGS GTKMM_LIBS=$pkg_cv_GTKMM_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test "${ac_cv_prog_CPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer 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 "echo \"\$as_me:$LINENO: $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 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 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 "echo \"\$as_me:$LINENO: $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 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 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { echo "$as_me:$LINENO: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer 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 "echo \"\$as_me:$LINENO: $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 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 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 "echo \"\$as_me:$LINENO: $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 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 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } if test "${ac_cv_path_GREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Extract the first word of "grep ggrep" to use in msg output if test -z "$GREP"; then set dummy grep ggrep; ac_prog_name=$2 if test "${ac_cv_path_GREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" 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 fi GREP="$ac_cv_path_GREP" if test -z "$GREP"; then { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} { (exit 1); exit 1; }; } fi else ac_cv_path_GREP=$GREP fi fi { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 echo "${ECHO_T}$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { echo "$as_me:$LINENO: checking for egrep" >&5 echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else # Extract the first word of "egrep" to use in msg output if test -z "$EGREP"; then set dummy egrep; ac_prog_name=$2 if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" 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 fi EGREP="$ac_cv_path_EGREP" if test -z "$EGREP"; then { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 echo "$as_me: error: no acceptable $ac_prog_name 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 { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #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 "echo \"\$as_me:$LINENO: $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 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 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $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 "echo \"\$as_me:$LINENO: $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 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 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 echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in fcntl.h sys/ioctl.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $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 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 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 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $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 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 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ;; esac { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done { echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; } if test "${ac_cv_c_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { /* FIXME: Include the comments suggested by Paul. */ #ifndef __cplusplus /* Ultrix mips cc rejects this. */ typedef int charset[2]; const charset cs; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this. */ char *t; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; }; struct s *b; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #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 "echo \"\$as_me:$LINENO: $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 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_c_const=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then cat >>confdefs.h <<\_ACEOF #define const _ACEOF fi if test $ac_cv_c_compiler_gnu = yes; then { echo "$as_me:$LINENO: checking whether $CC needs -traditional" >&5 echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6; } if test "${ac_cv_prog_gcc_traditional+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_pattern="Autoconf.*'x'" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include Autoconf TIOCGETP _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "$ac_pattern" >/dev/null 2>&1; then ac_cv_prog_gcc_traditional=yes else ac_cv_prog_gcc_traditional=no fi rm -f conftest* if test $ac_cv_prog_gcc_traditional = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include Autoconf TCGETA _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "$ac_pattern" >/dev/null 2>&1; then ac_cv_prog_gcc_traditional=yes fi rm -f conftest* fi fi { echo "$as_me:$LINENO: result: $ac_cv_prog_gcc_traditional" >&5 echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6; } if test $ac_cv_prog_gcc_traditional = yes; then CC="$CC -traditional" fi fi ac_config_files="$ac_config_files Makefile icon/Makefile" 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_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $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" && { echo "$as_me:$LINENO: updating cache $cache_file" >&5 echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 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=`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 -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be 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=: # Zsh 3.x and 4.x performs 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 # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # 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.) as_nl=' ' 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 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. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # 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 || 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" || { 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 fi echo >conf$$.file 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 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.61. 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 cat >>$CONFIG_STATUS <<_ACEOF # 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_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2006 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' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. ac_need_defaults=: while test $# != 0 do case $1 in --*=*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; 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 ) echo "$ac_cs_version"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header { echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; };; --help | --hel | -h ) echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) { 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 if \$ac_cs_recheck; then echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 CONFIG_SHELL=$SHELL export CONFIG_SHELL exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # 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" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "icon/Makefile") CONFIG_FILES="$CONFIG_FILES icon/Makefile" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason 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") } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } # # Set up the sed scripts for CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "$CONFIG_FILES"; then _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF SHELL!$SHELL$ac_delim PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim PACKAGE_NAME!$PACKAGE_NAME$ac_delim PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim PACKAGE_STRING!$PACKAGE_STRING$ac_delim PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim exec_prefix!$exec_prefix$ac_delim prefix!$prefix$ac_delim program_transform_name!$program_transform_name$ac_delim bindir!$bindir$ac_delim sbindir!$sbindir$ac_delim libexecdir!$libexecdir$ac_delim datarootdir!$datarootdir$ac_delim datadir!$datadir$ac_delim sysconfdir!$sysconfdir$ac_delim sharedstatedir!$sharedstatedir$ac_delim localstatedir!$localstatedir$ac_delim includedir!$includedir$ac_delim oldincludedir!$oldincludedir$ac_delim docdir!$docdir$ac_delim infodir!$infodir$ac_delim htmldir!$htmldir$ac_delim dvidir!$dvidir$ac_delim pdfdir!$pdfdir$ac_delim psdir!$psdir$ac_delim libdir!$libdir$ac_delim localedir!$localedir$ac_delim mandir!$mandir$ac_delim DEFS!$DEFS$ac_delim ECHO_C!$ECHO_C$ac_delim ECHO_N!$ECHO_N$ac_delim ECHO_T!$ECHO_T$ac_delim LIBS!$LIBS$ac_delim build_alias!$build_alias$ac_delim host_alias!$host_alias$ac_delim target_alias!$target_alias$ac_delim INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim INSTALL_DATA!$INSTALL_DATA$ac_delim am__isrc!$am__isrc$ac_delim CYGPATH_W!$CYGPATH_W$ac_delim PACKAGE!$PACKAGE$ac_delim VERSION!$VERSION$ac_delim ACLOCAL!$ACLOCAL$ac_delim AUTOCONF!$AUTOCONF$ac_delim AUTOMAKE!$AUTOMAKE$ac_delim AUTOHEADER!$AUTOHEADER$ac_delim MAKEINFO!$MAKEINFO$ac_delim install_sh!$install_sh$ac_delim STRIP!$STRIP$ac_delim INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim mkdir_p!$mkdir_p$ac_delim AWK!$AWK$ac_delim SET_MAKE!$SET_MAKE$ac_delim am__leading_dot!$am__leading_dot$ac_delim AMTAR!$AMTAR$ac_delim am__tar!$am__tar$ac_delim am__untar!$am__untar$ac_delim CC!$CC$ac_delim CFLAGS!$CFLAGS$ac_delim LDFLAGS!$LDFLAGS$ac_delim CPPFLAGS!$CPPFLAGS$ac_delim ac_ct_CC!$ac_ct_CC$ac_delim EXEEXT!$EXEEXT$ac_delim OBJEXT!$OBJEXT$ac_delim DEPDIR!$DEPDIR$ac_delim am__include!$am__include$ac_delim am__quote!$am__quote$ac_delim AMDEP_TRUE!$AMDEP_TRUE$ac_delim AMDEP_FALSE!$AMDEP_FALSE$ac_delim AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim CCDEPMODE!$CCDEPMODE$ac_delim am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim CXX!$CXX$ac_delim CXXFLAGS!$CXXFLAGS$ac_delim ac_ct_CXX!$ac_ct_CXX$ac_delim CXXDEPMODE!$CXXDEPMODE$ac_delim am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim LN_S!$LN_S$ac_delim PKG_CONFIG!$PKG_CONFIG$ac_delim GTKMM_CFLAGS!$GTKMM_CFLAGS$ac_delim GTKMM_LIBS!$GTKMM_LIBS$ac_delim CPP!$CPP$ac_delim GREP!$GREP$ac_delim EGREP!$EGREP$ac_delim LIBOBJS!$LIBOBJS$ac_delim LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 90; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 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 ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF :end s/|#_!!_#|//g CEOF$ac_eof _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 fi # test -n "$CONFIG_FILES" for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 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 || { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 echo "$as_me: error: cannot find input file: $ac_f" >&2;} { (exit 1); exit 1; }; };; 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 "`IFS=: echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} fi case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin";; 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 || 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=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 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=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`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 # 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= case `sed -n '/datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p ' $ac_file_inputs` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF 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 sed "$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s&@configure_input@&$configure_input&;t t s&@top_builddir@&$ac_top_builddir_sub&;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 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out 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"; } && { 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 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 ;; :H) # # CONFIG_HEADER # _ACEOF # Transform confdefs.h into a sed script `conftest.defines', that # substitutes the proper values into config.h.in to produce config.h. rm -f conftest.defines conftest.tail # First, append a space to every undef/define line, to ease matching. echo 's/$/ /' >conftest.defines # Then, protect against being on the right side of a sed subst, or in # an unquoted here document, in config.status. If some macros were # called several times there might be several #defines for the same # symbol, which is useless. But do not sort them, since the last # AC_DEFINE must be honored. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where # NAME is the cpp macro being defined, VALUE is the value it is being given. # PARAMS is the parameter list in the macro definition--in most cases, it's # just an empty string. ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' ac_dB='\\)[ (].*,\\1define\\2' ac_dC=' ' ac_dD=' ,' uniq confdefs.h | sed -n ' t rset :rset s/^[ ]*#[ ]*define[ ][ ]*// t ok d :ok s/[\\&,]/\\&/g s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p ' >>conftest.defines # Remove the space that was appended to ease matching. # Then 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. # (The regexp can be short, since the line contains either #define or #undef.) echo 's/ $// s,^[ #]*u.*,/* & */,' >>conftest.defines # Break up conftest.defines: ac_max_sed_lines=50 # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" # et cetera. ac_in='$ac_file_inputs' ac_out='"$tmp/out1"' ac_nxt='"$tmp/out2"' while : do # Write a here document: cat >>$CONFIG_STATUS <<_ACEOF # First, check the format of the line: cat >"\$tmp/defines.sed" <<\\CEOF /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def b :def _ACEOF sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail grep . conftest.tail >/dev/null || break rm -f conftest.defines mv conftest.tail conftest.defines done rm -f conftest.defines conftest.tail echo "ac_result=$ac_in" >>$CONFIG_STATUS cat >>$CONFIG_STATUS <<\_ACEOF if test x"$ac_file" != x-; then echo "/* $configure_input */" >"$tmp/config.h" cat "$ac_result" >>"$tmp/config.h" if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else rm -f $ac_file mv "$tmp/config.h" $ac_file fi else echo "/* $configure_input */" cat "$ac_result" fi rm -f "$tmp/out12" # 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 || 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) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # 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 || 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 || 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=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; esac done # for ac_tag { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || { (exit 1); exit 1; } fi gtkguitune/INSTALL0000644000175000017500000001722711062733003012743 0ustar flohflohBasic Installation ================== These are generic installation instructions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, a file `config.cache' that saves the results of its tests to speed up reconfiguring, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.in' is used to create `configure' by a program called `autoconf'. You only need `configure.in' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. If you're using `csh' on an old version of System V, you might need to type `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. Running `configure' takes awhile. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. You can give `configure' initial values for variables by setting them in the environment. Using a Bourne-compatible shell, you can do that on the command line like this: CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure Or on systems that have the `env' program, you can do it like this: env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you must use a version of `make' that supports the `VPATH' variable, such as GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. If you have to use a `make' that does not supports the `VPATH' variable, you have to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' will install the package's files in `/usr/local/bin', `/usr/local/man', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PATH'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you give `configure' the option `--exec-prefix=PATH', the package will use PATH as the prefix for installing programs and libraries. Documentation and other data files will still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=PATH' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' can not figure out automatically, but needs to determine by the type of host the package will run on. Usually `configure' can figure that out, but if it prints a message saying it can not guess the host type, give it the `--host=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name with three fields: CPU-COMPANY-SYSTEM See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the host type. If you are building compiler tools for cross-compiling, you can also use the `--target=TYPE' option to select the type of system they will produce code for and the `--build=TYPE' option to select the type of system on which you are compiling the package. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Operation Controls ================== `configure' recognizes the following options to control how it operates. `--cache-file=FILE' Use and save the results of the tests in FILE instead of `./config.cache'. Set FILE to `/dev/null' to disable caching, for debugging `configure'. `--help' Print a summary of the options to `configure', and exit. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--version' Print the version of Autoconf used to generate the `configure' script, and exit. `configure' also accepts some other, not widely useful, options. gtkguitune/README0000644000175000017500000000244111062733003012562 0ustar flohfloh GtkGuitune --==#############==-- Copyright (C) 1999 Florian Berger email: florian.berger@jk.uni-linz.ac.at This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License Version 2 as published by the Free Software Foundation; 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., 675 Mass Ave, Cambridge, MA 02139, USA. What is gtkguitune ? -------------------- GtkGuitune is a program for tuning guitars (and other instruments). It is actually an oscilloscope which counts the passes between two trigger levels per time, calculates the frequency and shows the tone on a tone-scale. Resources --------- You need to have gtk and gtk-- (1.2.1 or later) installed How to build ------------ (1) make (2) make install ...ready. gtkguitune/.deps/0000755000175000017500000000000011064666204012724 5ustar flohflohgtkguitune/.deps/aboutbox.Po0000644000175000017500000010031211064666204015044 0ustar flohflohaboutbox.o aboutbox.o: aboutbox.c aboutbox.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/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/x86_64-linux-gnu/4.1.2/include/stddef.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/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-64.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/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/x86_64-linux-gnu/4.1.2/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-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkpixbuf.h /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/glib-2.0/gmodule.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkdnd.h \ /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h /usr/include/atk-1.0/atk/atk.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/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 FB_logo.xpm aboutbox.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/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/x86_64-linux-gnu/4.1.2/include/stddef.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/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-64.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gerror.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/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/x86_64-linux-gnu/4.1.2/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-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/glib-2.0/gmodule.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/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: FB_logo.xpm: gtkguitune/.deps/guitune.Po0000644000175000017500000015412411064666200014707 0ustar flohflohguitune.o guitune.o: guitune.cc /usr/include/sys/types.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/stddef.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/sys/stat.h \ /usr/include/bits/stat.h /usr/include/fcntl.h /usr/include/bits/fcntl.h \ /usr/include/bits/uio.h /usr/include/sys/ioctl.h \ /usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \ /usr/include/asm-x86_64/ioctls.h /usr/include/asm/ioctl.h \ /usr/include/asm-x86_64/ioctl.h /usr/include/asm-generic/ioctl.h \ /usr/include/bits/ioctl-types.h /usr/include/sys/ttydefaults.h \ /usr/include/linux/soundcard.h /usr/include/linux/ioctl.h \ /usr/include/linux/patchkey.h /usr/include/gtkmm-2.4/gtkmm/main.h \ /usr/include/glibmm-2.4/glibmm.h \ /usr/lib/glibmm-2.4/include/glibmmconfig.h \ /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring \ /usr/include/string.h /usr/include/xlocale.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h \ /usr/include/limits.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ /usr/include/bits/stdio_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib \ /usr/include/stdlib.h /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h /usr/include/alloca.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/stdarg.h \ /usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ /usr/include/bits/confname.h /usr/include/getopt.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype \ /usr/include/ctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime \ /usr/include/stdint.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype \ /usr/include/wctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc \ /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h \ /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gcache.h /usr/include/glib-2.0/glib/glist.h \ /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h \ /usr/include/glib-2.0/glib/gdate.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gslist.h \ /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.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/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/glibmm-2.4/glibmm/refptr.h \ /usr/include/glibmm-2.4/glibmm/ustring.h \ /usr/include/glibmm-2.4/glibmm/unicode.h \ /usr/include/glibmm-2.4/glibmm/wrap.h \ /usr/include/glibmm-2.4/glibmm/debug.h \ /usr/include/glibmm-2.4/glibmm/class.h \ /usr/include/glibmm-2.4/glibmm/convert.h \ /usr/include/glibmm-2.4/glibmm/error.h \ /usr/include/glibmm-2.4/glibmm/exception.h \ /usr/include/glibmm-2.4/glibmm/date.h \ /usr/include/glibmm-2.4/glibmm/dispatcher.h \ /usr/include/sigc++-2.0/sigc++/sigc++.h \ /usr/include/sigc++-2.0/sigc++/signal.h \ /usr/include/sigc++-2.0/sigc++/signal_base.h \ /usr/lib/sigc++-2.0/include/sigc++config.h \ /usr/include/sigc++-2.0/sigc++/type_traits.h \ /usr/include/sigc++-2.0/sigc++/trackable.h \ /usr/include/sigc++-2.0/sigc++/functors/slot.h \ /usr/include/sigc++-2.0/sigc++/visit_each.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ /usr/include/sigc++-2.0/sigc++/limit_reference.h \ /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ /usr/include/sigc++-2.0/sigc++/connection.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h \ /usr/include/sigc++-2.0/sigc++/functors/functors.h \ /usr/include/glibmm-2.4/glibmm/main.h \ /usr/include/glibmm-2.4/glibmm/timeval.h \ /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ /usr/include/glibmm-2.4/glibmm/fileutils.h \ /usr/include/glibmm-2.4/glibmm/helperlist.h \ /usr/include/glibmm-2.4/glibmm/containers.h \ /usr/include/glibmm-2.4/glibmm/sarray.h \ /usr/include/glibmm-2.4/glibmm/interface.h \ /usr/include/glibmm-2.4/glibmm/object.h \ /usr/include/glibmm-2.4/glibmm/objectbase.h \ /usr/include/glibmm-2.4/glibmm/signalproxy.h \ /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ /usr/include/glibmm-2.4/glibmm/value.h \ /usr/include/glibmm-2.4/glibmm/value_custom.h \ /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ /usr/include/glibmm-2.4/glibmm/quark.h \ /usr/include/glibmm-2.4/glibmm/utility.h \ /usr/include/glibmm-2.4/glibmm/iochannel.h \ /usr/include/glibmm-2.4/glibmm/init.h \ /usr/include/glibmm-2.4/glibmm/keyfile.h \ /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ /usr/include/glibmm-2.4/glibmm/listhandle.h \ /usr/include/glibmm-2.4/glibmm/markup.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h \ /usr/include/glibmm-2.4/glibmm/miscutils.h \ /usr/include/glibmm-2.4/glibmm/module.h \ /usr/include/glibmm-2.4/glibmm/optioncontext.h \ /usr/include/glibmm-2.4/glibmm/optionentry.h \ /usr/include/glibmm-2.4/glibmm/optiongroup.h \ /usr/include/glibmm-2.4/glibmm/pattern.h \ /usr/include/glibmm-2.4/glibmm/property.h \ /usr/include/glibmm-2.4/glibmm/random.h \ /usr/include/glibmm-2.4/glibmm/shell.h \ /usr/include/glibmm-2.4/glibmm/slisthandle.h \ /usr/include/glibmm-2.4/glibmm/spawn.h \ /usr/include/glibmm-2.4/glibmm/stringutils.h \ /usr/include/glibmm-2.4/glibmm/thread.h \ /usr/include/glibmm-2.4/glibmm/threadpool.h \ /usr/include/glibmm-2.4/glibmm/timer.h \ /usr/include/gtk-2.0/gtk/gtkmain.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/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-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-gravity.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/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/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.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/gdkmm-2.4/gdkmm/types.h \ /usr/lib/gdkmm-2.4/include/gdkmmconfig.h \ /usr/include/gtkmm-2.4/gtkmm/table.h \ /usr/include/gtkmm-2.4/gtkmm/container.h \ /usr/include/gtkmm-2.4/gtkmm/widget.h \ /usr/include/pangomm-1.4/pangomm/context.h \ /usr/include/pangomm-1.4/pangomm/fontdescription.h \ /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ /usr/include/pangomm-1.4/pangomm/fontset.h \ /usr/include/pangomm-1.4/pangomm/language.h \ /usr/include/pangomm-1.4/pangomm/font.h \ /usr/include/pangomm-1.4/pangomm/rectangle.h \ /usr/include/pangomm-1.4/pangomm/glyph.h \ /usr/include/pangomm-1.4/pangomm/coverage.h \ /usr/include/pangomm-1.4/pangomm/fontmap.h \ /usr/include/pangomm-1.4/pangomm/fontfamily.h \ /usr/include/pangomm-1.4/pangomm/fontface.h \ /usr/include/pangomm-1.4/pangomm/item.h \ /usr/include/pangomm-1.4/pangomm/attributes.h \ /usr/include/pangomm-1.4/pangomm/color.h \ /usr/include/pangomm-1.4/pangomm/attrlist.h \ /usr/include/pangomm-1.4/pangomm/attriter.h \ /usr/include/pangomm-1.4/pangomm/types.h \ /usr/include/cairomm-1.0/cairomm/context.h \ /usr/include/cairomm-1.0/cairomm/surface.h \ /usr/include/cairomm-1.0/cairomm/enums.h \ /usr/include/cairomm-1.0/cairomm/exception.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept \ /usr/include/cairomm-1.0/cairomm/fontoptions.h \ /usr/include/cairomm-1.0/cairomm/refptr.h \ /usr/include/cairo/cairo-pdf.h /usr/include/cairo/cairo-ps.h \ /usr/include/cairo/cairo-svg.h \ /usr/include/cairomm-1.0/cairomm/fontface.h \ /usr/include/cairomm-1.0/cairomm/pattern.h \ /usr/include/cairomm-1.0/cairomm/path.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ /usr/include/bits/inf.h /usr/include/bits/nan.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/bits/mathinline.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h \ /usr/include/pangomm-1.4/pangomm/layout.h \ /usr/include/pangomm-1.4/pangomm/tabarray.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h \ /usr/include/pangomm-1.4/pangomm/layoutline.h \ /usr/include/pangomm-1.4/pangomm/layoutiter.h \ /usr/include/pangomm-1.4/pangomm/layoutrun.h \ /usr/lib/gtkmm-2.4/include/gtkmmconfig.h \ /usr/include/atkmm-1.6/atkmm/object.h \ /usr/include/atkmm-1.6/atkmm/component.h \ /usr/include/atkmm-1.6/atkmm/relation.h \ /usr/include/atkmm-1.6/atkmm/implementor.h \ /usr/include/gdkmm-2.4/gdkmm/event.h \ /usr/include/gdkmm-2.4/gdkmm/window.h \ /usr/include/gdkmm-2.4/gdkmm/drawable.h \ /usr/include/pangomm-1.4/pangomm/glyphstring.h \ /usr/include/gdkmm-2.4/gdkmm/gc.h \ /usr/include/gdkmm-2.4/gdkmm/rectangle.h \ /usr/include/gdkmm-2.4/gdkmm/region.h \ /usr/include/gdkmm-2.4/gdkmm/screen.h \ /usr/include/gdkmm-2.4/gdkmm/image.h \ /usr/include/gdkmm-2.4/gdkmm/visual.h \ /usr/include/gdkmm-2.4/gdkmm/colormap.h \ /usr/include/gdkmm-2.4/gdkmm/color.h \ /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h \ /usr/include/gdkmm-2.4/gdkmm/bitmap.h \ /usr/include/gdkmm-2.4/gdkmm/pixmap.h \ /usr/include/gdkmm-2.4/gdkmm/dragcontext.h \ /usr/include/gdkmm-2.4/gdkmm/pixbuf.h \ /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h \ /usr/include/gtkmm-2.4/gtkmm/stockid.h \ /usr/include/gtkmm-2.4/gtkmm/enums.h \ /usr/include/gdkmm-2.4/gdkmm/display.h \ /usr/include/gdkmm-2.4/gdkmm/device.h \ /usr/include/gtkmm-2.4/gtkmm/targetlist.h \ /usr/include/gtkmm-2.4/gtkmm/targetentry.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/gtkmm-2.4/gtkmm/rc.h /usr/include/gtkmm-2.4/gtkmm/style.h \ /usr/include/gtkmm-2.4/gtkmm/object.h \ /usr/include/gtkmm-2.4/gtkmm/base.h \ /usr/include/gtkmm-2.4/gtkmm/iconsource.h \ /usr/include/gtkmm-2.4/gtkmm/iconset.h \ /usr/include/gtkmm-2.4/gtkmm/clipboard.h \ /usr/include/gtkmm-2.4/gtkmm/selectiondata.h \ /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtkmm-2.4/gtkmm/spinbutton.h \ /usr/include/gtkmm-2.4/gtkmm/entry.h \ /usr/include/gtkmm-2.4/gtkmm/editable.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtkmm-2.4/gtkmm/menu.h \ /usr/include/gtkmm-2.4/gtkmm/menushell.h \ /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ /usr/include/gtkmm-2.4/gtkmm/menu_elems.h \ /usr/include/gtkmm-2.4/gtkmm/menuitem.h \ /usr/include/gtkmm-2.4/gtkmm/item.h /usr/include/gtkmm-2.4/gtkmm/bin.h \ /usr/include/gtkmm-2.4/gtkmm/accelkey.h \ /usr/include/gtkmm-2.4/gtkmm/accellabel.h \ /usr/include/gtkmm-2.4/gtkmm/label.h \ /usr/include/gtkmm-2.4/gtkmm/misc.h \ /usr/include/gtkmm-2.4/gtkmm/imagemenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/radiomenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/checkmenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/radiobutton.h \ /usr/include/gtkmm-2.4/gtkmm/checkbutton.h \ /usr/include/gtkmm-2.4/gtkmm/togglebutton.h \ /usr/include/gtkmm-2.4/gtkmm/button.h \ /usr/include/gtkmm-2.4/gtkmm/radiobuttongroup.h \ /usr/include/gtkmm-2.4/gtkmm/tearoffmenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/separatormenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/accelgroup.h \ /usr/include/gtkmm-2.4/gtkmm/celleditable.h \ /usr/include/gtkmm-2.4/gtkmm/entrycompletion.h \ /usr/include/gtkmm-2.4/gtkmm/treemodel.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtkmm-2.4/gtkmm/treeiter.h \ /usr/include/gtkmm-2.4/gtkmm/treemodelcolumn.h \ /usr/include/gtkmm-2.4/gtkmm/frame.h /usr/include/errno.h \ /usr/include/bits/errno.h /usr/include/linux/errno.h \ /usr/include/asm/errno.h /usr/include/asm-x86_64/errno.h \ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ guitune.h /usr/include/gtkmm-2.4/gtkmm/adjustment.h osziview.h \ /usr/include/gtkmm-2.4/gtkmm/drawingarea.h logview.h lcdview.h \ resources.h /usr/include/sys/types.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-64.h: /usr/include/bits/types.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/stddef.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/sys/stat.h: /usr/include/bits/stat.h: /usr/include/fcntl.h: /usr/include/bits/fcntl.h: /usr/include/bits/uio.h: /usr/include/sys/ioctl.h: /usr/include/bits/ioctls.h: /usr/include/asm/ioctls.h: /usr/include/asm-x86_64/ioctls.h: /usr/include/asm/ioctl.h: /usr/include/asm-x86_64/ioctl.h: /usr/include/asm-generic/ioctl.h: /usr/include/bits/ioctl-types.h: /usr/include/sys/ttydefaults.h: /usr/include/linux/soundcard.h: /usr/include/linux/ioctl.h: /usr/include/linux/patchkey.h: /usr/include/gtkmm-2.4/gtkmm/main.h: /usr/include/glibmm-2.4/glibmm.h: /usr/lib/glibmm-2.4/include/glibmmconfig.h: /usr/include/glibmm-2.4/glibmm/arrayhandle.h: /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring: /usr/include/string.h: /usr/include/xlocale.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h: /usr/include/limits.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/include/bits/xopen_lim.h: /usr/include/bits/stdio_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib: /usr/include/stdlib.h: /usr/include/bits/waitflags.h: /usr/include/bits/waitstatus.h: /usr/include/alloca.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/stdarg.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/environments.h: /usr/include/bits/confname.h: /usr/include/getopt.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype: /usr/include/ctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime: /usr/include/stdint.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype: /usr/include/wctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gerror.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.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/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/glibmm-2.4/glibmm/refptr.h: /usr/include/glibmm-2.4/glibmm/ustring.h: /usr/include/glibmm-2.4/glibmm/unicode.h: /usr/include/glibmm-2.4/glibmm/wrap.h: /usr/include/glibmm-2.4/glibmm/debug.h: /usr/include/glibmm-2.4/glibmm/class.h: /usr/include/glibmm-2.4/glibmm/convert.h: /usr/include/glibmm-2.4/glibmm/error.h: /usr/include/glibmm-2.4/glibmm/exception.h: /usr/include/glibmm-2.4/glibmm/date.h: /usr/include/glibmm-2.4/glibmm/dispatcher.h: /usr/include/sigc++-2.0/sigc++/sigc++.h: /usr/include/sigc++-2.0/sigc++/signal.h: /usr/include/sigc++-2.0/sigc++/signal_base.h: /usr/lib/sigc++-2.0/include/sigc++config.h: /usr/include/sigc++-2.0/sigc++/type_traits.h: /usr/include/sigc++-2.0/sigc++/trackable.h: /usr/include/sigc++-2.0/sigc++/functors/slot.h: /usr/include/sigc++-2.0/sigc++/visit_each.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h: /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h: /usr/include/sigc++-2.0/sigc++/limit_reference.h: /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h: /usr/include/sigc++-2.0/sigc++/functors/slot_base.h: /usr/include/sigc++-2.0/sigc++/connection.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind.h: /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h: /usr/include/sigc++-2.0/sigc++/reference_wrapper.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/hide.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype.h: /usr/include/sigc++-2.0/sigc++/adaptors/compose.h: /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h: /usr/include/sigc++-2.0/sigc++/functors/functors.h: /usr/include/glibmm-2.4/glibmm/main.h: /usr/include/glibmm-2.4/glibmm/timeval.h: /usr/include/glibmm-2.4/glibmm/exceptionhandler.h: /usr/include/glibmm-2.4/glibmm/fileutils.h: /usr/include/glibmm-2.4/glibmm/helperlist.h: /usr/include/glibmm-2.4/glibmm/containers.h: /usr/include/glibmm-2.4/glibmm/sarray.h: /usr/include/glibmm-2.4/glibmm/interface.h: /usr/include/glibmm-2.4/glibmm/object.h: /usr/include/glibmm-2.4/glibmm/objectbase.h: /usr/include/glibmm-2.4/glibmm/signalproxy.h: /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h: /usr/include/glibmm-2.4/glibmm/propertyproxy.h: /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h: /usr/include/glibmm-2.4/glibmm/value.h: /usr/include/glibmm-2.4/glibmm/value_custom.h: /usr/include/glibmm-2.4/glibmm/value_basictypes.h: /usr/include/glibmm-2.4/glibmm/quark.h: /usr/include/glibmm-2.4/glibmm/utility.h: /usr/include/glibmm-2.4/glibmm/iochannel.h: /usr/include/glibmm-2.4/glibmm/init.h: /usr/include/glibmm-2.4/glibmm/keyfile.h: /usr/include/glibmm-2.4/glibmm/streamiochannel.h: /usr/include/glibmm-2.4/glibmm/listhandle.h: /usr/include/glibmm-2.4/glibmm/markup.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h: /usr/include/glibmm-2.4/glibmm/miscutils.h: /usr/include/glibmm-2.4/glibmm/module.h: /usr/include/glibmm-2.4/glibmm/optioncontext.h: /usr/include/glibmm-2.4/glibmm/optionentry.h: /usr/include/glibmm-2.4/glibmm/optiongroup.h: /usr/include/glibmm-2.4/glibmm/pattern.h: /usr/include/glibmm-2.4/glibmm/property.h: /usr/include/glibmm-2.4/glibmm/random.h: /usr/include/glibmm-2.4/glibmm/shell.h: /usr/include/glibmm-2.4/glibmm/slisthandle.h: /usr/include/glibmm-2.4/glibmm/spawn.h: /usr/include/glibmm-2.4/glibmm/stringutils.h: /usr/include/glibmm-2.4/glibmm/thread.h: /usr/include/glibmm-2.4/glibmm/threadpool.h: /usr/include/glibmm-2.4/glibmm/timer.h: /usr/include/gtk-2.0/gtk/gtkmain.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/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-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-gravity.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/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/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.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/gdkmm-2.4/gdkmm/types.h: /usr/lib/gdkmm-2.4/include/gdkmmconfig.h: /usr/include/gtkmm-2.4/gtkmm/table.h: /usr/include/gtkmm-2.4/gtkmm/container.h: /usr/include/gtkmm-2.4/gtkmm/widget.h: /usr/include/pangomm-1.4/pangomm/context.h: /usr/include/pangomm-1.4/pangomm/fontdescription.h: /usr/include/pangomm-1.4/pangomm/fontmetrics.h: /usr/include/pangomm-1.4/pangomm/fontset.h: /usr/include/pangomm-1.4/pangomm/language.h: /usr/include/pangomm-1.4/pangomm/font.h: /usr/include/pangomm-1.4/pangomm/rectangle.h: /usr/include/pangomm-1.4/pangomm/glyph.h: /usr/include/pangomm-1.4/pangomm/coverage.h: /usr/include/pangomm-1.4/pangomm/fontmap.h: /usr/include/pangomm-1.4/pangomm/fontfamily.h: /usr/include/pangomm-1.4/pangomm/fontface.h: /usr/include/pangomm-1.4/pangomm/item.h: /usr/include/pangomm-1.4/pangomm/attributes.h: /usr/include/pangomm-1.4/pangomm/color.h: /usr/include/pangomm-1.4/pangomm/attrlist.h: /usr/include/pangomm-1.4/pangomm/attriter.h: /usr/include/pangomm-1.4/pangomm/types.h: /usr/include/cairomm-1.0/cairomm/context.h: /usr/include/cairomm-1.0/cairomm/surface.h: /usr/include/cairomm-1.0/cairomm/enums.h: /usr/include/cairomm-1.0/cairomm/exception.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept: /usr/include/cairomm-1.0/cairomm/fontoptions.h: /usr/include/cairomm-1.0/cairomm/refptr.h: /usr/include/cairo/cairo-pdf.h: /usr/include/cairo/cairo-ps.h: /usr/include/cairo/cairo-svg.h: /usr/include/cairomm-1.0/cairomm/fontface.h: /usr/include/cairomm-1.0/cairomm/pattern.h: /usr/include/cairomm-1.0/cairomm/path.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/huge_valf.h: /usr/include/bits/huge_vall.h: /usr/include/bits/inf.h: /usr/include/bits/nan.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/bits/mathinline.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h: /usr/include/pangomm-1.4/pangomm/layout.h: /usr/include/pangomm-1.4/pangomm/tabarray.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h: /usr/include/pangomm-1.4/pangomm/layoutline.h: /usr/include/pangomm-1.4/pangomm/layoutiter.h: /usr/include/pangomm-1.4/pangomm/layoutrun.h: /usr/lib/gtkmm-2.4/include/gtkmmconfig.h: /usr/include/atkmm-1.6/atkmm/object.h: /usr/include/atkmm-1.6/atkmm/component.h: /usr/include/atkmm-1.6/atkmm/relation.h: /usr/include/atkmm-1.6/atkmm/implementor.h: /usr/include/gdkmm-2.4/gdkmm/event.h: /usr/include/gdkmm-2.4/gdkmm/window.h: /usr/include/gdkmm-2.4/gdkmm/drawable.h: /usr/include/pangomm-1.4/pangomm/glyphstring.h: /usr/include/gdkmm-2.4/gdkmm/gc.h: /usr/include/gdkmm-2.4/gdkmm/rectangle.h: /usr/include/gdkmm-2.4/gdkmm/region.h: /usr/include/gdkmm-2.4/gdkmm/screen.h: /usr/include/gdkmm-2.4/gdkmm/image.h: /usr/include/gdkmm-2.4/gdkmm/visual.h: /usr/include/gdkmm-2.4/gdkmm/colormap.h: /usr/include/gdkmm-2.4/gdkmm/color.h: /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h: /usr/include/gdkmm-2.4/gdkmm/bitmap.h: /usr/include/gdkmm-2.4/gdkmm/pixmap.h: /usr/include/gdkmm-2.4/gdkmm/dragcontext.h: /usr/include/gdkmm-2.4/gdkmm/pixbuf.h: /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h: /usr/include/gtkmm-2.4/gtkmm/stockid.h: /usr/include/gtkmm-2.4/gtkmm/enums.h: /usr/include/gdkmm-2.4/gdkmm/display.h: /usr/include/gdkmm-2.4/gdkmm/device.h: /usr/include/gtkmm-2.4/gtkmm/targetlist.h: /usr/include/gtkmm-2.4/gtkmm/targetentry.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/gtkmm-2.4/gtkmm/rc.h: /usr/include/gtkmm-2.4/gtkmm/style.h: /usr/include/gtkmm-2.4/gtkmm/object.h: /usr/include/gtkmm-2.4/gtkmm/base.h: /usr/include/gtkmm-2.4/gtkmm/iconsource.h: /usr/include/gtkmm-2.4/gtkmm/iconset.h: /usr/include/gtkmm-2.4/gtkmm/clipboard.h: /usr/include/gtkmm-2.4/gtkmm/selectiondata.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtkmm-2.4/gtkmm/spinbutton.h: /usr/include/gtkmm-2.4/gtkmm/entry.h: /usr/include/gtkmm-2.4/gtkmm/editable.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtkmm-2.4/gtkmm/menu.h: /usr/include/gtkmm-2.4/gtkmm/menushell.h: /usr/include/gtk-2.0/gdk/gdkkeysyms.h: /usr/include/gtkmm-2.4/gtkmm/menu_elems.h: /usr/include/gtkmm-2.4/gtkmm/menuitem.h: /usr/include/gtkmm-2.4/gtkmm/item.h: /usr/include/gtkmm-2.4/gtkmm/bin.h: /usr/include/gtkmm-2.4/gtkmm/accelkey.h: /usr/include/gtkmm-2.4/gtkmm/accellabel.h: /usr/include/gtkmm-2.4/gtkmm/label.h: /usr/include/gtkmm-2.4/gtkmm/misc.h: /usr/include/gtkmm-2.4/gtkmm/imagemenuitem.h: /usr/include/gtkmm-2.4/gtkmm/radiomenuitem.h: /usr/include/gtkmm-2.4/gtkmm/checkmenuitem.h: /usr/include/gtkmm-2.4/gtkmm/radiobutton.h: /usr/include/gtkmm-2.4/gtkmm/checkbutton.h: /usr/include/gtkmm-2.4/gtkmm/togglebutton.h: /usr/include/gtkmm-2.4/gtkmm/button.h: /usr/include/gtkmm-2.4/gtkmm/radiobuttongroup.h: /usr/include/gtkmm-2.4/gtkmm/tearoffmenuitem.h: /usr/include/gtkmm-2.4/gtkmm/separatormenuitem.h: /usr/include/gtkmm-2.4/gtkmm/accelgroup.h: /usr/include/gtkmm-2.4/gtkmm/celleditable.h: /usr/include/gtkmm-2.4/gtkmm/entrycompletion.h: /usr/include/gtkmm-2.4/gtkmm/treemodel.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtkmm-2.4/gtkmm/treeiter.h: /usr/include/gtkmm-2.4/gtkmm/treemodelcolumn.h: /usr/include/gtkmm-2.4/gtkmm/frame.h: /usr/include/errno.h: /usr/include/bits/errno.h: /usr/include/linux/errno.h: /usr/include/asm/errno.h: /usr/include/asm-x86_64/errno.h: /usr/include/asm-generic/errno.h: /usr/include/asm-generic/errno-base.h: guitune.h: /usr/include/gtkmm-2.4/gtkmm/adjustment.h: osziview.h: /usr/include/gtkmm-2.4/gtkmm/drawingarea.h: logview.h: lcdview.h: resources.h: gtkguitune/.deps/logview.Po0000644000175000017500000014230211064666203014701 0ustar flohflohlogview.o logview.o: logview.cc /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-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/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/x86_64-linux-gnu/4.1.2/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/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ /usr/include/bits/inf.h /usr/include/bits/nan.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/bits/mathinline.h logview.h \ /usr/include/gtkmm-2.4/gtkmm/drawingarea.h \ /usr/include/glibmm-2.4/glibmm.h \ /usr/lib/glibmm-2.4/include/glibmmconfig.h \ /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h \ /usr/include/limits.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib \ /usr/include/stdlib.h /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h /usr/include/endian.h \ /usr/include/bits/endian.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ /usr/include/bits/confname.h /usr/include/getopt.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype \ /usr/include/ctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime \ /usr/include/stdint.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype \ /usr/include/wctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc \ /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h \ /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gcache.h /usr/include/glib-2.0/glib/glist.h \ /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h \ /usr/include/glib-2.0/glib/gdate.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gslist.h \ /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.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/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/glibmm-2.4/glibmm/refptr.h \ /usr/include/glibmm-2.4/glibmm/ustring.h \ /usr/include/glibmm-2.4/glibmm/unicode.h \ /usr/include/glibmm-2.4/glibmm/wrap.h \ /usr/include/glibmm-2.4/glibmm/debug.h \ /usr/include/glibmm-2.4/glibmm/class.h \ /usr/include/glibmm-2.4/glibmm/convert.h \ /usr/include/glibmm-2.4/glibmm/error.h \ /usr/include/glibmm-2.4/glibmm/exception.h \ /usr/include/glibmm-2.4/glibmm/date.h \ /usr/include/glibmm-2.4/glibmm/dispatcher.h \ /usr/include/sigc++-2.0/sigc++/sigc++.h \ /usr/include/sigc++-2.0/sigc++/signal.h \ /usr/include/sigc++-2.0/sigc++/signal_base.h \ /usr/lib/sigc++-2.0/include/sigc++config.h \ /usr/include/sigc++-2.0/sigc++/type_traits.h \ /usr/include/sigc++-2.0/sigc++/trackable.h \ /usr/include/sigc++-2.0/sigc++/functors/slot.h \ /usr/include/sigc++-2.0/sigc++/visit_each.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ /usr/include/sigc++-2.0/sigc++/limit_reference.h \ /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ /usr/include/sigc++-2.0/sigc++/connection.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h \ /usr/include/sigc++-2.0/sigc++/functors/functors.h \ /usr/include/glibmm-2.4/glibmm/main.h \ /usr/include/glibmm-2.4/glibmm/timeval.h \ /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ /usr/include/glibmm-2.4/glibmm/fileutils.h \ /usr/include/glibmm-2.4/glibmm/helperlist.h \ /usr/include/glibmm-2.4/glibmm/containers.h \ /usr/include/glibmm-2.4/glibmm/sarray.h \ /usr/include/glibmm-2.4/glibmm/interface.h \ /usr/include/glibmm-2.4/glibmm/object.h \ /usr/include/glibmm-2.4/glibmm/objectbase.h \ /usr/include/glibmm-2.4/glibmm/signalproxy.h \ /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ /usr/include/glibmm-2.4/glibmm/value.h \ /usr/include/glibmm-2.4/glibmm/value_custom.h \ /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ /usr/include/glibmm-2.4/glibmm/quark.h \ /usr/include/glibmm-2.4/glibmm/utility.h \ /usr/include/glibmm-2.4/glibmm/iochannel.h \ /usr/include/glibmm-2.4/glibmm/init.h \ /usr/include/glibmm-2.4/glibmm/keyfile.h \ /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ /usr/include/glibmm-2.4/glibmm/listhandle.h \ /usr/include/glibmm-2.4/glibmm/markup.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h \ /usr/include/glibmm-2.4/glibmm/miscutils.h \ /usr/include/glibmm-2.4/glibmm/module.h \ /usr/include/glibmm-2.4/glibmm/optioncontext.h \ /usr/include/glibmm-2.4/glibmm/optionentry.h \ /usr/include/glibmm-2.4/glibmm/optiongroup.h \ /usr/include/glibmm-2.4/glibmm/pattern.h \ /usr/include/glibmm-2.4/glibmm/property.h \ /usr/include/glibmm-2.4/glibmm/random.h \ /usr/include/glibmm-2.4/glibmm/shell.h \ /usr/include/glibmm-2.4/glibmm/slisthandle.h \ /usr/include/glibmm-2.4/glibmm/spawn.h \ /usr/include/glibmm-2.4/glibmm/stringutils.h \ /usr/include/glibmm-2.4/glibmm/thread.h \ /usr/include/glibmm-2.4/glibmm/threadpool.h \ /usr/include/glibmm-2.4/glibmm/timer.h \ /usr/include/gtkmm-2.4/gtkmm/widget.h \ /usr/include/pangomm-1.4/pangomm/context.h \ /usr/include/pangomm-1.4/pangomm/fontdescription.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-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ /usr/include/pangomm-1.4/pangomm/fontset.h \ /usr/include/pangomm-1.4/pangomm/language.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pangomm-1.4/pangomm/font.h \ /usr/include/pangomm-1.4/pangomm/rectangle.h \ /usr/include/pangomm-1.4/pangomm/glyph.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pangomm-1.4/pangomm/coverage.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pangomm-1.4/pangomm/fontmap.h \ /usr/include/pangomm-1.4/pangomm/fontfamily.h \ /usr/include/pangomm-1.4/pangomm/fontface.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pangomm-1.4/pangomm/item.h \ /usr/include/pangomm-1.4/pangomm/attributes.h \ /usr/include/pangomm-1.4/pangomm/color.h \ /usr/include/pangomm-1.4/pangomm/attrlist.h \ /usr/include/pangomm-1.4/pangomm/attriter.h \ /usr/include/pangomm-1.4/pangomm/types.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/cairomm-1.0/cairomm/context.h \ /usr/include/cairomm-1.0/cairomm/surface.h \ /usr/include/cairomm-1.0/cairomm/enums.h /usr/include/cairo/cairo.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/cairomm-1.0/cairomm/exception.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept \ /usr/include/cairomm-1.0/cairomm/fontoptions.h \ /usr/include/cairomm-1.0/cairomm/refptr.h \ /usr/include/cairo/cairo-pdf.h /usr/include/cairo/cairo-ps.h \ /usr/include/cairo/cairo-svg.h \ /usr/include/cairomm-1.0/cairomm/fontface.h \ /usr/include/cairomm-1.0/cairomm/pattern.h \ /usr/include/cairomm-1.0/cairomm/path.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h \ /usr/include/pangomm-1.4/pangomm/layout.h \ /usr/include/pangomm-1.4/pangomm/tabarray.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h \ /usr/include/pangomm-1.4/pangomm/layoutline.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pangomm-1.4/pangomm/layoutiter.h \ /usr/include/pangomm-1.4/pangomm/layoutrun.h \ /usr/lib/gtkmm-2.4/include/gtkmmconfig.h \ /usr/lib/gdkmm-2.4/include/gdkmmconfig.h \ /usr/include/atkmm-1.6/atkmm/object.h \ /usr/include/atkmm-1.6/atkmm/component.h \ /usr/include/atkmm-1.6/atkmm/relation.h \ /usr/include/atkmm-1.6/atkmm/implementor.h \ /usr/include/gdkmm-2.4/gdkmm/event.h \ /usr/include/gdkmm-2.4/gdkmm/window.h \ /usr/include/gdkmm-2.4/gdkmm/drawable.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h \ /usr/include/gtk-2.0/gdk/gdktypes.h \ /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-engine.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-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h \ /usr/lib/gtk-2.0/include/gdkconfig.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkcolor.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/pangomm-1.4/pangomm/glyphstring.h \ /usr/include/gdkmm-2.4/gdkmm/gc.h /usr/include/gdkmm-2.4/gdkmm/types.h \ /usr/include/gtk-2.0/gdk/gdk.h /usr/include/gtk-2.0/gdk/gdkcairo.h \ /usr/include/gtk-2.0/gdk/gdkpixbuf.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/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/gdkmm-2.4/gdkmm/rectangle.h \ /usr/include/gdkmm-2.4/gdkmm/region.h \ /usr/include/gdkmm-2.4/gdkmm/screen.h \ /usr/include/gdkmm-2.4/gdkmm/image.h \ /usr/include/gdkmm-2.4/gdkmm/visual.h \ /usr/include/gdkmm-2.4/gdkmm/colormap.h \ /usr/include/gdkmm-2.4/gdkmm/color.h \ /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h \ /usr/include/gdkmm-2.4/gdkmm/bitmap.h \ /usr/include/gdkmm-2.4/gdkmm/pixmap.h \ /usr/include/gdkmm-2.4/gdkmm/dragcontext.h \ /usr/include/gdkmm-2.4/gdkmm/pixbuf.h \ /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h \ /usr/include/gtkmm-2.4/gtkmm/stockid.h \ /usr/include/gtkmm-2.4/gtkmm/enums.h \ /usr/include/gdkmm-2.4/gdkmm/display.h \ /usr/include/gdkmm-2.4/gdkmm/device.h \ /usr/include/gtkmm-2.4/gtkmm/targetlist.h \ /usr/include/gtkmm-2.4/gtkmm/targetentry.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtkenums.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtkmm-2.4/gtkmm/rc.h /usr/include/gtkmm-2.4/gtkmm/style.h \ /usr/include/gtkmm-2.4/gtkmm/object.h \ /usr/include/gtkmm-2.4/gtkmm/base.h \ /usr/include/gtkmm-2.4/gtkmm/iconsource.h \ /usr/include/gtkmm-2.4/gtkmm/iconset.h \ /usr/include/gtkmm-2.4/gtkmm/clipboard.h \ /usr/include/gtkmm-2.4/gtkmm/selectiondata.h resources.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-64.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/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/x86_64-linux-gnu/4.1.2/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/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/huge_valf.h: /usr/include/bits/huge_vall.h: /usr/include/bits/inf.h: /usr/include/bits/nan.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/bits/mathinline.h: logview.h: /usr/include/gtkmm-2.4/gtkmm/drawingarea.h: /usr/include/glibmm-2.4/glibmm.h: /usr/lib/glibmm-2.4/include/glibmmconfig.h: /usr/include/glibmm-2.4/glibmm/arrayhandle.h: /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h: /usr/include/limits.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/include/bits/xopen_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib: /usr/include/stdlib.h: /usr/include/bits/waitflags.h: /usr/include/bits/waitstatus.h: /usr/include/endian.h: /usr/include/bits/endian.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/environments.h: /usr/include/bits/confname.h: /usr/include/getopt.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype: /usr/include/ctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime: /usr/include/stdint.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype: /usr/include/wctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gerror.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.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/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/glibmm-2.4/glibmm/refptr.h: /usr/include/glibmm-2.4/glibmm/ustring.h: /usr/include/glibmm-2.4/glibmm/unicode.h: /usr/include/glibmm-2.4/glibmm/wrap.h: /usr/include/glibmm-2.4/glibmm/debug.h: /usr/include/glibmm-2.4/glibmm/class.h: /usr/include/glibmm-2.4/glibmm/convert.h: /usr/include/glibmm-2.4/glibmm/error.h: /usr/include/glibmm-2.4/glibmm/exception.h: /usr/include/glibmm-2.4/glibmm/date.h: /usr/include/glibmm-2.4/glibmm/dispatcher.h: /usr/include/sigc++-2.0/sigc++/sigc++.h: /usr/include/sigc++-2.0/sigc++/signal.h: /usr/include/sigc++-2.0/sigc++/signal_base.h: /usr/lib/sigc++-2.0/include/sigc++config.h: /usr/include/sigc++-2.0/sigc++/type_traits.h: /usr/include/sigc++-2.0/sigc++/trackable.h: /usr/include/sigc++-2.0/sigc++/functors/slot.h: /usr/include/sigc++-2.0/sigc++/visit_each.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h: /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h: /usr/include/sigc++-2.0/sigc++/limit_reference.h: /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h: /usr/include/sigc++-2.0/sigc++/functors/slot_base.h: /usr/include/sigc++-2.0/sigc++/connection.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind.h: /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h: /usr/include/sigc++-2.0/sigc++/reference_wrapper.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/hide.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype.h: /usr/include/sigc++-2.0/sigc++/adaptors/compose.h: /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h: /usr/include/sigc++-2.0/sigc++/functors/functors.h: /usr/include/glibmm-2.4/glibmm/main.h: /usr/include/glibmm-2.4/glibmm/timeval.h: /usr/include/glibmm-2.4/glibmm/exceptionhandler.h: /usr/include/glibmm-2.4/glibmm/fileutils.h: /usr/include/glibmm-2.4/glibmm/helperlist.h: /usr/include/glibmm-2.4/glibmm/containers.h: /usr/include/glibmm-2.4/glibmm/sarray.h: /usr/include/glibmm-2.4/glibmm/interface.h: /usr/include/glibmm-2.4/glibmm/object.h: /usr/include/glibmm-2.4/glibmm/objectbase.h: /usr/include/glibmm-2.4/glibmm/signalproxy.h: /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h: /usr/include/glibmm-2.4/glibmm/propertyproxy.h: /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h: /usr/include/glibmm-2.4/glibmm/value.h: /usr/include/glibmm-2.4/glibmm/value_custom.h: /usr/include/glibmm-2.4/glibmm/value_basictypes.h: /usr/include/glibmm-2.4/glibmm/quark.h: /usr/include/glibmm-2.4/glibmm/utility.h: /usr/include/glibmm-2.4/glibmm/iochannel.h: /usr/include/glibmm-2.4/glibmm/init.h: /usr/include/glibmm-2.4/glibmm/keyfile.h: /usr/include/glibmm-2.4/glibmm/streamiochannel.h: /usr/include/glibmm-2.4/glibmm/listhandle.h: /usr/include/glibmm-2.4/glibmm/markup.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h: /usr/include/glibmm-2.4/glibmm/miscutils.h: /usr/include/glibmm-2.4/glibmm/module.h: /usr/include/glibmm-2.4/glibmm/optioncontext.h: /usr/include/glibmm-2.4/glibmm/optionentry.h: /usr/include/glibmm-2.4/glibmm/optiongroup.h: /usr/include/glibmm-2.4/glibmm/pattern.h: /usr/include/glibmm-2.4/glibmm/property.h: /usr/include/glibmm-2.4/glibmm/random.h: /usr/include/glibmm-2.4/glibmm/shell.h: /usr/include/glibmm-2.4/glibmm/slisthandle.h: /usr/include/glibmm-2.4/glibmm/spawn.h: /usr/include/glibmm-2.4/glibmm/stringutils.h: /usr/include/glibmm-2.4/glibmm/thread.h: /usr/include/glibmm-2.4/glibmm/threadpool.h: /usr/include/glibmm-2.4/glibmm/timer.h: /usr/include/gtkmm-2.4/gtkmm/widget.h: /usr/include/pangomm-1.4/pangomm/context.h: /usr/include/pangomm-1.4/pangomm/fontdescription.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-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pangomm-1.4/pangomm/fontmetrics.h: /usr/include/pangomm-1.4/pangomm/fontset.h: /usr/include/pangomm-1.4/pangomm/language.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pangomm-1.4/pangomm/font.h: /usr/include/pangomm-1.4/pangomm/rectangle.h: /usr/include/pangomm-1.4/pangomm/glyph.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pangomm-1.4/pangomm/coverage.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pangomm-1.4/pangomm/fontmap.h: /usr/include/pangomm-1.4/pangomm/fontfamily.h: /usr/include/pangomm-1.4/pangomm/fontface.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pangomm-1.4/pangomm/item.h: /usr/include/pangomm-1.4/pangomm/attributes.h: /usr/include/pangomm-1.4/pangomm/color.h: /usr/include/pangomm-1.4/pangomm/attrlist.h: /usr/include/pangomm-1.4/pangomm/attriter.h: /usr/include/pangomm-1.4/pangomm/types.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/cairomm-1.0/cairomm/context.h: /usr/include/cairomm-1.0/cairomm/surface.h: /usr/include/cairomm-1.0/cairomm/enums.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/cairomm-1.0/cairomm/exception.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept: /usr/include/cairomm-1.0/cairomm/fontoptions.h: /usr/include/cairomm-1.0/cairomm/refptr.h: /usr/include/cairo/cairo-pdf.h: /usr/include/cairo/cairo-ps.h: /usr/include/cairo/cairo-svg.h: /usr/include/cairomm-1.0/cairomm/fontface.h: /usr/include/cairomm-1.0/cairomm/pattern.h: /usr/include/cairomm-1.0/cairomm/path.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h: /usr/include/pangomm-1.4/pangomm/layout.h: /usr/include/pangomm-1.4/pangomm/tabarray.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h: /usr/include/pangomm-1.4/pangomm/layoutline.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pangomm-1.4/pangomm/layoutiter.h: /usr/include/pangomm-1.4/pangomm/layoutrun.h: /usr/lib/gtkmm-2.4/include/gtkmmconfig.h: /usr/lib/gdkmm-2.4/include/gdkmmconfig.h: /usr/include/atkmm-1.6/atkmm/object.h: /usr/include/atkmm-1.6/atkmm/component.h: /usr/include/atkmm-1.6/atkmm/relation.h: /usr/include/atkmm-1.6/atkmm/implementor.h: /usr/include/gdkmm-2.4/gdkmm/event.h: /usr/include/gdkmm-2.4/gdkmm/window.h: /usr/include/gdkmm-2.4/gdkmm/drawable.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-engine.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-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkcolor.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/pangomm-1.4/pangomm/glyphstring.h: /usr/include/gdkmm-2.4/gdkmm/gc.h: /usr/include/gdkmm-2.4/gdkmm/types.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.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/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/gdkmm-2.4/gdkmm/rectangle.h: /usr/include/gdkmm-2.4/gdkmm/region.h: /usr/include/gdkmm-2.4/gdkmm/screen.h: /usr/include/gdkmm-2.4/gdkmm/image.h: /usr/include/gdkmm-2.4/gdkmm/visual.h: /usr/include/gdkmm-2.4/gdkmm/colormap.h: /usr/include/gdkmm-2.4/gdkmm/color.h: /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h: /usr/include/gdkmm-2.4/gdkmm/bitmap.h: /usr/include/gdkmm-2.4/gdkmm/pixmap.h: /usr/include/gdkmm-2.4/gdkmm/dragcontext.h: /usr/include/gdkmm-2.4/gdkmm/pixbuf.h: /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h: /usr/include/gtkmm-2.4/gtkmm/stockid.h: /usr/include/gtkmm-2.4/gtkmm/enums.h: /usr/include/gdkmm-2.4/gdkmm/display.h: /usr/include/gdkmm-2.4/gdkmm/device.h: /usr/include/gtkmm-2.4/gtkmm/targetlist.h: /usr/include/gtkmm-2.4/gtkmm/targetentry.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtkmm-2.4/gtkmm/rc.h: /usr/include/gtkmm-2.4/gtkmm/style.h: /usr/include/gtkmm-2.4/gtkmm/object.h: /usr/include/gtkmm-2.4/gtkmm/base.h: /usr/include/gtkmm-2.4/gtkmm/iconsource.h: /usr/include/gtkmm-2.4/gtkmm/iconset.h: /usr/include/gtkmm-2.4/gtkmm/clipboard.h: /usr/include/gtkmm-2.4/gtkmm/selectiondata.h: resources.h: gtkguitune/.deps/lcdview.Po0000644000175000017500000014225011064666201014662 0ustar flohflohlcdview.o lcdview.o: lcdview.cc lcdview.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-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/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/x86_64-linux-gnu/4.1.2/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/gtkmm-2.4/gtkmm/drawingarea.h \ /usr/include/glibmm-2.4/glibmm.h \ /usr/lib/glibmm-2.4/include/glibmmconfig.h \ /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h \ /usr/include/limits.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib \ /usr/include/stdlib.h /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h /usr/include/endian.h \ /usr/include/bits/endian.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ /usr/include/bits/confname.h /usr/include/getopt.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype \ /usr/include/ctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime \ /usr/include/stdint.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype \ /usr/include/wctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc \ /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h \ /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gcache.h /usr/include/glib-2.0/glib/glist.h \ /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h \ /usr/include/glib-2.0/glib/gdate.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gslist.h \ /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.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/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/glibmm-2.4/glibmm/refptr.h \ /usr/include/glibmm-2.4/glibmm/ustring.h \ /usr/include/glibmm-2.4/glibmm/unicode.h \ /usr/include/glibmm-2.4/glibmm/wrap.h \ /usr/include/glibmm-2.4/glibmm/debug.h \ /usr/include/glibmm-2.4/glibmm/class.h \ /usr/include/glibmm-2.4/glibmm/convert.h \ /usr/include/glibmm-2.4/glibmm/error.h \ /usr/include/glibmm-2.4/glibmm/exception.h \ /usr/include/glibmm-2.4/glibmm/date.h \ /usr/include/glibmm-2.4/glibmm/dispatcher.h \ /usr/include/sigc++-2.0/sigc++/sigc++.h \ /usr/include/sigc++-2.0/sigc++/signal.h \ /usr/include/sigc++-2.0/sigc++/signal_base.h \ /usr/lib/sigc++-2.0/include/sigc++config.h \ /usr/include/sigc++-2.0/sigc++/type_traits.h \ /usr/include/sigc++-2.0/sigc++/trackable.h \ /usr/include/sigc++-2.0/sigc++/functors/slot.h \ /usr/include/sigc++-2.0/sigc++/visit_each.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ /usr/include/sigc++-2.0/sigc++/limit_reference.h \ /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ /usr/include/sigc++-2.0/sigc++/connection.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h \ /usr/include/sigc++-2.0/sigc++/functors/functors.h \ /usr/include/glibmm-2.4/glibmm/main.h \ /usr/include/glibmm-2.4/glibmm/timeval.h \ /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ /usr/include/glibmm-2.4/glibmm/fileutils.h \ /usr/include/glibmm-2.4/glibmm/helperlist.h \ /usr/include/glibmm-2.4/glibmm/containers.h \ /usr/include/glibmm-2.4/glibmm/sarray.h \ /usr/include/glibmm-2.4/glibmm/interface.h \ /usr/include/glibmm-2.4/glibmm/object.h \ /usr/include/glibmm-2.4/glibmm/objectbase.h \ /usr/include/glibmm-2.4/glibmm/signalproxy.h \ /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ /usr/include/glibmm-2.4/glibmm/value.h \ /usr/include/glibmm-2.4/glibmm/value_custom.h \ /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ /usr/include/glibmm-2.4/glibmm/quark.h \ /usr/include/glibmm-2.4/glibmm/utility.h \ /usr/include/glibmm-2.4/glibmm/iochannel.h \ /usr/include/glibmm-2.4/glibmm/init.h \ /usr/include/glibmm-2.4/glibmm/keyfile.h \ /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ /usr/include/glibmm-2.4/glibmm/listhandle.h \ /usr/include/glibmm-2.4/glibmm/markup.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h \ /usr/include/glibmm-2.4/glibmm/miscutils.h \ /usr/include/glibmm-2.4/glibmm/module.h \ /usr/include/glibmm-2.4/glibmm/optioncontext.h \ /usr/include/glibmm-2.4/glibmm/optionentry.h \ /usr/include/glibmm-2.4/glibmm/optiongroup.h \ /usr/include/glibmm-2.4/glibmm/pattern.h \ /usr/include/glibmm-2.4/glibmm/property.h \ /usr/include/glibmm-2.4/glibmm/random.h \ /usr/include/glibmm-2.4/glibmm/shell.h \ /usr/include/glibmm-2.4/glibmm/slisthandle.h \ /usr/include/glibmm-2.4/glibmm/spawn.h \ /usr/include/glibmm-2.4/glibmm/stringutils.h \ /usr/include/glibmm-2.4/glibmm/thread.h \ /usr/include/glibmm-2.4/glibmm/threadpool.h \ /usr/include/glibmm-2.4/glibmm/timer.h \ /usr/include/gtkmm-2.4/gtkmm/widget.h \ /usr/include/pangomm-1.4/pangomm/context.h \ /usr/include/pangomm-1.4/pangomm/fontdescription.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-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ /usr/include/pangomm-1.4/pangomm/fontset.h \ /usr/include/pangomm-1.4/pangomm/language.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pangomm-1.4/pangomm/font.h \ /usr/include/pangomm-1.4/pangomm/rectangle.h \ /usr/include/pangomm-1.4/pangomm/glyph.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pangomm-1.4/pangomm/coverage.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pangomm-1.4/pangomm/fontmap.h \ /usr/include/pangomm-1.4/pangomm/fontfamily.h \ /usr/include/pangomm-1.4/pangomm/fontface.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pangomm-1.4/pangomm/item.h \ /usr/include/pangomm-1.4/pangomm/attributes.h \ /usr/include/pangomm-1.4/pangomm/color.h \ /usr/include/pangomm-1.4/pangomm/attrlist.h \ /usr/include/pangomm-1.4/pangomm/attriter.h \ /usr/include/pangomm-1.4/pangomm/types.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/cairomm-1.0/cairomm/context.h \ /usr/include/cairomm-1.0/cairomm/surface.h \ /usr/include/cairomm-1.0/cairomm/enums.h /usr/include/cairo/cairo.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/cairomm-1.0/cairomm/exception.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept \ /usr/include/cairomm-1.0/cairomm/fontoptions.h \ /usr/include/cairomm-1.0/cairomm/refptr.h \ /usr/include/cairo/cairo-pdf.h /usr/include/cairo/cairo-ps.h \ /usr/include/cairo/cairo-svg.h \ /usr/include/cairomm-1.0/cairomm/fontface.h \ /usr/include/cairomm-1.0/cairomm/pattern.h \ /usr/include/cairomm-1.0/cairomm/path.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ /usr/include/bits/inf.h /usr/include/bits/nan.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/bits/mathinline.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h \ /usr/include/pangomm-1.4/pangomm/layout.h \ /usr/include/pangomm-1.4/pangomm/tabarray.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h \ /usr/include/pangomm-1.4/pangomm/layoutline.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pangomm-1.4/pangomm/layoutiter.h \ /usr/include/pangomm-1.4/pangomm/layoutrun.h \ /usr/lib/gtkmm-2.4/include/gtkmmconfig.h \ /usr/lib/gdkmm-2.4/include/gdkmmconfig.h \ /usr/include/atkmm-1.6/atkmm/object.h \ /usr/include/atkmm-1.6/atkmm/component.h \ /usr/include/atkmm-1.6/atkmm/relation.h \ /usr/include/atkmm-1.6/atkmm/implementor.h \ /usr/include/gdkmm-2.4/gdkmm/event.h \ /usr/include/gdkmm-2.4/gdkmm/window.h \ /usr/include/gdkmm-2.4/gdkmm/drawable.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h \ /usr/include/gtk-2.0/gdk/gdktypes.h \ /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-engine.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-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h \ /usr/lib/gtk-2.0/include/gdkconfig.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkcolor.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/pangomm-1.4/pangomm/glyphstring.h \ /usr/include/gdkmm-2.4/gdkmm/gc.h /usr/include/gdkmm-2.4/gdkmm/types.h \ /usr/include/gtk-2.0/gdk/gdk.h /usr/include/gtk-2.0/gdk/gdkcairo.h \ /usr/include/gtk-2.0/gdk/gdkpixbuf.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/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/gdkmm-2.4/gdkmm/rectangle.h \ /usr/include/gdkmm-2.4/gdkmm/region.h \ /usr/include/gdkmm-2.4/gdkmm/screen.h \ /usr/include/gdkmm-2.4/gdkmm/image.h \ /usr/include/gdkmm-2.4/gdkmm/visual.h \ /usr/include/gdkmm-2.4/gdkmm/colormap.h \ /usr/include/gdkmm-2.4/gdkmm/color.h \ /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h \ /usr/include/gdkmm-2.4/gdkmm/bitmap.h \ /usr/include/gdkmm-2.4/gdkmm/pixmap.h \ /usr/include/gdkmm-2.4/gdkmm/dragcontext.h \ /usr/include/gdkmm-2.4/gdkmm/pixbuf.h \ /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h \ /usr/include/gtkmm-2.4/gtkmm/stockid.h \ /usr/include/gtkmm-2.4/gtkmm/enums.h \ /usr/include/gdkmm-2.4/gdkmm/display.h \ /usr/include/gdkmm-2.4/gdkmm/device.h \ /usr/include/gtkmm-2.4/gtkmm/targetlist.h \ /usr/include/gtkmm-2.4/gtkmm/targetentry.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtkenums.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtkmm-2.4/gtkmm/rc.h /usr/include/gtkmm-2.4/gtkmm/style.h \ /usr/include/gtkmm-2.4/gtkmm/object.h \ /usr/include/gtkmm-2.4/gtkmm/base.h \ /usr/include/gtkmm-2.4/gtkmm/iconsource.h \ /usr/include/gtkmm-2.4/gtkmm/iconset.h \ /usr/include/gtkmm-2.4/gtkmm/clipboard.h \ /usr/include/gtkmm-2.4/gtkmm/selectiondata.h lcdview.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-64.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/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/x86_64-linux-gnu/4.1.2/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/gtkmm-2.4/gtkmm/drawingarea.h: /usr/include/glibmm-2.4/glibmm.h: /usr/lib/glibmm-2.4/include/glibmmconfig.h: /usr/include/glibmm-2.4/glibmm/arrayhandle.h: /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h: /usr/include/limits.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/include/bits/xopen_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib: /usr/include/stdlib.h: /usr/include/bits/waitflags.h: /usr/include/bits/waitstatus.h: /usr/include/endian.h: /usr/include/bits/endian.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/environments.h: /usr/include/bits/confname.h: /usr/include/getopt.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype: /usr/include/ctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime: /usr/include/stdint.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype: /usr/include/wctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gerror.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.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/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/glibmm-2.4/glibmm/refptr.h: /usr/include/glibmm-2.4/glibmm/ustring.h: /usr/include/glibmm-2.4/glibmm/unicode.h: /usr/include/glibmm-2.4/glibmm/wrap.h: /usr/include/glibmm-2.4/glibmm/debug.h: /usr/include/glibmm-2.4/glibmm/class.h: /usr/include/glibmm-2.4/glibmm/convert.h: /usr/include/glibmm-2.4/glibmm/error.h: /usr/include/glibmm-2.4/glibmm/exception.h: /usr/include/glibmm-2.4/glibmm/date.h: /usr/include/glibmm-2.4/glibmm/dispatcher.h: /usr/include/sigc++-2.0/sigc++/sigc++.h: /usr/include/sigc++-2.0/sigc++/signal.h: /usr/include/sigc++-2.0/sigc++/signal_base.h: /usr/lib/sigc++-2.0/include/sigc++config.h: /usr/include/sigc++-2.0/sigc++/type_traits.h: /usr/include/sigc++-2.0/sigc++/trackable.h: /usr/include/sigc++-2.0/sigc++/functors/slot.h: /usr/include/sigc++-2.0/sigc++/visit_each.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h: /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h: /usr/include/sigc++-2.0/sigc++/limit_reference.h: /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h: /usr/include/sigc++-2.0/sigc++/functors/slot_base.h: /usr/include/sigc++-2.0/sigc++/connection.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind.h: /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h: /usr/include/sigc++-2.0/sigc++/reference_wrapper.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/hide.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype.h: /usr/include/sigc++-2.0/sigc++/adaptors/compose.h: /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h: /usr/include/sigc++-2.0/sigc++/functors/functors.h: /usr/include/glibmm-2.4/glibmm/main.h: /usr/include/glibmm-2.4/glibmm/timeval.h: /usr/include/glibmm-2.4/glibmm/exceptionhandler.h: /usr/include/glibmm-2.4/glibmm/fileutils.h: /usr/include/glibmm-2.4/glibmm/helperlist.h: /usr/include/glibmm-2.4/glibmm/containers.h: /usr/include/glibmm-2.4/glibmm/sarray.h: /usr/include/glibmm-2.4/glibmm/interface.h: /usr/include/glibmm-2.4/glibmm/object.h: /usr/include/glibmm-2.4/glibmm/objectbase.h: /usr/include/glibmm-2.4/glibmm/signalproxy.h: /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h: /usr/include/glibmm-2.4/glibmm/propertyproxy.h: /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h: /usr/include/glibmm-2.4/glibmm/value.h: /usr/include/glibmm-2.4/glibmm/value_custom.h: /usr/include/glibmm-2.4/glibmm/value_basictypes.h: /usr/include/glibmm-2.4/glibmm/quark.h: /usr/include/glibmm-2.4/glibmm/utility.h: /usr/include/glibmm-2.4/glibmm/iochannel.h: /usr/include/glibmm-2.4/glibmm/init.h: /usr/include/glibmm-2.4/glibmm/keyfile.h: /usr/include/glibmm-2.4/glibmm/streamiochannel.h: /usr/include/glibmm-2.4/glibmm/listhandle.h: /usr/include/glibmm-2.4/glibmm/markup.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h: /usr/include/glibmm-2.4/glibmm/miscutils.h: /usr/include/glibmm-2.4/glibmm/module.h: /usr/include/glibmm-2.4/glibmm/optioncontext.h: /usr/include/glibmm-2.4/glibmm/optionentry.h: /usr/include/glibmm-2.4/glibmm/optiongroup.h: /usr/include/glibmm-2.4/glibmm/pattern.h: /usr/include/glibmm-2.4/glibmm/property.h: /usr/include/glibmm-2.4/glibmm/random.h: /usr/include/glibmm-2.4/glibmm/shell.h: /usr/include/glibmm-2.4/glibmm/slisthandle.h: /usr/include/glibmm-2.4/glibmm/spawn.h: /usr/include/glibmm-2.4/glibmm/stringutils.h: /usr/include/glibmm-2.4/glibmm/thread.h: /usr/include/glibmm-2.4/glibmm/threadpool.h: /usr/include/glibmm-2.4/glibmm/timer.h: /usr/include/gtkmm-2.4/gtkmm/widget.h: /usr/include/pangomm-1.4/pangomm/context.h: /usr/include/pangomm-1.4/pangomm/fontdescription.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-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pangomm-1.4/pangomm/fontmetrics.h: /usr/include/pangomm-1.4/pangomm/fontset.h: /usr/include/pangomm-1.4/pangomm/language.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pangomm-1.4/pangomm/font.h: /usr/include/pangomm-1.4/pangomm/rectangle.h: /usr/include/pangomm-1.4/pangomm/glyph.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pangomm-1.4/pangomm/coverage.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pangomm-1.4/pangomm/fontmap.h: /usr/include/pangomm-1.4/pangomm/fontfamily.h: /usr/include/pangomm-1.4/pangomm/fontface.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pangomm-1.4/pangomm/item.h: /usr/include/pangomm-1.4/pangomm/attributes.h: /usr/include/pangomm-1.4/pangomm/color.h: /usr/include/pangomm-1.4/pangomm/attrlist.h: /usr/include/pangomm-1.4/pangomm/attriter.h: /usr/include/pangomm-1.4/pangomm/types.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/cairomm-1.0/cairomm/context.h: /usr/include/cairomm-1.0/cairomm/surface.h: /usr/include/cairomm-1.0/cairomm/enums.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/cairomm-1.0/cairomm/exception.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept: /usr/include/cairomm-1.0/cairomm/fontoptions.h: /usr/include/cairomm-1.0/cairomm/refptr.h: /usr/include/cairo/cairo-pdf.h: /usr/include/cairo/cairo-ps.h: /usr/include/cairo/cairo-svg.h: /usr/include/cairomm-1.0/cairomm/fontface.h: /usr/include/cairomm-1.0/cairomm/pattern.h: /usr/include/cairomm-1.0/cairomm/path.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/huge_valf.h: /usr/include/bits/huge_vall.h: /usr/include/bits/inf.h: /usr/include/bits/nan.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/bits/mathinline.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h: /usr/include/pangomm-1.4/pangomm/layout.h: /usr/include/pangomm-1.4/pangomm/tabarray.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h: /usr/include/pangomm-1.4/pangomm/layoutline.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pangomm-1.4/pangomm/layoutiter.h: /usr/include/pangomm-1.4/pangomm/layoutrun.h: /usr/lib/gtkmm-2.4/include/gtkmmconfig.h: /usr/lib/gdkmm-2.4/include/gdkmmconfig.h: /usr/include/atkmm-1.6/atkmm/object.h: /usr/include/atkmm-1.6/atkmm/component.h: /usr/include/atkmm-1.6/atkmm/relation.h: /usr/include/atkmm-1.6/atkmm/implementor.h: /usr/include/gdkmm-2.4/gdkmm/event.h: /usr/include/gdkmm-2.4/gdkmm/window.h: /usr/include/gdkmm-2.4/gdkmm/drawable.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-engine.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-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkcolor.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/pangomm-1.4/pangomm/glyphstring.h: /usr/include/gdkmm-2.4/gdkmm/gc.h: /usr/include/gdkmm-2.4/gdkmm/types.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.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/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/gdkmm-2.4/gdkmm/rectangle.h: /usr/include/gdkmm-2.4/gdkmm/region.h: /usr/include/gdkmm-2.4/gdkmm/screen.h: /usr/include/gdkmm-2.4/gdkmm/image.h: /usr/include/gdkmm-2.4/gdkmm/visual.h: /usr/include/gdkmm-2.4/gdkmm/colormap.h: /usr/include/gdkmm-2.4/gdkmm/color.h: /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h: /usr/include/gdkmm-2.4/gdkmm/bitmap.h: /usr/include/gdkmm-2.4/gdkmm/pixmap.h: /usr/include/gdkmm-2.4/gdkmm/dragcontext.h: /usr/include/gdkmm-2.4/gdkmm/pixbuf.h: /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h: /usr/include/gtkmm-2.4/gtkmm/stockid.h: /usr/include/gtkmm-2.4/gtkmm/enums.h: /usr/include/gdkmm-2.4/gdkmm/display.h: /usr/include/gdkmm-2.4/gdkmm/device.h: /usr/include/gtkmm-2.4/gtkmm/targetlist.h: /usr/include/gtkmm-2.4/gtkmm/targetentry.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtkmm-2.4/gtkmm/rc.h: /usr/include/gtkmm-2.4/gtkmm/style.h: /usr/include/gtkmm-2.4/gtkmm/object.h: /usr/include/gtkmm-2.4/gtkmm/base.h: /usr/include/gtkmm-2.4/gtkmm/iconsource.h: /usr/include/gtkmm-2.4/gtkmm/iconset.h: /usr/include/gtkmm-2.4/gtkmm/clipboard.h: /usr/include/gtkmm-2.4/gtkmm/selectiondata.h: gtkguitune/.deps/osziview.Po0000644000175000017500000014230711064666204015112 0ustar flohflohosziview.o osziview.o: osziview.cc /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-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/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/x86_64-linux-gnu/4.1.2/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/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ /usr/include/bits/inf.h /usr/include/bits/nan.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/bits/mathinline.h resources.h osziview.h \ /usr/include/gtkmm-2.4/gtkmm/drawingarea.h \ /usr/include/glibmm-2.4/glibmm.h \ /usr/lib/glibmm-2.4/include/glibmmconfig.h \ /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h \ /usr/include/limits.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib \ /usr/include/stdlib.h /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h /usr/include/endian.h \ /usr/include/bits/endian.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ /usr/include/bits/confname.h /usr/include/getopt.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype \ /usr/include/ctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime \ /usr/include/stdint.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype \ /usr/include/wctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc \ /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/gtype.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h \ /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gatomic.h \ /usr/include/glib-2.0/glib/gbacktrace.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gcache.h /usr/include/glib-2.0/glib/glist.h \ /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gcompletion.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h \ /usr/include/glib-2.0/glib/gdate.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ghash.h /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gslist.h \ /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.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/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/glibmm-2.4/glibmm/refptr.h \ /usr/include/glibmm-2.4/glibmm/ustring.h \ /usr/include/glibmm-2.4/glibmm/unicode.h \ /usr/include/glibmm-2.4/glibmm/wrap.h \ /usr/include/glibmm-2.4/glibmm/debug.h \ /usr/include/glibmm-2.4/glibmm/class.h \ /usr/include/glibmm-2.4/glibmm/convert.h \ /usr/include/glibmm-2.4/glibmm/error.h \ /usr/include/glibmm-2.4/glibmm/exception.h \ /usr/include/glibmm-2.4/glibmm/date.h \ /usr/include/glibmm-2.4/glibmm/dispatcher.h \ /usr/include/sigc++-2.0/sigc++/sigc++.h \ /usr/include/sigc++-2.0/sigc++/signal.h \ /usr/include/sigc++-2.0/sigc++/signal_base.h \ /usr/lib/sigc++-2.0/include/sigc++config.h \ /usr/include/sigc++-2.0/sigc++/type_traits.h \ /usr/include/sigc++-2.0/sigc++/trackable.h \ /usr/include/sigc++-2.0/sigc++/functors/slot.h \ /usr/include/sigc++-2.0/sigc++/visit_each.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ /usr/include/sigc++-2.0/sigc++/limit_reference.h \ /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ /usr/include/sigc++-2.0/sigc++/connection.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h \ /usr/include/sigc++-2.0/sigc++/functors/functors.h \ /usr/include/glibmm-2.4/glibmm/main.h \ /usr/include/glibmm-2.4/glibmm/timeval.h \ /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ /usr/include/glibmm-2.4/glibmm/fileutils.h \ /usr/include/glibmm-2.4/glibmm/helperlist.h \ /usr/include/glibmm-2.4/glibmm/containers.h \ /usr/include/glibmm-2.4/glibmm/sarray.h \ /usr/include/glibmm-2.4/glibmm/interface.h \ /usr/include/glibmm-2.4/glibmm/object.h \ /usr/include/glibmm-2.4/glibmm/objectbase.h \ /usr/include/glibmm-2.4/glibmm/signalproxy.h \ /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ /usr/include/glibmm-2.4/glibmm/value.h \ /usr/include/glibmm-2.4/glibmm/value_custom.h \ /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ /usr/include/glibmm-2.4/glibmm/quark.h \ /usr/include/glibmm-2.4/glibmm/utility.h \ /usr/include/glibmm-2.4/glibmm/iochannel.h \ /usr/include/glibmm-2.4/glibmm/init.h \ /usr/include/glibmm-2.4/glibmm/keyfile.h \ /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ /usr/include/glibmm-2.4/glibmm/listhandle.h \ /usr/include/glibmm-2.4/glibmm/markup.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h \ /usr/include/glibmm-2.4/glibmm/miscutils.h \ /usr/include/glibmm-2.4/glibmm/module.h \ /usr/include/glibmm-2.4/glibmm/optioncontext.h \ /usr/include/glibmm-2.4/glibmm/optionentry.h \ /usr/include/glibmm-2.4/glibmm/optiongroup.h \ /usr/include/glibmm-2.4/glibmm/pattern.h \ /usr/include/glibmm-2.4/glibmm/property.h \ /usr/include/glibmm-2.4/glibmm/random.h \ /usr/include/glibmm-2.4/glibmm/shell.h \ /usr/include/glibmm-2.4/glibmm/slisthandle.h \ /usr/include/glibmm-2.4/glibmm/spawn.h \ /usr/include/glibmm-2.4/glibmm/stringutils.h \ /usr/include/glibmm-2.4/glibmm/thread.h \ /usr/include/glibmm-2.4/glibmm/threadpool.h \ /usr/include/glibmm-2.4/glibmm/timer.h \ /usr/include/gtkmm-2.4/gtkmm/widget.h \ /usr/include/pangomm-1.4/pangomm/context.h \ /usr/include/pangomm-1.4/pangomm/fontdescription.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-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ /usr/include/pangomm-1.4/pangomm/fontset.h \ /usr/include/pangomm-1.4/pangomm/language.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pangomm-1.4/pangomm/font.h \ /usr/include/pangomm-1.4/pangomm/rectangle.h \ /usr/include/pangomm-1.4/pangomm/glyph.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pangomm-1.4/pangomm/coverage.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pangomm-1.4/pangomm/fontmap.h \ /usr/include/pangomm-1.4/pangomm/fontfamily.h \ /usr/include/pangomm-1.4/pangomm/fontface.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pangomm-1.4/pangomm/item.h \ /usr/include/pangomm-1.4/pangomm/attributes.h \ /usr/include/pangomm-1.4/pangomm/color.h \ /usr/include/pangomm-1.4/pangomm/attrlist.h \ /usr/include/pangomm-1.4/pangomm/attriter.h \ /usr/include/pangomm-1.4/pangomm/types.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/cairomm-1.0/cairomm/context.h \ /usr/include/cairomm-1.0/cairomm/surface.h \ /usr/include/cairomm-1.0/cairomm/enums.h /usr/include/cairo/cairo.h \ /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/cairomm-1.0/cairomm/exception.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept \ /usr/include/cairomm-1.0/cairomm/fontoptions.h \ /usr/include/cairomm-1.0/cairomm/refptr.h \ /usr/include/cairo/cairo-pdf.h /usr/include/cairo/cairo-ps.h \ /usr/include/cairo/cairo-svg.h \ /usr/include/cairomm-1.0/cairomm/fontface.h \ /usr/include/cairomm-1.0/cairomm/pattern.h \ /usr/include/cairomm-1.0/cairomm/path.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h \ /usr/include/pangomm-1.4/pangomm/layout.h \ /usr/include/pangomm-1.4/pangomm/tabarray.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h \ /usr/include/pangomm-1.4/pangomm/layoutline.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pangomm-1.4/pangomm/layoutiter.h \ /usr/include/pangomm-1.4/pangomm/layoutrun.h \ /usr/lib/gtkmm-2.4/include/gtkmmconfig.h \ /usr/lib/gdkmm-2.4/include/gdkmmconfig.h \ /usr/include/atkmm-1.6/atkmm/object.h \ /usr/include/atkmm-1.6/atkmm/component.h \ /usr/include/atkmm-1.6/atkmm/relation.h \ /usr/include/atkmm-1.6/atkmm/implementor.h \ /usr/include/gdkmm-2.4/gdkmm/event.h \ /usr/include/gdkmm-2.4/gdkmm/window.h \ /usr/include/gdkmm-2.4/gdkmm/drawable.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h \ /usr/include/gtk-2.0/gdk/gdktypes.h \ /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-engine.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-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h \ /usr/lib/gtk-2.0/include/gdkconfig.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkcolor.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/pangomm-1.4/pangomm/glyphstring.h \ /usr/include/gdkmm-2.4/gdkmm/gc.h /usr/include/gdkmm-2.4/gdkmm/types.h \ /usr/include/gtk-2.0/gdk/gdk.h /usr/include/gtk-2.0/gdk/gdkcairo.h \ /usr/include/gtk-2.0/gdk/gdkpixbuf.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/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/gdkmm-2.4/gdkmm/rectangle.h \ /usr/include/gdkmm-2.4/gdkmm/region.h \ /usr/include/gdkmm-2.4/gdkmm/screen.h \ /usr/include/gdkmm-2.4/gdkmm/image.h \ /usr/include/gdkmm-2.4/gdkmm/visual.h \ /usr/include/gdkmm-2.4/gdkmm/colormap.h \ /usr/include/gdkmm-2.4/gdkmm/color.h \ /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h \ /usr/include/gdkmm-2.4/gdkmm/bitmap.h \ /usr/include/gdkmm-2.4/gdkmm/pixmap.h \ /usr/include/gdkmm-2.4/gdkmm/dragcontext.h \ /usr/include/gdkmm-2.4/gdkmm/pixbuf.h \ /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h \ /usr/include/gtkmm-2.4/gtkmm/stockid.h \ /usr/include/gtkmm-2.4/gtkmm/enums.h \ /usr/include/gdkmm-2.4/gdkmm/display.h \ /usr/include/gdkmm-2.4/gdkmm/device.h \ /usr/include/gtkmm-2.4/gtkmm/targetlist.h \ /usr/include/gtkmm-2.4/gtkmm/targetentry.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtkenums.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtkmm-2.4/gtkmm/rc.h /usr/include/gtkmm-2.4/gtkmm/style.h \ /usr/include/gtkmm-2.4/gtkmm/object.h \ /usr/include/gtkmm-2.4/gtkmm/base.h \ /usr/include/gtkmm-2.4/gtkmm/iconsource.h \ /usr/include/gtkmm-2.4/gtkmm/iconset.h \ /usr/include/gtkmm-2.4/gtkmm/clipboard.h \ /usr/include/gtkmm-2.4/gtkmm/selectiondata.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-64.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/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/x86_64-linux-gnu/4.1.2/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/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/huge_valf.h: /usr/include/bits/huge_vall.h: /usr/include/bits/inf.h: /usr/include/bits/nan.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/bits/mathinline.h: resources.h: osziview.h: /usr/include/gtkmm-2.4/gtkmm/drawingarea.h: /usr/include/glibmm-2.4/glibmm.h: /usr/lib/glibmm-2.4/include/glibmmconfig.h: /usr/include/glibmm-2.4/glibmm/arrayhandle.h: /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h: /usr/include/limits.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/include/bits/xopen_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib: /usr/include/stdlib.h: /usr/include/bits/waitflags.h: /usr/include/bits/waitstatus.h: /usr/include/endian.h: /usr/include/bits/endian.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/environments.h: /usr/include/bits/confname.h: /usr/include/getopt.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype: /usr/include/ctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime: /usr/include/stdint.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype: /usr/include/wctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gerror.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gcache.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gcompletion.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.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/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/glibmm-2.4/glibmm/refptr.h: /usr/include/glibmm-2.4/glibmm/ustring.h: /usr/include/glibmm-2.4/glibmm/unicode.h: /usr/include/glibmm-2.4/glibmm/wrap.h: /usr/include/glibmm-2.4/glibmm/debug.h: /usr/include/glibmm-2.4/glibmm/class.h: /usr/include/glibmm-2.4/glibmm/convert.h: /usr/include/glibmm-2.4/glibmm/error.h: /usr/include/glibmm-2.4/glibmm/exception.h: /usr/include/glibmm-2.4/glibmm/date.h: /usr/include/glibmm-2.4/glibmm/dispatcher.h: /usr/include/sigc++-2.0/sigc++/sigc++.h: /usr/include/sigc++-2.0/sigc++/signal.h: /usr/include/sigc++-2.0/sigc++/signal_base.h: /usr/lib/sigc++-2.0/include/sigc++config.h: /usr/include/sigc++-2.0/sigc++/type_traits.h: /usr/include/sigc++-2.0/sigc++/trackable.h: /usr/include/sigc++-2.0/sigc++/functors/slot.h: /usr/include/sigc++-2.0/sigc++/visit_each.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h: /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h: /usr/include/sigc++-2.0/sigc++/limit_reference.h: /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h: /usr/include/sigc++-2.0/sigc++/functors/slot_base.h: /usr/include/sigc++-2.0/sigc++/connection.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind.h: /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h: /usr/include/sigc++-2.0/sigc++/reference_wrapper.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/hide.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype.h: /usr/include/sigc++-2.0/sigc++/adaptors/compose.h: /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h: /usr/include/sigc++-2.0/sigc++/functors/functors.h: /usr/include/glibmm-2.4/glibmm/main.h: /usr/include/glibmm-2.4/glibmm/timeval.h: /usr/include/glibmm-2.4/glibmm/exceptionhandler.h: /usr/include/glibmm-2.4/glibmm/fileutils.h: /usr/include/glibmm-2.4/glibmm/helperlist.h: /usr/include/glibmm-2.4/glibmm/containers.h: /usr/include/glibmm-2.4/glibmm/sarray.h: /usr/include/glibmm-2.4/glibmm/interface.h: /usr/include/glibmm-2.4/glibmm/object.h: /usr/include/glibmm-2.4/glibmm/objectbase.h: /usr/include/glibmm-2.4/glibmm/signalproxy.h: /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h: /usr/include/glibmm-2.4/glibmm/propertyproxy.h: /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h: /usr/include/glibmm-2.4/glibmm/value.h: /usr/include/glibmm-2.4/glibmm/value_custom.h: /usr/include/glibmm-2.4/glibmm/value_basictypes.h: /usr/include/glibmm-2.4/glibmm/quark.h: /usr/include/glibmm-2.4/glibmm/utility.h: /usr/include/glibmm-2.4/glibmm/iochannel.h: /usr/include/glibmm-2.4/glibmm/init.h: /usr/include/glibmm-2.4/glibmm/keyfile.h: /usr/include/glibmm-2.4/glibmm/streamiochannel.h: /usr/include/glibmm-2.4/glibmm/listhandle.h: /usr/include/glibmm-2.4/glibmm/markup.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h: /usr/include/glibmm-2.4/glibmm/miscutils.h: /usr/include/glibmm-2.4/glibmm/module.h: /usr/include/glibmm-2.4/glibmm/optioncontext.h: /usr/include/glibmm-2.4/glibmm/optionentry.h: /usr/include/glibmm-2.4/glibmm/optiongroup.h: /usr/include/glibmm-2.4/glibmm/pattern.h: /usr/include/glibmm-2.4/glibmm/property.h: /usr/include/glibmm-2.4/glibmm/random.h: /usr/include/glibmm-2.4/glibmm/shell.h: /usr/include/glibmm-2.4/glibmm/slisthandle.h: /usr/include/glibmm-2.4/glibmm/spawn.h: /usr/include/glibmm-2.4/glibmm/stringutils.h: /usr/include/glibmm-2.4/glibmm/thread.h: /usr/include/glibmm-2.4/glibmm/threadpool.h: /usr/include/glibmm-2.4/glibmm/timer.h: /usr/include/gtkmm-2.4/gtkmm/widget.h: /usr/include/pangomm-1.4/pangomm/context.h: /usr/include/pangomm-1.4/pangomm/fontdescription.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-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pangomm-1.4/pangomm/fontmetrics.h: /usr/include/pangomm-1.4/pangomm/fontset.h: /usr/include/pangomm-1.4/pangomm/language.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pangomm-1.4/pangomm/font.h: /usr/include/pangomm-1.4/pangomm/rectangle.h: /usr/include/pangomm-1.4/pangomm/glyph.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pangomm-1.4/pangomm/coverage.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pangomm-1.4/pangomm/fontmap.h: /usr/include/pangomm-1.4/pangomm/fontfamily.h: /usr/include/pangomm-1.4/pangomm/fontface.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pangomm-1.4/pangomm/item.h: /usr/include/pangomm-1.4/pangomm/attributes.h: /usr/include/pangomm-1.4/pangomm/color.h: /usr/include/pangomm-1.4/pangomm/attrlist.h: /usr/include/pangomm-1.4/pangomm/attriter.h: /usr/include/pangomm-1.4/pangomm/types.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/cairomm-1.0/cairomm/context.h: /usr/include/cairomm-1.0/cairomm/surface.h: /usr/include/cairomm-1.0/cairomm/enums.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/cairomm-1.0/cairomm/exception.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept: /usr/include/cairomm-1.0/cairomm/fontoptions.h: /usr/include/cairomm-1.0/cairomm/refptr.h: /usr/include/cairo/cairo-pdf.h: /usr/include/cairo/cairo-ps.h: /usr/include/cairo/cairo-svg.h: /usr/include/cairomm-1.0/cairomm/fontface.h: /usr/include/cairomm-1.0/cairomm/pattern.h: /usr/include/cairomm-1.0/cairomm/path.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h: /usr/include/pangomm-1.4/pangomm/layout.h: /usr/include/pangomm-1.4/pangomm/tabarray.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h: /usr/include/pangomm-1.4/pangomm/layoutline.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pangomm-1.4/pangomm/layoutiter.h: /usr/include/pangomm-1.4/pangomm/layoutrun.h: /usr/lib/gtkmm-2.4/include/gtkmmconfig.h: /usr/lib/gdkmm-2.4/include/gdkmmconfig.h: /usr/include/atkmm-1.6/atkmm/object.h: /usr/include/atkmm-1.6/atkmm/component.h: /usr/include/atkmm-1.6/atkmm/relation.h: /usr/include/atkmm-1.6/atkmm/implementor.h: /usr/include/gdkmm-2.4/gdkmm/event.h: /usr/include/gdkmm-2.4/gdkmm/window.h: /usr/include/gdkmm-2.4/gdkmm/drawable.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-engine.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-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkcolor.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/pangomm-1.4/pangomm/glyphstring.h: /usr/include/gdkmm-2.4/gdkmm/gc.h: /usr/include/gdkmm-2.4/gdkmm/types.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.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/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/gdkmm-2.4/gdkmm/rectangle.h: /usr/include/gdkmm-2.4/gdkmm/region.h: /usr/include/gdkmm-2.4/gdkmm/screen.h: /usr/include/gdkmm-2.4/gdkmm/image.h: /usr/include/gdkmm-2.4/gdkmm/visual.h: /usr/include/gdkmm-2.4/gdkmm/colormap.h: /usr/include/gdkmm-2.4/gdkmm/color.h: /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h: /usr/include/gdkmm-2.4/gdkmm/bitmap.h: /usr/include/gdkmm-2.4/gdkmm/pixmap.h: /usr/include/gdkmm-2.4/gdkmm/dragcontext.h: /usr/include/gdkmm-2.4/gdkmm/pixbuf.h: /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h: /usr/include/gtkmm-2.4/gtkmm/stockid.h: /usr/include/gtkmm-2.4/gtkmm/enums.h: /usr/include/gdkmm-2.4/gdkmm/display.h: /usr/include/gdkmm-2.4/gdkmm/device.h: /usr/include/gtkmm-2.4/gtkmm/targetlist.h: /usr/include/gtkmm-2.4/gtkmm/targetentry.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtkmm-2.4/gtkmm/rc.h: /usr/include/gtkmm-2.4/gtkmm/style.h: /usr/include/gtkmm-2.4/gtkmm/object.h: /usr/include/gtkmm-2.4/gtkmm/base.h: /usr/include/gtkmm-2.4/gtkmm/iconsource.h: /usr/include/gtkmm-2.4/gtkmm/iconset.h: /usr/include/gtkmm-2.4/gtkmm/clipboard.h: /usr/include/gtkmm-2.4/gtkmm/selectiondata.h: gtkguitune/.deps/main.Po0000644000175000017500000021625111064666177014170 0ustar flohflohmain.o main.o: main.cc /usr/include/sys/types.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ /usr/include/bits/types.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/stddef.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/sys/stat.h \ /usr/include/bits/stat.h /usr/include/fcntl.h /usr/include/bits/fcntl.h \ /usr/include/bits/uio.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/sys/ioctl.h /usr/include/bits/ioctls.h \ /usr/include/asm/ioctls.h /usr/include/asm-x86_64/ioctls.h \ /usr/include/asm/ioctl.h /usr/include/asm-x86_64/ioctl.h \ /usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \ /usr/include/sys/ttydefaults.h /usr/include/linux/soundcard.h \ /usr/include/linux/ioctl.h /usr/include/linux/patchkey.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/x86_64-linux-gnu/4.1.2/include/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h \ /usr/include/limits.h /usr/include/bits/posix1_lim.h \ /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ /usr/include/bits/stdio_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/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/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/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/x86_64-linux-gnu/4.1.2/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-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \ /usr/lib/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkpixbuf.h /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/glib-2.0/gmodule.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkdnd.h \ /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkscreen.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h /usr/include/atk-1.0/atk/atk.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/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/gtkmm-2.4/gtkmm/window.h /usr/include/glibmm-2.4/glibmm.h \ /usr/lib/glibmm-2.4/include/glibmmconfig.h \ /usr/include/glibmm-2.4/glibmm/arrayhandle.h \ /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring \ /usr/include/string.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib \ /usr/include/stdlib.h /usr/include/bits/waitflags.h \ /usr/include/bits/waitstatus.h /usr/include/alloca.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype \ /usr/include/ctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime \ /usr/include/stdint.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype \ /usr/include/wctype.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc \ /usr/include/glibmm-2.4/glibmm/refptr.h \ /usr/include/glibmm-2.4/glibmm/ustring.h \ /usr/include/glibmm-2.4/glibmm/unicode.h \ /usr/include/glibmm-2.4/glibmm/wrap.h \ /usr/include/glibmm-2.4/glibmm/debug.h \ /usr/include/glibmm-2.4/glibmm/class.h \ /usr/include/glibmm-2.4/glibmm/convert.h \ /usr/include/glibmm-2.4/glibmm/error.h \ /usr/include/glibmm-2.4/glibmm/exception.h \ /usr/include/glibmm-2.4/glibmm/date.h \ /usr/include/glibmm-2.4/glibmm/dispatcher.h \ /usr/include/sigc++-2.0/sigc++/sigc++.h \ /usr/include/sigc++-2.0/sigc++/signal.h \ /usr/include/sigc++-2.0/sigc++/signal_base.h \ /usr/lib/sigc++-2.0/include/sigc++config.h \ /usr/include/sigc++-2.0/sigc++/type_traits.h \ /usr/include/sigc++-2.0/sigc++/trackable.h \ /usr/include/sigc++-2.0/sigc++/functors/slot.h \ /usr/include/sigc++-2.0/sigc++/visit_each.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h \ /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h \ /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h \ /usr/include/sigc++-2.0/sigc++/limit_reference.h \ /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h \ /usr/include/sigc++-2.0/sigc++/functors/slot_base.h \ /usr/include/sigc++-2.0/sigc++/connection.h \ /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h \ /usr/include/sigc++-2.0/sigc++/reference_wrapper.h \ /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/hide.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h \ /usr/include/sigc++-2.0/sigc++/adaptors/retype.h \ /usr/include/sigc++-2.0/sigc++/adaptors/compose.h \ /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h \ /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h \ /usr/include/sigc++-2.0/sigc++/functors/functors.h \ /usr/include/glibmm-2.4/glibmm/main.h \ /usr/include/glibmm-2.4/glibmm/timeval.h \ /usr/include/glibmm-2.4/glibmm/exceptionhandler.h \ /usr/include/glibmm-2.4/glibmm/fileutils.h \ /usr/include/glibmm-2.4/glibmm/helperlist.h \ /usr/include/glibmm-2.4/glibmm/containers.h \ /usr/include/glibmm-2.4/glibmm/sarray.h \ /usr/include/glibmm-2.4/glibmm/interface.h \ /usr/include/glibmm-2.4/glibmm/object.h \ /usr/include/glibmm-2.4/glibmm/objectbase.h \ /usr/include/glibmm-2.4/glibmm/signalproxy.h \ /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy.h \ /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h \ /usr/include/glibmm-2.4/glibmm/value.h \ /usr/include/glibmm-2.4/glibmm/value_custom.h \ /usr/include/glibmm-2.4/glibmm/value_basictypes.h \ /usr/include/glibmm-2.4/glibmm/quark.h \ /usr/include/glibmm-2.4/glibmm/utility.h \ /usr/include/glibmm-2.4/glibmm/iochannel.h \ /usr/include/glibmm-2.4/glibmm/init.h \ /usr/include/glibmm-2.4/glibmm/keyfile.h \ /usr/include/glibmm-2.4/glibmm/streamiochannel.h \ /usr/include/glibmm-2.4/glibmm/listhandle.h \ /usr/include/glibmm-2.4/glibmm/markup.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h \ /usr/include/glibmm-2.4/glibmm/miscutils.h \ /usr/include/glibmm-2.4/glibmm/module.h \ /usr/include/glibmm-2.4/glibmm/optioncontext.h \ /usr/include/glibmm-2.4/glibmm/optionentry.h \ /usr/include/glibmm-2.4/glibmm/optiongroup.h \ /usr/include/glibmm-2.4/glibmm/pattern.h \ /usr/include/glibmm-2.4/glibmm/property.h \ /usr/include/glibmm-2.4/glibmm/random.h \ /usr/include/glibmm-2.4/glibmm/shell.h \ /usr/include/glibmm-2.4/glibmm/slisthandle.h \ /usr/include/glibmm-2.4/glibmm/spawn.h \ /usr/include/glibmm-2.4/glibmm/stringutils.h \ /usr/include/glibmm-2.4/glibmm/thread.h \ /usr/include/glibmm-2.4/glibmm/threadpool.h \ /usr/include/glibmm-2.4/glibmm/timer.h \ /usr/include/gtkmm-2.4/gtkmm/bin.h \ /usr/include/gtkmm-2.4/gtkmm/container.h \ /usr/include/gtkmm-2.4/gtkmm/widget.h \ /usr/include/pangomm-1.4/pangomm/context.h \ /usr/include/pangomm-1.4/pangomm/fontdescription.h \ /usr/include/pangomm-1.4/pangomm/fontmetrics.h \ /usr/include/pangomm-1.4/pangomm/fontset.h \ /usr/include/pangomm-1.4/pangomm/language.h \ /usr/include/pangomm-1.4/pangomm/font.h \ /usr/include/pangomm-1.4/pangomm/rectangle.h \ /usr/include/pangomm-1.4/pangomm/glyph.h \ /usr/include/pangomm-1.4/pangomm/coverage.h \ /usr/include/pangomm-1.4/pangomm/fontmap.h \ /usr/include/pangomm-1.4/pangomm/fontfamily.h \ /usr/include/pangomm-1.4/pangomm/fontface.h \ /usr/include/pangomm-1.4/pangomm/item.h \ /usr/include/pangomm-1.4/pangomm/attributes.h \ /usr/include/pangomm-1.4/pangomm/color.h \ /usr/include/pangomm-1.4/pangomm/attrlist.h \ /usr/include/pangomm-1.4/pangomm/attriter.h \ /usr/include/pangomm-1.4/pangomm/types.h \ /usr/include/cairomm-1.0/cairomm/context.h \ /usr/include/cairomm-1.0/cairomm/surface.h \ /usr/include/cairomm-1.0/cairomm/enums.h \ /usr/include/cairomm-1.0/cairomm/exception.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept \ /usr/include/cairomm-1.0/cairomm/fontoptions.h \ /usr/include/cairomm-1.0/cairomm/refptr.h \ /usr/include/cairo/cairo-pdf.h /usr/include/cairo/cairo-ps.h \ /usr/include/cairo/cairo-svg.h \ /usr/include/cairomm-1.0/cairomm/fontface.h \ /usr/include/cairomm-1.0/cairomm/pattern.h \ /usr/include/cairomm-1.0/cairomm/path.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \ /usr/include/bits/inf.h /usr/include/bits/nan.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/bits/mathinline.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h \ /usr/include/pangomm-1.4/pangomm/layout.h \ /usr/include/pangomm-1.4/pangomm/tabarray.h \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility \ /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h \ /usr/include/pangomm-1.4/pangomm/layoutline.h \ /usr/include/pangomm-1.4/pangomm/layoutiter.h \ /usr/include/pangomm-1.4/pangomm/layoutrun.h \ /usr/lib/gtkmm-2.4/include/gtkmmconfig.h \ /usr/lib/gdkmm-2.4/include/gdkmmconfig.h \ /usr/include/atkmm-1.6/atkmm/object.h \ /usr/include/atkmm-1.6/atkmm/component.h \ /usr/include/atkmm-1.6/atkmm/relation.h \ /usr/include/atkmm-1.6/atkmm/implementor.h \ /usr/include/gdkmm-2.4/gdkmm/event.h \ /usr/include/gdkmm-2.4/gdkmm/window.h \ /usr/include/gdkmm-2.4/gdkmm/drawable.h \ /usr/include/pangomm-1.4/pangomm/glyphstring.h \ /usr/include/gdkmm-2.4/gdkmm/gc.h /usr/include/gdkmm-2.4/gdkmm/types.h \ /usr/include/gdkmm-2.4/gdkmm/rectangle.h \ /usr/include/gdkmm-2.4/gdkmm/region.h \ /usr/include/gdkmm-2.4/gdkmm/screen.h \ /usr/include/gdkmm-2.4/gdkmm/image.h \ /usr/include/gdkmm-2.4/gdkmm/visual.h \ /usr/include/gdkmm-2.4/gdkmm/colormap.h \ /usr/include/gdkmm-2.4/gdkmm/color.h \ /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h \ /usr/include/gdkmm-2.4/gdkmm/bitmap.h \ /usr/include/gdkmm-2.4/gdkmm/pixmap.h \ /usr/include/gdkmm-2.4/gdkmm/dragcontext.h \ /usr/include/gdkmm-2.4/gdkmm/pixbuf.h \ /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h \ /usr/include/gtkmm-2.4/gtkmm/stockid.h \ /usr/include/gtkmm-2.4/gtkmm/enums.h \ /usr/include/gdkmm-2.4/gdkmm/display.h \ /usr/include/gdkmm-2.4/gdkmm/device.h \ /usr/include/gtkmm-2.4/gtkmm/targetlist.h \ /usr/include/gtkmm-2.4/gtkmm/targetentry.h \ /usr/include/gtkmm-2.4/gtkmm/rc.h /usr/include/gtkmm-2.4/gtkmm/style.h \ /usr/include/gtkmm-2.4/gtkmm/object.h \ /usr/include/gtkmm-2.4/gtkmm/base.h \ /usr/include/gtkmm-2.4/gtkmm/iconsource.h \ /usr/include/gtkmm-2.4/gtkmm/iconset.h \ /usr/include/gtkmm-2.4/gtkmm/clipboard.h \ /usr/include/gtkmm-2.4/gtkmm/selectiondata.h \ /usr/include/gtkmm-2.4/gtkmm/menubar.h \ /usr/include/gtkmm-2.4/gtkmm/menushell.h \ /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ /usr/include/gtkmm-2.4/gtkmm/menu_elems.h \ /usr/include/gtkmm-2.4/gtkmm/menuitem.h \ /usr/include/gtkmm-2.4/gtkmm/item.h \ /usr/include/gtkmm-2.4/gtkmm/accelkey.h \ /usr/include/gtkmm-2.4/gtkmm/accellabel.h \ /usr/include/gtkmm-2.4/gtkmm/label.h \ /usr/include/gtkmm-2.4/gtkmm/misc.h \ /usr/include/gtkmm-2.4/gtkmm/imagemenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/radiomenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/checkmenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/radiobutton.h \ /usr/include/gtkmm-2.4/gtkmm/checkbutton.h \ /usr/include/gtkmm-2.4/gtkmm/togglebutton.h \ /usr/include/gtkmm-2.4/gtkmm/button.h \ /usr/include/gtkmm-2.4/gtkmm/radiobuttongroup.h \ /usr/include/gtkmm-2.4/gtkmm/tearoffmenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/separatormenuitem.h \ /usr/include/gtkmm-2.4/gtkmm/accelgroup.h \ /usr/include/gtkmm-2.4/gtkmm/menu.h /usr/include/gtkmm-2.4/gtkmm/main.h \ /usr/include/gtkmm-2.4/gtkmm/box.h /usr/include/gtkmm-2.4/gtkmm/stock.h \ /usr/include/gtkmm-2.4/gtkmm/stockitem.h \ /usr/include/gtkmm-2.4/gtkmm/image.h \ /usr/include/gdkmm-2.4/gdkmm/pixbufanimation.h \ /usr/include/gdkmm-2.4/gdkmm/pixbufanimationiter.h aboutbox.h config.h \ guitune.h /usr/include/gtkmm-2.4/gtkmm/table.h \ /usr/include/gtkmm-2.4/gtkmm/adjustment.h osziview.h \ /usr/include/gtkmm-2.4/gtkmm/drawingarea.h logview.h lcdview.h /usr/include/sys/types.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-64.h: /usr/include/bits/types.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/stddef.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/sys/stat.h: /usr/include/bits/stat.h: /usr/include/fcntl.h: /usr/include/bits/fcntl.h: /usr/include/bits/uio.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/sys/ioctl.h: /usr/include/bits/ioctls.h: /usr/include/asm/ioctls.h: /usr/include/asm-x86_64/ioctls.h: /usr/include/asm/ioctl.h: /usr/include/asm-x86_64/ioctl.h: /usr/include/asm-generic/ioctl.h: /usr/include/bits/ioctl-types.h: /usr/include/sys/ttydefaults.h: /usr/include/linux/soundcard.h: /usr/include/linux/ioctl.h: /usr/include/linux/patchkey.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/x86_64-linux-gnu/4.1.2/include/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/syslimits.h: /usr/include/limits.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/bits/posix2_lim.h: /usr/include/bits/xopen_lim.h: /usr/include/bits/stdio_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/float.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gerror.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/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/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/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/x86_64-linux-gnu/4.1.2/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-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/include/bits/sys_errlist.h: /usr/include/bits/stdio.h: /usr/lib/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/glib-2.0/gmodule.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/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/gtkmm-2.4/gtkmm/window.h: /usr/include/glibmm-2.4/glibmm.h: /usr/lib/glibmm-2.4/include/glibmmconfig.h: /usr/include/glibmm-2.4/glibmm/arrayhandle.h: /usr/include/glibmm-2.4/glibmm/containerhandle_shared.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstddef: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/algorithm: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algobase.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++config.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/os_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/cpu_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstring: /usr/include/string.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/climits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdlib: /usr/include/stdlib.h: /usr/include/bits/waitflags.h: /usr/include/bits/waitstatus.h: /usr/include/alloca.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iosfwd: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++locale.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cstdio: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++io.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/gthr.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-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/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cctype: /usr/include/ctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stringfwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/postypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwchar: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ctime: /usr/include/stdint.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/functexcept.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception_defines.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_pair.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cpp_type_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_types.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator_base_funcs.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/concept_check.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/debug/debug.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_construct.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/new: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/exception: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_uninitialized.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_heap.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tempbuf.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/memory: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/c++allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/new_allocator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_raw_storage_iter.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/limits: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/iterator: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ostream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ios: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/char_traits.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/localefwd.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ios_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/atomicity.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/atomic_word.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_classes.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/string: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_string.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/streambuf: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/streambuf_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cwctype: /usr/include/wctype.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_base.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/ctype_inline.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/codecvt.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/time_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/messages_members.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/basic_ios.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/locale: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/locale_facets.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/typeinfo: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/istream: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/istream.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stream_iterator.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/vector: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_bvector.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/vector.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/deque: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_deque.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/deque.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/list: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_list.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/list.tcc: /usr/include/glibmm-2.4/glibmm/refptr.h: /usr/include/glibmm-2.4/glibmm/ustring.h: /usr/include/glibmm-2.4/glibmm/unicode.h: /usr/include/glibmm-2.4/glibmm/wrap.h: /usr/include/glibmm-2.4/glibmm/debug.h: /usr/include/glibmm-2.4/glibmm/class.h: /usr/include/glibmm-2.4/glibmm/convert.h: /usr/include/glibmm-2.4/glibmm/error.h: /usr/include/glibmm-2.4/glibmm/exception.h: /usr/include/glibmm-2.4/glibmm/date.h: /usr/include/glibmm-2.4/glibmm/dispatcher.h: /usr/include/sigc++-2.0/sigc++/sigc++.h: /usr/include/sigc++-2.0/sigc++/signal.h: /usr/include/sigc++-2.0/sigc++/signal_base.h: /usr/lib/sigc++-2.0/include/sigc++config.h: /usr/include/sigc++-2.0/sigc++/type_traits.h: /usr/include/sigc++-2.0/sigc++/trackable.h: /usr/include/sigc++-2.0/sigc++/functors/slot.h: /usr/include/sigc++-2.0/sigc++/visit_each.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/functor_trait.h: /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h: /usr/include/sigc++-2.0/sigc++/functors/mem_fun.h: /usr/include/sigc++-2.0/sigc++/limit_reference.h: /usr/include/sigc++-2.0/sigc++/adaptors/deduce_result_type.h: /usr/include/sigc++-2.0/sigc++/functors/slot_base.h: /usr/include/sigc++-2.0/sigc++/connection.h: /usr/include/sigc++-2.0/sigc++/adaptors/adaptors.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind.h: /usr/include/sigc++-2.0/sigc++/adaptors/bound_argument.h: /usr/include/sigc++-2.0/sigc++/reference_wrapper.h: /usr/include/sigc++-2.0/sigc++/adaptors/bind_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/hide.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype_return.h: /usr/include/sigc++-2.0/sigc++/adaptors/retype.h: /usr/include/sigc++-2.0/sigc++/adaptors/compose.h: /usr/include/sigc++-2.0/sigc++/adaptors/exception_catch.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/lambda.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/base.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/select.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/operator.h: /usr/include/sigc++-2.0/sigc++/adaptors/lambda/group.h: /usr/include/sigc++-2.0/sigc++/functors/functors.h: /usr/include/glibmm-2.4/glibmm/main.h: /usr/include/glibmm-2.4/glibmm/timeval.h: /usr/include/glibmm-2.4/glibmm/exceptionhandler.h: /usr/include/glibmm-2.4/glibmm/fileutils.h: /usr/include/glibmm-2.4/glibmm/helperlist.h: /usr/include/glibmm-2.4/glibmm/containers.h: /usr/include/glibmm-2.4/glibmm/sarray.h: /usr/include/glibmm-2.4/glibmm/interface.h: /usr/include/glibmm-2.4/glibmm/object.h: /usr/include/glibmm-2.4/glibmm/objectbase.h: /usr/include/glibmm-2.4/glibmm/signalproxy.h: /usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h: /usr/include/glibmm-2.4/glibmm/propertyproxy.h: /usr/include/glibmm-2.4/glibmm/propertyproxy_base.h: /usr/include/glibmm-2.4/glibmm/value.h: /usr/include/glibmm-2.4/glibmm/value_custom.h: /usr/include/glibmm-2.4/glibmm/value_basictypes.h: /usr/include/glibmm-2.4/glibmm/quark.h: /usr/include/glibmm-2.4/glibmm/utility.h: /usr/include/glibmm-2.4/glibmm/iochannel.h: /usr/include/glibmm-2.4/glibmm/init.h: /usr/include/glibmm-2.4/glibmm/keyfile.h: /usr/include/glibmm-2.4/glibmm/streamiochannel.h: /usr/include/glibmm-2.4/glibmm/listhandle.h: /usr/include/glibmm-2.4/glibmm/markup.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/map: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_multimap.h: /usr/include/glibmm-2.4/glibmm/miscutils.h: /usr/include/glibmm-2.4/glibmm/module.h: /usr/include/glibmm-2.4/glibmm/optioncontext.h: /usr/include/glibmm-2.4/glibmm/optionentry.h: /usr/include/glibmm-2.4/glibmm/optiongroup.h: /usr/include/glibmm-2.4/glibmm/pattern.h: /usr/include/glibmm-2.4/glibmm/property.h: /usr/include/glibmm-2.4/glibmm/random.h: /usr/include/glibmm-2.4/glibmm/shell.h: /usr/include/glibmm-2.4/glibmm/slisthandle.h: /usr/include/glibmm-2.4/glibmm/spawn.h: /usr/include/glibmm-2.4/glibmm/stringutils.h: /usr/include/glibmm-2.4/glibmm/thread.h: /usr/include/glibmm-2.4/glibmm/threadpool.h: /usr/include/glibmm-2.4/glibmm/timer.h: /usr/include/gtkmm-2.4/gtkmm/bin.h: /usr/include/gtkmm-2.4/gtkmm/container.h: /usr/include/gtkmm-2.4/gtkmm/widget.h: /usr/include/pangomm-1.4/pangomm/context.h: /usr/include/pangomm-1.4/pangomm/fontdescription.h: /usr/include/pangomm-1.4/pangomm/fontmetrics.h: /usr/include/pangomm-1.4/pangomm/fontset.h: /usr/include/pangomm-1.4/pangomm/language.h: /usr/include/pangomm-1.4/pangomm/font.h: /usr/include/pangomm-1.4/pangomm/rectangle.h: /usr/include/pangomm-1.4/pangomm/glyph.h: /usr/include/pangomm-1.4/pangomm/coverage.h: /usr/include/pangomm-1.4/pangomm/fontmap.h: /usr/include/pangomm-1.4/pangomm/fontfamily.h: /usr/include/pangomm-1.4/pangomm/fontface.h: /usr/include/pangomm-1.4/pangomm/item.h: /usr/include/pangomm-1.4/pangomm/attributes.h: /usr/include/pangomm-1.4/pangomm/color.h: /usr/include/pangomm-1.4/pangomm/attrlist.h: /usr/include/pangomm-1.4/pangomm/attriter.h: /usr/include/pangomm-1.4/pangomm/types.h: /usr/include/cairomm-1.0/cairomm/context.h: /usr/include/cairomm-1.0/cairomm/surface.h: /usr/include/cairomm-1.0/cairomm/enums.h: /usr/include/cairomm-1.0/cairomm/exception.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/stdexcept: /usr/include/cairomm-1.0/cairomm/fontoptions.h: /usr/include/cairomm-1.0/cairomm/refptr.h: /usr/include/cairo/cairo-pdf.h: /usr/include/cairo/cairo-ps.h: /usr/include/cairo/cairo-svg.h: /usr/include/cairomm-1.0/cairomm/fontface.h: /usr/include/cairomm-1.0/cairomm/pattern.h: /usr/include/cairomm-1.0/cairomm/path.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/valarray: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/cmath: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/huge_valf.h: /usr/include/bits/huge_vall.h: /usr/include/bits/inf.h: /usr/include/bits/nan.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/bits/mathinline.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/cmath.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/numeric: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_numeric.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_array.tcc: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_before.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/slice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/valarray_after.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/gslice_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/mask_array.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/indirect_array.h: /usr/include/pangomm-1.4/pangomm/layout.h: /usr/include/pangomm-1.4/pangomm/tabarray.h: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/utility: /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/stl_relops.h: /usr/include/pangomm-1.4/pangomm/layoutline.h: /usr/include/pangomm-1.4/pangomm/layoutiter.h: /usr/include/pangomm-1.4/pangomm/layoutrun.h: /usr/lib/gtkmm-2.4/include/gtkmmconfig.h: /usr/lib/gdkmm-2.4/include/gdkmmconfig.h: /usr/include/atkmm-1.6/atkmm/object.h: /usr/include/atkmm-1.6/atkmm/component.h: /usr/include/atkmm-1.6/atkmm/relation.h: /usr/include/atkmm-1.6/atkmm/implementor.h: /usr/include/gdkmm-2.4/gdkmm/event.h: /usr/include/gdkmm-2.4/gdkmm/window.h: /usr/include/gdkmm-2.4/gdkmm/drawable.h: /usr/include/pangomm-1.4/pangomm/glyphstring.h: /usr/include/gdkmm-2.4/gdkmm/gc.h: /usr/include/gdkmm-2.4/gdkmm/types.h: /usr/include/gdkmm-2.4/gdkmm/rectangle.h: /usr/include/gdkmm-2.4/gdkmm/region.h: /usr/include/gdkmm-2.4/gdkmm/screen.h: /usr/include/gdkmm-2.4/gdkmm/image.h: /usr/include/gdkmm-2.4/gdkmm/visual.h: /usr/include/gdkmm-2.4/gdkmm/colormap.h: /usr/include/gdkmm-2.4/gdkmm/color.h: /usr/include/gdkmm-2.4/gdkmm/rgbcmap.h: /usr/include/gdkmm-2.4/gdkmm/bitmap.h: /usr/include/gdkmm-2.4/gdkmm/pixmap.h: /usr/include/gdkmm-2.4/gdkmm/dragcontext.h: /usr/include/gdkmm-2.4/gdkmm/pixbuf.h: /usr/include/gdkmm-2.4/gdkmm/pixbufformat.h: /usr/include/gtkmm-2.4/gtkmm/stockid.h: /usr/include/gtkmm-2.4/gtkmm/enums.h: /usr/include/gdkmm-2.4/gdkmm/display.h: /usr/include/gdkmm-2.4/gdkmm/device.h: /usr/include/gtkmm-2.4/gtkmm/targetlist.h: /usr/include/gtkmm-2.4/gtkmm/targetentry.h: /usr/include/gtkmm-2.4/gtkmm/rc.h: /usr/include/gtkmm-2.4/gtkmm/style.h: /usr/include/gtkmm-2.4/gtkmm/object.h: /usr/include/gtkmm-2.4/gtkmm/base.h: /usr/include/gtkmm-2.4/gtkmm/iconsource.h: /usr/include/gtkmm-2.4/gtkmm/iconset.h: /usr/include/gtkmm-2.4/gtkmm/clipboard.h: /usr/include/gtkmm-2.4/gtkmm/selectiondata.h: /usr/include/gtkmm-2.4/gtkmm/menubar.h: /usr/include/gtkmm-2.4/gtkmm/menushell.h: /usr/include/gtk-2.0/gdk/gdkkeysyms.h: /usr/include/gtkmm-2.4/gtkmm/menu_elems.h: /usr/include/gtkmm-2.4/gtkmm/menuitem.h: /usr/include/gtkmm-2.4/gtkmm/item.h: /usr/include/gtkmm-2.4/gtkmm/accelkey.h: /usr/include/gtkmm-2.4/gtkmm/accellabel.h: /usr/include/gtkmm-2.4/gtkmm/label.h: /usr/include/gtkmm-2.4/gtkmm/misc.h: /usr/include/gtkmm-2.4/gtkmm/imagemenuitem.h: /usr/include/gtkmm-2.4/gtkmm/radiomenuitem.h: /usr/include/gtkmm-2.4/gtkmm/checkmenuitem.h: /usr/include/gtkmm-2.4/gtkmm/radiobutton.h: /usr/include/gtkmm-2.4/gtkmm/checkbutton.h: /usr/include/gtkmm-2.4/gtkmm/togglebutton.h: /usr/include/gtkmm-2.4/gtkmm/button.h: /usr/include/gtkmm-2.4/gtkmm/radiobuttongroup.h: /usr/include/gtkmm-2.4/gtkmm/tearoffmenuitem.h: /usr/include/gtkmm-2.4/gtkmm/separatormenuitem.h: /usr/include/gtkmm-2.4/gtkmm/accelgroup.h: /usr/include/gtkmm-2.4/gtkmm/menu.h: /usr/include/gtkmm-2.4/gtkmm/main.h: /usr/include/gtkmm-2.4/gtkmm/box.h: /usr/include/gtkmm-2.4/gtkmm/stock.h: /usr/include/gtkmm-2.4/gtkmm/stockitem.h: /usr/include/gtkmm-2.4/gtkmm/image.h: /usr/include/gdkmm-2.4/gdkmm/pixbufanimation.h: /usr/include/gdkmm-2.4/gdkmm/pixbufanimationiter.h: aboutbox.h: config.h: guitune.h: /usr/include/gtkmm-2.4/gtkmm/table.h: /usr/include/gtkmm-2.4/gtkmm/adjustment.h: osziview.h: /usr/include/gtkmm-2.4/gtkmm/drawingarea.h: logview.h: lcdview.h: gtkguitune/ChangeLog0000644000175000017500000000207711064666134013475 0ustar flohflohnew in gtk2-0.8 --------------- * changes by Neil Roberts (bpeeluk@yahoo.co.uk) - convert to gtk2mm - non-blocking I/O with a Glib::IOSource - Reorganise the drawing of the custom widgets - Adapted the layout to use Gtk::Table - Redesigned the logo as an SVG and set it to be the app icon new in 0.7 ---------- * record input selector in menu new in 0.6 ---------- * options and rc code added * options for sampfreq, sampnr, audiodevice, windowsize, trigger * adaptive sample scaling in osziview * bugfix '4' in lcdview had upper horizotal bar set * full schmidt trigger before actual freq measurement * going from pos level1 trigger to neg level2 trigger * S16 support for better resolution (even on small signals) new in 0.5 ---------- * sample frequency adjustable up to 48000 Hz (instead of 44000) * bugfix for newer OSS, which don't support small fragments * About-Box new in 0.4 ---------- * trigger defaults to 0.6 * pointer in logview better visible * update of logview when scale changed in menu * "text_width" replaced by "string_width" gtkguitune/NEWS0000644000175000017500000000000111062733003012367 0ustar flohfloh gtkguitune/osziview.o0000644000175000017500000055120011064666204013755 0ustar flohflohELF>H~@@B?!#%')+-/0HOw(LJLJ~51ҐD ;~D ;}BH9G(΋tQLJ1)1);~ Ãt LJËW(LJLJ~/1DQ;~;}BH9G(Ӌt_LJ3)=~3);RÉLJf.USH_DO(EHE1E1fD1F1)D9~ DMAHE9uHE1E11F1)D9~DNAHE9uA*A*GHA YYXX,D,A)…LJCA9O(HA HA9t BAA9}IcHAA9 BA9 HD;G(|A@DD;G(DIc1E1HTB1A9@ƃH9O(~-tBA9A9~߉A1H9O(Ӌ;A*fXDO(EHE1E11Ɖ1)D9~fDOAHE9uHE1E11Ɖ1)D9~fDHAHE9uA*A*GHLJ YYXXD,D,Aڅ>CA9:O(.HA @HA9t BAA9}IcHCAA9 BA97HD;G(|(DtZ;fW+*^f. szHV瞯 $ >   I : ; : ;I8 : ;I  : ;  : ; : ; I : ; I8 I!I/ &I : ; : ; 9: ; : ; : ;<  : ; ( <  : ; I8 2 .? : ;< I4 I : ; 4: ; @I? < !9: ; ":: ; #9: ; $.? : ; I< %.? : ;I< &&' : ; I8 (I)*.? : ;I< +.? : ;< ,.? : ;I< -.? : ; @I< ..? : ; I< /0G : ; 1G : ; 2.? : ; < 3.? : ; @I< 4.? : ; @< 5.? : ; @< 6 I7.? : ; < 84: ;@I? < 9 : ;I8 2 :.? : ;@I2 < ;.? : ;@2 < <.? : ;@I2 < =.? : ;@I< >.? : ;@I< ?.? : ;@< @.? : ; @I2 < A.? : ;@I< B.? : ; @I< C4: ; @I? <  D4: ; @I? <  E4: ;@I? 2 < F< G.? : ;@I< H.? : ;2 < I.? : ;@2 < J.? : ;@2 < KG : ;L.? : ;2 < M.? : ;< N!OPIQ5IR4: ; @I? <  S : ; I8 2 T4: ; I< U4: ; I<  V.? : ; @I< W9: ; X : ; Y( Z.? 4 < [.? : ; L < \.? : ;@IL M 2 < ].? : ;@L M 2 < ^.? : ; @2 < _.? : ; @2 < `.? : ;@< a.G bI4 c.? : ; I d: ; Ie: ; If4: ; Ig h.G@ iI4  j4: ; Ik4: ; Il.G@m1X Y n1o1X Y pI4 q: ; Ir: ; Is.1@t1u1UX Yv1X Yw x41y4: ; Iz4: ; I {41|1X Y }1UX Y ~4: ;I4: ;I 4: ;I4: ;I 1UX Y1UX Y 1X Y U1X Y: ;I: ;I1 4: ; I 4: ; I? < 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < 8,minttttt .  m##### #(#0#8#@#H#P#X#` #h"m#p&m#t({#x,F#-T#.#2#;#D#E#F#G#H-#Jm#L# > cM ._1M ._2P Q R Nm# S# 1._3 {# #7??HB M# M# # # # # m# XFmt std6+7-X Z ] _ b  i@  ji  n  o/  pG  q_  rw  t  v  w  y  |  }&  ~U  w        @ X  ˒  ͵ έ     t 0 R ؑ d e g h i j* kB lY mq n o s t v w< xd z| { | }     4 H a       0 M t:;<C D E"GHIJK6LXM{NOH2Ol:]9[8Tp -Zv¶<Tvɘʺ*Fb~   F6a#6#6 G7   Gk  G GQS;T;\;e;h<i2<o I I # A! ."/ #+$  kmBB$  o-B-$  ȰB%  m$9  C9 m-? &i  c dm#'rem em#  k lt#'rem mt#  w x #'rem y #=M4m   ( m9 9 %(  xm( . )%G  $B%_  mB%w  tB%  9 9 -- * div !@ mm+  [%  B%  #i tt%&  jmB-%H  v-H B-N %w  nmH B-+  -- , m%  Y-+  M%  H$B % MtB m%@ S8B m%X mB%z z-z-N % qmN ! -abs  -div   % *   %0  B%R } B m%t  B m% ]B % cB + m%   + $ m%* m%B m$Y m%q m% m% m$ BB% a---$ BB%< mtm%Y mY_%| t% m.)m% + B% mm$Bmm$ mB$4 mBB+H +a -% 2mm-. $ % Ymm$"mBS% em-B/%0 mB%M mB%t im-B% mBB`5 8# 9# ?# E# F# G#( H#0 I#8 J#@ K#H L#P M#Q O#R Q#S S#T U#U \#V ]#W `#X b#Y d#Z f#[ m#\ n#]$}mB. tm8 m# m# m# m# m# m# m# m# m# t#( B#03/ . $$  $ "$0 0 $MMS"%ppv $p$p$--BM_%&m%  %2H H m %ON  %lmz %fm m%nm z/%m z/% ,% V-B- %:4-H B- %R.mRX%a-H M- %N  %N %ymH -z/%mzz/% %9m z%[m z%mH -z%mzz%mz%mz%8-N  $H H z$8mzz$Tmzz$pH H z$-zz%8-H -zM$-z$H H z-$ mzz-$-H H z-%Tg-T- z$v-zz%($zH %7z$H H z%,tzm%08zm$<-H z-%T*m%v mzz-%H H z-%H H z-%H H N -%tmz/%mz/$*H zN $FH zz$bH zN $~H zz%H zN -%<z% zm% zm0z@1>732)7AJ2B7CJP2\7HJm3}7K[>37NB[D37SJ89 47]J837a-[4$7gJD57kJ66H 6V V151 #28a28c78ima6a62!m125886 296#:K 62:n 62: 622: 6 2: 6$2; 6(2: !6/-28B;3!67288B:[!6?-288:~!6G2B;!6PB8;!6YB8;!6b8; "6u;-"6y;P"6};s"6BB;"92888;"92<62+"622"922#92223#922882[#922882~#92B82#92B2#928+#62m=#6222=$622B=@$622=]$62=z$62>$end62>$end6"2=$6+2=$642= %6=2=(%6F2=E%6N-2=b%6T-2=%6Y-2?%9m28?%6t28=%6|-2?%928?&62=1&62=S&6D28=u&6>28>&at6D28>&at6>28=&6222=&622B='622=?'9I222=k'9Z22288='9.22B8='6322B='9228?'6V23(9222=F(6t22288=m(922B8=(622B=(6228?(628=)62282=6)6228288=b)9l228B8=)6228B=)622288=)6C2=*6[2288=%*6k2=L*62=x*622882=*62288288=*92288B8= +62288B=<+622888=h+6222=+622B8=+6+22B=+6@228=',6d22=X,6o22BB=,6y22=,622:,922888:-92288B8@D-98=p-9-288?-922=-6B2=-6B2=-6a2=.9-2B88=8.6-228=_.6(-2B8=.9-28=.6F-228=.9-2B88=/6b-2B8='/9-28=N/6-228=z/9-2B88=/6-2B8=/6-28=/6-228=09(-2B88=B06-2B8=i06-28=06-228=09=-2B88=06-2B8= 19I-28=1165-228=]19T-2B88=16R-2B8=19i-28=16r288=16m22= 29}m2882=V29m288288=x29m2B=29m288BA9m288B8-2' 6' 626173! 6 6-# 6-# 6#14' 63# 9?2 9DH 9P4B62336533654362436244628314623W462=}492884462?4923462A9]285-573181DC1iC1jC1kC1lC1mC1nC1o Dall1q?918#E1!8E1$8E1*8E19/6E1cFid2H61|$82a61$8*82z61$8B261$8*8Bm261$8*8*8m261$8m361*8$8*85<3"716583C7158*83d7158*8=715*8G1*8H71=$88I1@I1C:71FmmJ1I$8*8*8m588B5608508K8/6191-#E1;8188L8id188M8id18A1-8;868;88K;5(191#91;#91-#91;#91 # E1;E1;E1;E1;E1;E1;E1;;918;918H:1 8;-H?:1 8B-HZ:1 8-Hv:18mH:18;;:18;::18;:1!8;m;;1$8;;;:;1'8;8;^;1*88;J128;-;;6;8N;;N;86;8;B8;;b$;m;$<;$2<;B$I<;BK<K I 8I <8I BAI U U Kj>:z9:|#+<:j>+<:j>p>= =:>{>=(=:{>=E=:>j>=g=:<j>m==:>j>==:<j>m==:>{>>==:>j>>= >:<{>>=.>:>j>>=P>:<{>>A:p>{><6v>><6<6>+6+ T+!?+#F+(M)+t,m->0F182MHR2?8?OC??I?> Z??>#>#*#??*- *.?#'len*/?#>>?D">C?@C C ?# C!># C"?#B/$@*@(9@??^@B1BC>BDt@BE@BH@ABJ BKA# BLA# BMA# BNA# BOA# BPB#( BQ!B#0 BR!B#8 BT7B#@ BW\B#H BX!B#P BYwB#X BZB#` B\B#h BdB#p Be( #x Bf2?# Bg( # BiB# Bj2?# BlC#PA^@AOAAA(A>AAP Bi@BO!B BBO7B BA'B(VB> BAVBN?=B(qBqB'?z@bB(B?qB}BOBqB?BOB@??>>9@?BB?BOB?9@B(C>??B@"#C/C(>C>?L"ICrCL% L&?# L'rC#>CKCKCWD`K' K)?# K*E# K,E# K-?# K/E# K1>#( K2?#, K3?#0 K5rC#8 K7"E#@ K8"E#H K:?#P K;?#XKbDDK?'refK@2?# KA2?#'getKEHE#K DE0KK KMsE# KNE# KQE# KRE# KUE# KVNE#(K")CWDDxCCOBE?"EBE?E(EKH( (mE>"EmE>YE(E>"EyE(E>"EE?EOE"EE;>C/\?/cEF/p /rE#/e F&F/u /w&F#EQ??:YY-E=I0?YY-=J0FYYY=8J0GYYB=ZJ0HYYE=|J0IYY?J0JYE?J0KY=J0MYYY=K0NYYY--=-K0OYYB-=OK0PYYB=vK0QYY-E=K0RYY-=K0YYY-Y=K0ZYY-Y--=!L0[YY-B-=HL0\YY-B=tL0]YY--E=L0^YY--=L0`FYFE=L0aFYF?M0bYF-E?>M0cYF-=jM0jYY--Y=M0kYY--Y--=M0lYY--B-=M0mYY--B=.N0nYY---E=_N0oYY---=N0qYYFFY=N0rYYFFB-=N0sYYFFB=O0tYYFF-E=JO0uYYFF-?cO0|Y=O0}YY--=O0~YY=O0FYF=O0FYFF=P0mYY=4P0mYB=`P0mY--Y=P0mY--Y--=P0mY--B-=P0mY--B=Q06Y=-Q06Y=OQ0EY->pQat0EY-=Q0GY--=Q0FY>Qend0FY=Q0FY> Rend0FY=(R0o Y=ER0o Y=bR0u Y=R0u Y=R0-YY-=R0-YB--=R0-YB-= S0-YE-=GS0-Y-=nS0-YY-=S0-YB--=S0-YB-=S0-YE-=T0-Y-=6T0-YY-=bT0-YB--=T0-YB-=T0-YE-=T0-Y-=T0-YY-=*U0-YB--=QU0-YB-=xU0-YE-=U0-Y-=U0-YY-=U0-YB--=V0-YB-=@V0-YE-=gV0-Y-=V0-YY-=V0-YB--=V0-YB-=W0-YE-=/W0-Y-=LW0Y=iW0-Y=W0-Y=W0-Y?W0Y-E?W0Y-=X0-Y=#X0-Y?AX0Y-=^X06Y>{Xraw0YY=X0BY=X0BY=X0-Y--=X0%Y= Y0(YY=BY0+YZ=_Y03Y=Y06GY~F=Y0CGY=Y0JGYA0QGYG6YG6G6Y6Y6F6F1[F0eS0{<#+9Z0[+SZ0[#[3oZ0pE.[3Z0rY[3Z0s)[[m3Z0tY[3Z0u)[[m+[0[<A0<.[ Z6)[ Z)[>!L[ #!(&W[[(T'x(Um#'y(Vm# (Wm# (Xm# !Q\"&T#4U#5^*h/?U#6^dHI?U#7^~?U#8^?U#9^333333?U#:^Hգp= ?U#;^S?1k^[)SL[#2\4k^2\5k^mmmm2\6k^q^4\;k^m4\@k^m4]Ek^m45]Jk^m3Q]Om|^3m]Tm|^3]Ym|^3]^m|^3]em|^3]lm|^3]sm|^3^zm|^36^|^^3R^^k^Vq^|^Q\w^L[^Q\6^L[$#$WAtk%.-A^^-'x->#'y-># -># -># -\^B_ .+ .,>#'red.-># ..># ./>#-bM_n_>1 >21F#-hS_^B_n_=,__8= = _#= _#= >#= ^#=_#(=>#0`=o      !"#aGdk&=FGC16c`A(SA<^#BA.E2XaA16c2qaA36c3UbAIMc3qbAKmMc4bAL6c3bAMmMc4bAN6c3bAOmMc4cAP6c3cAQmMc5AR6caBc^^Sca6a6Sc1f`,0S,My_#B,6E2c,:fy_2c,<ff3c,=fff2d,?fm4d,Aff3;d,Dy_f3Wd,Ggg3sd,Jy_g2d,Wf2d,_fY4d,df>4d,ef$4e,lf>>>4(e,sf$$$4Oe,uf$$$4ve,vf$$$-eset,fY3e,fY3e,>g3e,>g3 f,>g4)f,f>4Ff,f>4cf,f>4f,fg3f,?g3f,$g3f,$gV,$gdc6fdc6dc g^f6gF6&gF=gGtk'_Xk)Fkg)2YU86g#S)4u#S)5u# S)6m#(S)7$#0S)8m#8S)8m#<S)8m#@S)8m#DS)9$#HS):k#PS);dc#XS)dc#pS)?dc#xS)@dc#S)Adc#S)BSg#S)Cm#S)Dm#S)Em#S)Fm#S)Gm#S)Hm#S)Im#S)Jm#S)K$#Z9iumuu2Yi+umu[~iACgumu3i)$u4iu1m?iuvm?iu$?ju$?9jum=Vj$u?oj u?j/u\j}Cgu=g]jCgu^ju^ku;!k;u^:kFu^Sknu^lku_u9 m1lF4Sl#2kl2klm2kll2lll4$lll3Ellll=gl ll=lll3lll=ll`lak6lk6kl1GnF4SGn#2*mMn2DmMnm2]mMnGn2vmMng4mMnSn3mSnMng=m Yng=mYng3nGnYn=1nYn`Mnal6lg1oF4So#2no2nom2noo2no g4noo3ooo g=:o o g=\oo g3xooo=oo`o a_n6_n&g1(qF4S(q#2o.q2 p.qm2%p.q(q2>p.q4q4[p.q?q3|p?q.q4q=p Eq4q=pEq4q3p(qEq=pEq?q.q7.q gao6:qo6o:q1rG4Sr#2zqr2qrm2qrr2qrr4qrr3rrrr=&r rr=Hrrr3drrr=rr?rr7rlraKq6rKq6Kqr1$tF4S$t#2s*t2!s*tm2:s*t$t2Ss*t0t4ps*t;t3s;t*t0t=s At0t=sAt0t3s$tAt=tAt`*t[r66tr6r6t1uF4Su#2vtu2tum2tuu2tuu4tuu3uuuu="u uu=Duuu3`uuu=}uu?uu7u0tu[Gt6uGt6Gtu[?Cguu&6uCgu v[a$vR^b$v|^cDvAbs7mdx7maYv\obYvoasvlbsvlavsbvAtavlbvevfvlllavlbsvav]b$vga wm]b$vh\w!kwi\wUjiHmfI<kJuulx:ki\wUjt1qmjt2qmjA1qmjA2qmjtcqmjiqmkqmkrufs<m'x)vzn:vmHx)v|n:vmix)vn:vo)vn:vlxSkp\whx9jwi\wUl&ylkp\wqptr9 rmaEykbvbanyYib\wbbnyusyEytOymy&yDn0yo&yDn0ysFzEytOytcym(z&yDn0yo&yDn0yszEytOymz&yDn0yo&yDn0yaznbzbol{jp\wuzvza?{qb?{dsrcD{.q ga{{$lbvdsrc{{fkwxvla{kbvdsrc{la{ob?{ba{rb{dsrc{rla |zqb{bl7jp\wjimyx1myx2mjy1mjy2mf<zu~m|{n3{n){mB}I{n]{nS{xh{m}{n{m*}vnv{v|&y|&ymz}{n{|zm}{n{n{o^vnhv|zm ~{n{mO~{n{n{o^vnhv|zm~{n{|z}~{n{|&ym~{n{|z|zo{n{aWubWdsrc\u0tavtbWbasbb*tlkp\w~i=$~j=$~di>$~dj>$~dim?$str@~Omer|y{Un{n{^vnhvvzU{Un{{^n{n{^vnhvvz^{^n{ipQ\|f{ln{n{^vnhvvzl{ln{7xnKnA{xn{n{^vnhvvxnwvzxI{xn{axnkvy{Dn3{n){8I{Dn]{nS{xh{m{n{m vnv{v|&yv&yDs{Dn{vzDvzUƃ{Un{݃{^n{uyvzx${xn{Gaxnkvzl{ln{vz^vzDՄ{Dn{v&yDclvojp\w]3avz7vz7lVjp\wԅ%a@vz+vz+h)iwp\w$hejwp\wmhiwp\wf$lip\wsvml3ip\wqs1rmaHkbva]mb]Yna*mbbMna9ib\wbbusՈtm3+t=|b/|b0|b1|b2|b3|b4|b5|b5o&y>n0ysttm*3+=}|b/|b0|b1|b2|b3|b4|b5m&y>n0y|b5l jp\wkmkmt1m~t2m~}{n{n{o^vnhv|zmڊ{n{m{n{n{o^vnhv|zmU{n{m{n{n{o^vnhv|zmЋ{n{m{n{n{o^vnhv|zmK{n{ml{n{}{n{|z|zmЌ{n{|zm{n{|zl]jp\w}=g::  Bo@Bq>;E2  Bo@Bq>C?; 4[E2[[*h/?[dHI?[~?[?\333333?&\Hգp= ?;\S? 4? AFE@FFFF'F(F+F`FaFd6 2 9?2 9DH 9P486 2 9?2 9DC1jC1kC1lC1mC1nC1o E1*8zE1czE1;E1;E1;E1;E1;E1;E1;G,decG,G,hexG ,G,G, octG,@G,G,G ,G$,G',G*,G-, G1,@G4,G7,JG:, GLGOGTGW inGvoutGy curG"H3H4H5H6H7H8 H9@H: CH;CH<H= 8IB8IB8I <8I B8I8I8I8I8Iy8Iy8Iy8IyR02DEJ  /usr/include/glibmm-2.4/glibmm/usr/include/pangomm-1.4/pangomm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/include/sigc++-2.0/sigc++/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/gdkmm-2.4/gdkmm/usr/include/gtkmm-2.4/gtkmm/usr/include/pango-1.0/pango/usr/lib/glib-2.0/include/usr/include/gtk-2.0/gdk/usr/include/glib-2.0/gobject/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/extosziview.ccresources.hrefptr.hrectangle.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h_G_config.hwchar.hstdio.hclocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.hcontainerhandle_shared.hmarkup.hcontainers.hgtypes.htype_traits.h trackable.h fontdescription.hfont.henums.h component.h types.h stockid.h pango-types.hosziview.hgarray.hglibconfig.hcolor.h gdktypes.hgdkcolor.hgtype.hustring.hlocale_classes.hatomic_word.hgthr-default.hpthreadtypes.hstringfwd.hbasic_string.hnew_allocator.hallocator.hbasic_string.tccstl_iterator.hgunicode.hunicode.hgdkevents.hgdkdrawable.hgobject.hgdataset.hrectangle.h gthread.hgerror.hgquark.hgstrfuncs.hlimitsios_base.hctype_base.hlocale_facets.hmain.hgmain.hgslist.h cM:u/\eg#zt :g/H\eq(  J vf'M<[<ͤYeIKIz-gCL*vhgƻLw XR<g<[<1X[IKIYH( w JgׁN,uuq vLSm5X >Y=.TZH>,>YKu~J"VExtVLEY["VExZ~Yt~~J~ .wJ  UMG[g :Z/p:YKXJYYY0_,t:Z/tkNYzV,t:Z/^]Y!;eKAw'@[JYee<6?=uKh:L<~'X~X,<:/~Y<g;Y9~'X~X,<:/~Y9;6~iX~X,<:/~oYׁ~<~/~0X}Xt,<:/~Y~.YR)xt:/~YYXXYYX~XY~f~.IW/K~֑~t" x=WY/NYt"rv:Z:vZ;0==sh0Z;0==W~tO~nZVLHY~MY~VY~RYRYRYRY򟟪MU+>wv~ZVLHY~MY~SY~RYRYRYRY򟟪MUXXwC3E#>;uFX:Jr<:Z/ K-K;RY.;uD,t:Z/K-K;PY1Y[;,t:Z/uW=;W=EY;;,t:Z/g=;W=CY=BJs)X>[u?V瞯<$@?@4@?@@LIzHD,8DMV_hq90<HQZcluD,8DMV_hq,oVY8Zg X  Uc           >  J9U"  n#<I                                  L #du                                L e8DElGLIzHSans 8 %.0fblackcyanredgreen#B8B8B8#666gray@@@ @@@@ @@@@ @@@@ @@ @P PP P 8OsziViewx $ AGA$TJL $AFG $UBAD $AFG JG0<BFB B(A0D8G<w BBB B(D0A8G$ADD`$ADDP   $ZEJJ RJG <BIB B(A0G8G<BFB B(A0D8M<,BFB B(A0A8J$fJL zPLRx $< AG\A|TJL $AFG $UBAD $AFG ,JG04LBFB B(A0D8G4w BBB B(D0A8G$ADD`$ADDP  $ < TZEJJ tRJG 4BIB B(A0G8G4BFB B(A0D8M4,BFB B(A0A8J<fJL /5PYrPPP P hRRpR{RwwwTpYdYtY1pZ$dZtZ[PPmp[[PP/d[t[ZP1PmqPPZP$PWX XdXYXXPR P "R"&P&bRbbXbpP}YXXXPRP R  P XR$(P(EREIPIdRddYktXYXpT TdTS SwwUSUw$w UST]Q\01w17w7>w>w 0\U\SSwww% w UpSt% STqVt% V0 1 w1 7 w7 > w> w 0 \ U\ S U S w ` w0 U  S) 5 S? E S` b wb h wh j wj l w l m w(m q w0q x w8x w` U V#&VDJVx{V}VVVV: "_<D_}_B #~<D~}~B #~<D~}~  Q  Q  Qwwww w(w0w8gw+U+\\U\\ \nq\sv\x{\\\\\\\\  \+.\MS\T{{{x{x{{|{{|{ {2c{c{ {{||{| |Ia{aa{ {{ {SmQmQQpqwquwuywyWwp~U~VV`awaeweiwi'w`nUnxVyV0:U0:a@KU@KTPZUPZa`ywyw `~U~SUS`~T`rQrVVww USUSTQVV "w"+w+-w-/w /0w(07w07>w8>#w 6U6)"V2"#V2"}7"#}##w##w##w##w ##w(##w0##w8#(w##U#'V'(V##T#k$S''S' (Sr((S((w((w((w((w ((w(((w0((w8(,w((U(+S,A,SY,,Sv)~)Q**2*Q++R++R,-w-V-w ,-U-G-V,-T-B-SK wOsziView::calc_minmaxawOsziView::calc_freqxOsziView::recalcxOsziView::getTrigFactxOsziView::copy_sample_datasyOsziView::~OsziViewyOsziView::~OsziViewFzOsziView::~OsziViewzOsziView::on_realize |OsziView::paint_sampleOsziView::paint_scaleOsziView::invalidate_samplevOsziView::invalidateOsziView::setTrigFact)OsziView::setAdaptiveeOsziView::setSampleFreqOsziView::setSampleDataOsziView::setSampleDataOsziView::OsziViewՈOsziView::OsziViewOsziView::paint_marks OsziView::on_expose_event,V- & 0  " <D=BGg=BGJEJOoEJOR`a{W 'W\hW\hkW{/6W'))")<)),A,Y,j,llabs_ZNK4Glib6RefPtrIN3Gdk6WindowEEcvbEv_ZNSt10ctype_base6xdigitEoperator==_ZNSt8ios_base6eofbitE_S_octstrtodstrtof_ZN4Glib7ustringaSERKSs_IO_buf_endstrtol_ZNK3Gdk5Color9get_greenEvgetwc_GMutex_ZNK4Glib7ustring7compareEmmPKcmi_divisorprintg_ascii_table_ZNK4Glib6RefPtrIKN5Pango6LayoutEEcvbEv_ZNKSt6locale4nameEv__gthread_once_tLayoutswprintf_ZNKSs5rfindERKSsmmbsinitfrac_digitsfailbitthread_equalGObject_ZNSt6locale5_ImplaSERKS0__ZN8OsziView17invalidate_sampleEv_M_index_GdkRectangleGData_ZNK5Pango9Rectangle12get_lbearingEvvfscanf_ZNK5Pango9Rectangle4gobjEv_M_check_same_nameSampFmt_ZNK9__gnu_cxx17__normal_iteratorIPcSsE4baseEv_ZNSs7reserveEm_ZN5Pango9Rectangle5set_yEioperator bool_ZN4Glib7ustring6rbeginEv_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6__ZNSt6locale10_S_classicE_ZN4Glib7ustring7replaceEmmPKcmremove_ZNKSs11_M_disjunctEPKcsize_tbool_ZNSs4_Rep7_M_grabERKSaIcES2__M_copyrect_ZNK4Glib6RefPtrIN3Gdk8DrawableEEptEvfread~localesnprintf_ZNSt10ctype_base5upperErecalcGDK_BUTTON_RELEASEatexitatofatoiatol_ZN4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEE_ZNK3Gdk9Rectangle4gobjEvget_width_M_install_facet_ZN8OsziView13setSampleDataEPKhi_ZNSs4_Rep10_M_destroyERKSaIcErend_ZN3Gdk5Color9set_rgb_pEddd_ZNSs6insertEmPKcmguint8_ZNKSs6lengthEv_ZNK4Glib6RefPtrIN3Gdk6WindowEEptEv_ZNKSs5beginEvfind_first_ofn_cs_precedesasctimewcstombsGdkColor_S_right_S_empty_rep_ZNSt6locale13_S_initializeEv_ZNK4Glib7ustring9uppercaseEv_ZNKSs5rfindEPKcmm_ZN4Glib7ustring4swapERS0__ZN4Glib6RefPtrIN3Gdk2GCEE5clearEvtm_hourSCALE_XX_SMALLi_GC_ZNSt6locale3allE_S_outget_greengbooleanstdin_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc_IO_read_endpaint_marksoperator*operator+operator-GDK_NOTHINGoperator=systemwcsrtombsquotrfindatollg_typecollate_key_ZNK4Glib7ustring7compareEmmRKS0_paint_sample_S_hexint_p_sep_by_space_ZNSs7replaceEmmPKcfpos_tunref_ZN4Glib7ustring6insertEmPKcm_ZNSs4_Rep10_M_disposeERKSaIcE_ZNSs15_M_replace_safeEmmPKcmfputws~basic_string_M_move_ZNSs4_Rep15_M_set_sharableEv_ZNKSs12find_last_ofERKSsm_S_ios_openmode_end_ZN9__gnu_cxx13new_allocatorIcE10deallocateEPcmstrtoldstrxfrm_M_destroy_ZNSt6locale5facet9_S_c_nameE_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idE_ZNSt6locale18_S_initialize_onceEvgetenv_ZNKSs7_M_iendEvpos_tm_ydayputwcharftellcompare_ZNSs7replaceEmmmcthread_selfint_curr_symbol_IO_save_end_ZNK9__gnu_cxx13new_allocatorIcE7addressERKcwcstoul_ZNSt8ios_base6skipwsEwchar_t_markers__pad1__pad2__pad3__pad4__pad5loweryscrmemchrgetwcharprivate_setGSListfwscanf_ZNSt10money_base18_S_default_patternE_ZN9__gnu_cxx3divExx_ZNSt6locale11_M_coalesceERKS_S1_i_ZNSt14numeric_limitsIfE13has_quiet_NaNEgetccond_free_ZNK4Glib6RefPtrIKN3Gdk2GCEEptEvgets_ZNSt14numeric_limitsIeE12has_infinityE_ZNSt8ios_base3hexEadjustfield_GCondGDK_DESTROY_ZNKSs16find_last_not_ofEPKcm_ZN4Glib7ustring6insertEmmc_ZN4Glib7ustring6insertEmmj_IO_write_basewmemsetpush_backsubstr_ZN3Gdk5Color8get_typeEv_ZNSt6locale6globalERKS__S_terminalreg_save_areaset_rgb_pstrtoul_ZN4Glib7ustring6appendEmj_ZNKSs4findEPKcmfieldGErrorputwcsampnrctype_ZN4Glib6RefPtrIN5Pango6LayoutEE5clearEv_M_leak_hard_ZNKSs13find_first_ofERKSsm__clock_t_ZNK4Glib7ustring13find_first_ofEPKcm_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEi_ZN3Gdk5Color10set_grey_pEd_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEvcntrl_M_set_sharableref_count_S_once_ZNK3Gdk5Color8get_blueEv_GMainContext_S_id_messages_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE_ZN4Glib6Source12vfunc_table_Embrtowc_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKv_M_limit_IO_read_ptr_ZNSt8ios_base7unitbufE_GObject~RefPtr_S_basefieldset_hsli_col_zeronormalize~_Implerasewctype_t_ZNKSs5rfindEPKcmNormalizeModeset_grey_p_ZNSt8ios_base3decEgp_offsetreverse_iterator, std::allocator > > > >_ZNK4Glib6RefPtrIN3Gdk2GCEEcvbEv_ZNSt17moneypunct_bynameIcLb0EE4intlE_GSourceFuncs_ZNKSs4findERKSsm_ZNK4Glib7ustring5rfindEPKcmm_S_atoms_iniswctypepreparevwscanffind_last_ofreserved2clock_t_M_install_cache_GSListg_threads_got_initialized_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm_M_ibeginget_blue_pcalc_freq_ZNK5Pango9Rectangle11get_descentEvhas_infinity_ZNK4Glib7ustring11collate_keyEv__gnu_cxx_M_current_ZNSt6locale13_S_categoriesEDrawingArea_ZNSt8ios_base8showbaseE_S_create_ZN4Glib7ustring6appendERKS0_gint_GError_ZNSbIwSt11char_traitsIwESaIwEE4nposE_ZN3Gdk5Color7set_redEt_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE_ZNK4Glib7ustring8capacityEvset_blue_ZNKSs13find_first_ofEPKcmmungetwccurrency_symbolGDK_EXPOSE__wchbshort unsigned int_ZNK4Glib7ustring8max_sizeEv_ZN3Gdk5ColoraSERKS0__ZNK4Glib6RefPtrIN3Gdk2GCEEeqERKS3_equal_M_check_S_classic_ZNK4Glib7ustring16find_last_not_ofEPKcmm_ZNKSs5emptyEvRefPtr_S_scientific_ZN4Glib6RefPtrIN3Gdk2GCEEaSERKS3__ZNK4Glib6RefPtrIKN5Pango6LayoutEEeqERKS4__ZN4Glib6RefPtrIKN5Pango6LayoutEEaSERKS4__ZNSt8ios_base9boolalphaE_M_check_length_S_app_ZNKSs7compareEmmRKSsmmnum_samplesmutex_unlockp_sep_by_space_ZN4Glib7ustring4rendEvmktimeappendbaseon_expose_event_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc_mode_ZNSt6locale5_Impl14_S_id_monetaryE_S_boolalpha_ZNSt6locale5ctypeE_ZN4Glib6RefPtrIN3Gdk6WindowEE5clearEv_ZNSt8ios_base3curE_ZNKSs4findEPKcmmlinex_ZNSt6locale5_Impl10_S_id_timeE_S_ateG_THREAD_PRIORITY_NORMAL_pos_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEc_ZNSsaSEc_ZNK4Glib6RefPtrIN3Gdk8ColormapEEcvbEvcount_ZNK4Glib7ustring7compareEmmRKS0_mm_ZNSs6appendERKSsconstruct_ZNK5Pango9Rectangle12get_rbearingEvgetchar_ZNK4Glib7ustring5bytesEvuppercase_ZNKSs4findEcmblue_ZNK4Glib7ustring16find_last_not_ofEjmGDK_KEY_RELEASE_ZNK5Pango9Rectangle5equalERKS0__M_grab_ZNSt6locale5_Impl14_S_id_messagesE_ZN4Glib6RefPtrIKN3Gdk2GCEE4swapERS4_fgetc_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEi__gnu_debug_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEvmonetary_S_categoriesfwide_ZNSt6localeaSERKS_window_M_facets_ZN3Gdk5Color14rgb_find_colorERKN4Glib6RefPtrINS_8ColormapEEE_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mchscrset_widthtmpfilewcsspnsamp_byte_arraythread_exitmutex_new_ZNSs12_M_leak_hardEv_Ios_Iostate_ZNSsixEm_ZN4Glib7ustringpLEPKc_ZNSspLERKSs_ZNK5Pango9Rectangle9get_widthEvi_sampfmtsrandfreeget_freq_ZNK4Glib7ustring6substrEmmGSource_ZNSt14numeric_limitsIdE13has_quiet_NaNEother_M_dataplusg_type_instance_ZNSs4_Rep10_M_refdataEv__pos_ZN4Glib7ustring7replaceEmmmc_ZN4Glib7ustring7replaceEmmmjwcsstr_ZNSt6locale5_Impl18_M_check_same_nameEvsource_funcsget_lbearing_ZNKSs5c_strEvGDK_VISIBILITY_NOTIFY_ZN3Gdk5Color5parseERKN4Glib7ustringEset_greenvfwprintfbtowcNORMALIZE_DEFAULT_COMPOSEpriority_ZNKSs7compareERKSswctombGDestroyNotify_ZNSt17moneypunct_bynameIcLb1EE4intlEfopen_S_badbit_ZNSs7_M_dataEPc_ZSt7nothrowunsigned int_ZNK4Glib7ustring5beginEv_M_replace_facet_Exit_ZNSt6locale5_Impl19_S_facet_categoriesERefPtrwcstoullboolalphahas_denorm_ZNSs3endEv_ZNK5Pango9Rectangle10get_heightEv_ZN4Glib6RefPtrIN3Gdk8ColormapEE4swapERS3_casefold_ZN3Gdk9Rectangle9set_widthERKiswapget_blue_GThreadFunctions_S_showposcallback_funcs_M_remove_reference_ZNSt6locale2id11_S_refcountE__FILE_S_end_ZN4Glib6RefPtrIN3Gdk8DrawableEE5clearEvget_allocatorcond_signal_ZNK4Glib7ustring4findERKS0_mcopy_sample_dataGDK_SCROLL_ZNK4Glib7ustring3rawEv_ZN4Glib7ustring6appendEPKc_ZNK4Glib6RefPtrIKN5Pango6LayoutEEptEvlong unsigned intintlhas_quiet_NaNtm_isdstsamp_ucint_n_sign_posnNORMALIZE_DEFAULTGDK_PROPERTY_NOTIFY_ZNSt8ios_base5fixedE_ZN5Pango9Rectangle4gobjEv_ZNSt10ctype_base5graphE_ZNKSs6substrEmmlocale_ZNK4Glib7ustring12find_last_ofEcmsampfixed_ZN5Pango9Rectangle10set_heightEi_IO_read_base__int32_t_ZNSt10moneypunctIcLb0EE4intlESCALE_XX_LARGEwcstodObjectwcstok_IO_write_ptrwmemcmppoll_fds_ZNSs7replaceEmmPKcm_M_id~Colorget_type_ZNSt6locale4timeEoperator!=_ZNKSs9_M_ibeginEv_ZN8OsziView15on_expose_eventEP15_GdkEventExposei_maxsampon_realize_ZNSt8ios_base9showpointE_ZNSt14numeric_limitsIdE12has_infinityEtv_seccond_broadcast_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcm_unused2GTimeValtm_minbasic_stringSCALE_X_SMALLGDK_MOTION_NOTIFY_ZNSt10__num_base11_S_atoms_inEnext_ZN8OsziView12paint_sampleEv_ZN8OsziView10invalidateEv_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmc_ZNSs4swapERSs_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmj_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEE_ZN8OsziView6recalcEv_ZNK4Glib7ustring12find_last_ofEjmint_frac_digitsGType_M_disjunct_M_refcopy_S_floatfield_ZNSt6locale7_S_onceEi_minsamp_ZNKSs7compareEmmPKc_ZNKSs8_M_limitEmmRectangleqsortGDK_CLIENT_EVENTinvalidate_samplePangocode_ZN4Glib6RefPtrIN3Gdk6WindowEEaSERKS3__ZNK4Glib6RefPtrIN3Gdk2GCEEneERKS3___in_chrgeofbit_M_is_leaked_ZNSs4_Rep26_M_set_length_and_sharableEm_S_id_collatetm_mon__off_t_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEinone_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEv_ZNSs6insertEmRKSs_ZN3Gdk5Color8set_greyEt__wch_ZNSt10ctype_base5alnumE_S_construct_pattern_GTimeValparseoperator++_ZN9__gnu_cxx3absExoperator+=_ZNSt10ctype_base5printEclosure_callback_ZN4Glib6RefPtrIN3Gdk8ColormapEE5clearEv_ZNSt10__num_base12_S_atoms_outE_ZNSs6assignEPKccalc_minmaxNORMALIZE_ALL_COMPOSEdigitwcsncatthread_create_ZN4Glib7ustringaSEc_ZNSt10ctype_base5cntrlE_ZN4Glib7ustringaSEjgetTrigFactoperator--_ZN4Glib6RefPtrIN3Gdk8ColormapEEaSERKS3_operator-=operator->g_thread_functions_for_glib_use_ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEv_ZNK4Glib6RefPtrIN3Gdk8DrawableEEeqERKS3_reserved1_ZNSt8ios_base6badbitEallocatebytes_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEdeEv_IO_write_end_ZNK5Pango9Rectangle10get_ascentEvbsearch_IO_save_basetm_wday_ZNK4Glib6RefPtrIKN5Pango6LayoutEEneERKS4_cond_timed_wait_ZN4Glib7ustring6insertEmPKc_ZN3Gdk5Color7set_hslEddd_S_initialize_onceset_hsv_ZNK4Glib7ustring7compareEmmPKcn_sign_posn_ZNK9__gnu_cxx17__normal_iteratorIPcSsEplERKl_ZN4Glib7ustring6assignERKS0_mmgulong_ZNK4Glib6RefPtrIN3Gdk8DrawableEEcvbEv_ZN4Glib7ustring6assignEmc_ZN4Glib7ustring6assignEmj_ZNSs7_M_copyEPcPKcm_ZNK4Glib7ustring12find_last_ofERKS0_mtrigger_asetTrigFact_ZNSt8ios_base10floatfieldE_ZNSt6locale5_Impl19_M_remove_referenceEvSCALEGQuarkreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZN4Glib6RefPtrIN3Gdk2GCEE4swapERS3_schmitt_triggeredferrorungetcthousands_sep_ZN8OsziView11setAdaptiveEi_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKccopyget_pixelstrerrorskipws_GSource_ZNSt6locale5_Impl13_S_id_numericE_ZNSt8ios_base10scientificEclosure_marshalgmtimepunctnew_allocatorctime_ZN9__gnu_cxx17__normal_iteratorIPcSsEpLERKl_ZN4Glib19glibmm_null_pointerEthread_set_prioritywcslenwcsncmp_ZNK4Glib7ustring16find_last_not_ofEPKcmRefPtr__compar_fn_t_ZNKSs7compareEmmPKcmGDK_SETTINGtowctrans_ZNSs2atEm_ZNK4Glib7ustring13find_first_ofERKS0_m_ZNSt14numeric_limitsIfE10has_denormEchar_ZN4Glib7ustring7replaceEmmRKS0__S_refcountGDK_BUTTON_PRESSvswprintfxscrsetlocaletv_usec/home/floh/gtkguitunelengthCairoSCALE_X_LARGE_M_set_leaked_M_clonecapacityvsscanf_ZNSspLEPKc_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEE4baseEv_ZNSt8ios_base9uppercaseEmbsrtowcs_S_beg_ZNSt10ctype_base5spaceE_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE_ZN4Glib7ustring4nposEfgets_ZN4Glib7ustring3endEvmutex_lock_ZN9__gnu_cxx13new_allocatorIcE7destroyEPc_M_cachesgraph_M_iend_S_empty_rep_storage_IO_backup_baselocaltimewmemcpy_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEv_S_c_name_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2__S_id_timearea_ZNSt8ios_base3octE_S_binint_n_sep_by_spacevsnprintf_IO_markerGSourceCallbackFuncs_ZNSs6assignERKSsmmGDK_PROXIMITY_INcheckfreopen_ZNK4Glib7ustring13find_first_ofEcmthisclock_ZNKSs7compareEmmRKSs_ZNK4Glib6RefPtrIN3Gdk6WindowEEeqERKS3__ZNSt14numeric_limitsImE6digitsE_ZNK4Glib7ustring16find_last_not_ofEcm_ZN4Glib6RefPtrIKN5Pango6LayoutEE4swapERS4_GNU C++ 4.1.2 (Ubuntu 4.1.2-0ubuntu4)_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2_wctrans_S_trunc_ZNKSs7compareEPKc_S_ios_iostate_end_ZNSs6resizeEmc~new_allocator_ZNSt8ios_base7goodbitEvalidatewidth_S_default_patternGCond_ZNSt10ctype_base5alphaE_ZN8OsziView11setTrigFactEdempty_ZN3Gdk9Rectangle9intersectERKS0_Rb_ZNSs6appendERKSsmm_GByteArrayfeof_S_internal_cur_columnvprintf_ZNK4Glib7ustring4rendEv_M_facets_sizesigcreserveGTypeInstance_ZN4Glib7ustring6appendEPKcm_M_leak_ZNSs7_M_leakEvfp_offset_ZNK4Glib6RefPtrIKN3Gdk2GCEEcvbEvfloatfieldfclose_S_unitbuf_ZNK4Glib7ustring9lowercaseEvright_ZNKSs15_M_check_lengthEmmPKc_ZNK4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPKcSsEEEE_S_in_ZN8OsziView11paint_scaleEvglobali_col_dataliney__vtt_parmget_height_ZNSs6insertEmPKc_M_lengthunsigned charinsert_ZN3Gdk5Color4gobjEvspacembstate_t_Ios_SeekdirfinalizefsetpospCppObject_GDK_ENTER_NOTIFY._207__normal_iterator, std::allocator > >tm_yearinternalfgetposnothrow_t_ZN4Glib7ustring5clearEvgreen_ZNKSs13find_first_ofEPKcmrewindintersectDrawablepositive_sign_ZN9__gnu_cxx13new_allocatorIcE9constructEPcRKcdifftime_ZNSt6locale5_Impl13_S_id_collateE_M_replace_categorysetSampleFreq_ZNSs5clearEv_ZN4Glib7ustring7replaceEmmRKS0_mm_ZN4Glib6RefPtrIKN3Gdk2GCEEaSERKS4__ZNKSsixEmalphaint_n_cs_precedes_IO_buf_basename_ZNK3Gdk5Color11get_green_pEv_ZNSs6appendEmcwcstofwcstol_ZNKSs16find_last_not_ofERKSsmi_col_trig_S_failbit__normal_iteratorpixel_ZN8OsziView9calc_freqEv__normal_iterator, std::allocator > >tm_zone_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEEGDK_NO_EXPOSEsetbufpaint_scalescale_top_GdkRegionGDK_MAPtypetime_t_Alloc_hider_ZNSt14numeric_limitsIeE10has_denormEGdkRectangle_ZN4Glib7ustringaSEPKc_ZNKSs17find_first_not_ofERKSsmcontext_ZNSt6locale9_S_globalEint_p_cs_precedes_GPrivate_ZNKSs2atEmmon_grouping_ZNKSs4rendEv_ZN4Glib7ustring7reserveEm_offset_chain_old_offsetregionget_redget_rbearing_ZNK4Glib7ustring13find_first_ofEjmcond_newfactget_green_psize_M_namesget_descent_ZNKSs5rfindEcmflagstrigger_b_ZNKSs4_Rep12_M_is_leakedEvoperator[]rgb_find_colorp_cs_precedeswint_tmblendecimal_pointgpointerdispatch_S_id_numeric_S_ios_fmtflags_end_ZNK4Glib6RefPtrIN3Gdk6WindowEEneERKS3__M_p_ZNK4Glib7ustring7compareEPKc_M_is_shared_M_set_length_and_sharableis_asciiGDK_CONFIGURE_ZNKSs16find_last_not_ofEPKcmm_M_data_ZN8OsziView10on_realizeEv_ZNK4Glib7ustring4copyEPcmm_ZNSs6appendEPKcmsetAdaptiveGDK_PROXIMITY_OUToverflow_arg_areadenorm_presentfflushGdkWindowoperator std::stringcallback_data_M_dispose_ZNSs7replaceEmmRKSsmmdigits_shortbuf_S_goodbitn_sep_by_space_ZNK4Glib7ustring20casefold_collate_keyEvthread_joinstrtok_ZNK3Gdk9Rectangle5get_xEvguint16GSourceDummyMarshal_ZNK4Glib6RefPtrIN5Pango6LayoutEEcvbEv_ZNK4Glib6RefPtrIN5Pango6LayoutEEneERKS3_vswscanfshowpointdoublereallocwcsncpy_S_initialize_ZN3Gdk9Rectangle4gobjEv_ZNKSs17find_first_not_ofEPKcmmguint32_ZNK4Glib7ustring17find_first_not_ofEcm_ZNSt8ios_base11adjustfieldEmbtowc_ZNSs4rendEvG_THREAD_PRIORITY_HIGHfloat_denorm_styleRefPtrldiv_ZNK4Glib7ustring17find_first_not_ofEPKcmcond_waitmessagestdout_GdkEventExposeGdkRegion_ZNKSs4sizeEv_ZNSt10ctype_base5punctE_ZNSs6assignERKSsendpoint_ZNSs4_Rep8_M_cloneERKSaIcEm_ZNK4Glib7ustring5rfindEcm_GdkDrawable_ZN4Glib7ustring6insertEmRKS0_Markupperror_S_leftfind_first_not_of_ZNK4Glib7ustring4dataEv_ZNKSs13get_allocatorEv_ZNSt17moneypunct_bynameIwLb1EE4intlElocaleconvGDK_UNMAP_M_mutatecollatebegin_S_construct_S_facet_categoriesp_sign_posn_ZN3Gdk9Rectangle8get_typeEv_ZNSs4nposE_ZN4Glib6RefPtrIKN3Gdk2GCEE5clearEvsetSampleData_ZNK4Glib7ustring17find_first_not_ofEjmPangoRectangle__gnu_debug_defget_ascentlowercase_ZNSs4_Rep10_M_refcopyEv_PangoRectangle~OsziView_S_uppercasegroupingmessagesaddresslconvbasic_string,std::allocator >_ZN8OsziView16copy_sample_dataEPKviContainer_Helpersnpos_ZNSs14_M_replace_auxEmmmcnew_allocator_ZNK4Glib7ustring5rfindEjm_ZNSt10moneypunctIcLb1EE4intlE_ZNKSs6_M_repEvGByteArraygobject__ZNK4Glib7ustring6rbeginEvglibmm_null_pointer_ZNKSs6rbeginEv_ZNSt14numeric_limitsIdE10has_denormEreplacewscrGThreadFunctions_M_refcount_ZNSs4_Rep9_S_createEmmRKSaIcENORMALIZE_NFCSCALE_SMALL_vtable_offset._17._18._19_S_atoms_ZN4Glib6RefPtrIKN5Pango6LayoutEE5clearEv_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4__M_implvwprintfclearerr_GTypeClass_ZNSt6locale5_Impl11_S_id_ctypeE_S_id_ctypexdigit_S_skipwsGDK_3BUTTON_PRESSallocator_ZNSs13_S_copy_charsEPcS_S__ZNK4Glib7ustring6lengthEvlong double_ZN4Glib7ustring6appendERKS0_mmwctob__va_list_tag_ZNKSs8capacityEv_ZNSt8ios_base2inE_ZNKSs4dataEvfacet_ZNK4Glib7ustringcvSsEvmoney_base_ZNSs4_Rep11_S_terminalEGDK_KEY_PRESSeventwcsftime_ZNKSs8max_sizeEv_ZNSt8ios_base9basefieldE_ZNSt10ctype_base5digitE_ZNSs6insertEmRKSsmmG_THREAD_PRIORITY_LOW_ZNK3Gdk5Color10get_blue_pEv._95destroy_ZNSs5eraseEmm_ZNK4Glib7ustring5rfindEPKcm_ZNSt6locale5_Impl16_M_add_referenceEv_ZNK4Glib6RefPtrIN3Gdk8DrawableEEneERKS3_GSourceFuncs_ZNSt10money_base8_S_atomsE_ZNK5Pango9Rectangle5get_xEvshowpos_S_eofbitGDK_GRAB_BROKEN_M_capacity_ZNSt14numeric_limitsIeE13has_quiet_NaNEFILE_filenoclassic_ZNSt10moneypunctIwLb1EE4intlE_ZNK3Gdk5Color4gobjEv_ZNKSs3endEvtmpnam_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEjvfunc_table_GDK_SELECTION_NOTIFYsamp_s16leshowbaseustring_Iterator_ZNK4Glib7ustring9normalizeENS_13NormalizeModeE_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mc_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mjfseek_ZN3Gdk5Color3setERKN4Glib7ustringEptrdiff_tGDK_DRAG_LEAVEwmemmoveset_grey_ZN4Glib7ustring6assignERKS0_wcrtombclearmutex_trylockfputwcguint_ZN4Glib6RefPtrIN3Gdk6WindowEE4swapERS3_numericset_x_ZNSsaSEPKci_col_scale_ZNK3Gdk5Color7get_redEvset_y_Rep_base_ZNSspLEc_ZN4Glib6RefPtrIN3Gdk8DrawableEE4swapERS3__GSourceCallbackFuncs_M_replace_safe__state_ZNK4Glib7ustring4findEcm_ZN3Gdk9Rectangle10set_heightERKi_ZNSt10moneypunctIwLb0EE4intlEinvalidateNORMALIZE_NFKCNORMALIZE_NFKD_ZN5Pango9Rectangle9set_widthEiGTypeClassmax_size_ZNK3Gdk9Rectangle10get_heightEv_ZNK4Glib7ustring7compareERKS0_wcscollRefPtri_col_ticks_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKcm_ZNSs7_M_moveEPcPKcm_ZNK4Glib7ustring4findEPKcmosziview.cc__time_tglong_Impl_ZNSt10ctype_base5lowerE_ZN4Glib7ustringpLERKS0_private_newustringdata_ZNSs6resizeEmOsziView_ZN4Glib7ustring6insertEmRKS0_mm_flags2_flags_ZNK4Glib7ustring4findEPKcmm_ZN3Gdk5Color4swapERS0__S_atoms_out_ZNK4Glib7ustring4findEjmwmemchrmutex_freesampfreqget_red_p_ZNKSs12find_last_ofEPKcmmlong long unsigned int_S_id_monetary_ZNKSs16find_last_not_ofEcmnothrow_ZNSs4_Rep20_S_empty_rep_storageE_ZNK4Glib6RefPtrIKN3Gdk2GCEEneERKS4__ZNSt17moneypunct_bynameIwLb0EE4intlEreverse_iterator, std::allocator > > > >GDK_DROP_START_ZNKSs4copyEPcmmbasefield_ZN4Glib7ustring6appendEmctm_mday_M_add_referenceRefPtrustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZNK3Gdk5Color9gobj_copyEvGMainContext_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2__ZNK4Glib7ustring5emptyEv_ZNKSs13find_first_ofEcm_Ios_Openmode_ZNSs6appendEPKc_S_cur_ZNKSs4_Rep12_M_is_sharedEvgint8vscanfreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZN8OsziView11getTrigFactEvgobj_ZN5Pango9Rectangle5set_xEi_ZNSt6locale8monetaryEdomain_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_inegative_signshort int_ZNSs12_S_constructEmcRKSaIcEwctype_ZNK4Glib7ustring12find_last_ofEPKcmm_ZN4Glib7ustring7replaceEmmPKcfind_last_not_of_S_copy_charssource_id_ZN8OsziView11calc_minmaxEvrbeginstrftimemon_thousands_sep_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalEwcscat_ZNSt6locale7classicEv_ZNSt6locale8messagesE_ZNK3Gdk9Rectangle9get_widthEv_ZN3Gdk5Color8set_blueEtactive_ZNSt8ios_base7showposE_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1__ZNK9__gnu_cxx13new_allocatorIcE8max_sizeEv_ZNK9__gnu_cxx17__normal_iteratorIPcSsEptEv_ZNSt6locale21_S_normalize_categoryEi_ZNSt6locale7collateEGDK_SELECTION_CLEAR_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_RKS0_scientificsetvbufGSourceFunc_S_global_ZN8OsziView13setSampleDataEPKsi_ZN4Glib7ustring5eraseEv_ZN4Glib7ustring9push_backEc_ZN4Glib7ustring9push_backEjfreq_ZNSs6insertEmmcgobj_copyGDK_DRAG_ENTERGDK_DRAG_MOTION_ZNK4Glib7ustring5rfindERKS0_mNORMALIZE_ALLassign_ZN3Gdk9Rectangle5set_yERKiputc_ZNK4Glib7ustring8is_asciiEvprivate_get_S_adjustfieldfindwcschr_ZNK4Glib7ustringixEmstring__IO_FILE_ZNK4Glib7ustring16find_last_not_ofERKS0_mheightwcsrchrdenorm_indeterminateS16_LE_ZNK4Glib7ustring5c_strEvset_redpattern_ZNSt8ios_base7failbitEsend_event_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5_GliblldivGPrivate_ZN4Glib7ustring6assignEPKcmGDK_OWNER_CHANGEstrtollgushort_ZNK4Glib6RefPtrIKN3Gdk2GCEEeqERKS4__ZNSt6locale4noneEswscanfwcscspnset_rgb_ZN4Glib7ustring5beginEvwcscmp_ZN3Gdk5Color7set_rgbEttt_ZN4Glib6RefPtrIN5Pango6LayoutEEaSERKS3__S_max_size_lock_ZNSs12_S_empty_repEv_ZN4Glib7ustringpLEcvfwscanf_ZN4Glib7ustringpLEj_ZNKSt6localeneERKS_~ustring_ZNK3Gdk9Rectangle13has_zero_areaEv_ZNSs5beginEv_ZNSs13_S_copy_charsEPcPKcS1__S_normalize_category_ZNSs6rbeginEvwcstoldSCALE_LARGEwcstollwcsxfrmtimeleftprevwcscpy_S_showbase_M_assign_ZNSs6assignEmc_ZNK4Glib7ustring2atEmrename_ZN8OsziView11paint_marksEv_GTypeInstanceGDK_SELECTION_REQUEST_ZNK4Glib7ustring4sizeEv~allocator_ZNKSs8_M_checkEmPKcqdata_ZNKSs12find_last_ofEPKcmWindow_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEi_S_fixed_GData_ZN4Glib7ustring6resizeEmcsigned charmbstowcsGDK_DRAG_STATUSG_THREAD_PRIORITY_URGENTwcspbrk_ZNK4Glib6RefPtrIN3Gdk2GCEEptEv_M_refdatatm_gmtoff_sbuf_ZNSs4_Rep11_S_max_sizeEextents_ZN4Glib7ustringaSERKS0_strtoullfwprintfstartpointlong intjoinNORMALIZE_NFD_ZN4Glib6RefPtrIN5Pango6LayoutEE4swapERS3__ZNK4Glib6RefPtrIN3Gdk8ColormapEEneERKS3_Colormap_ZNKSs7_M_dataEv_ZNK4Glib7ustring13find_first_ofEPKcmmi_adaptive_scaletemp_ZNSs4_Rep13_M_set_leakedEv_ZN3Gdk5Color7set_hsvEdddgchar_ZNK4Glib7ustring12find_last_ofEPKcmwctrans_tg_utf8_skipget_xget_y_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiERKl_ZNK3Gdk5Color9get_pixelEv_ZN3Gdk9Rectangle4joinERKS0__Atomic_wordcasefold_collate_keyallocator_ZNK9__gnu_cxx17__normal_iteratorIPcSsEixERKltrigfactGDK_2BUTTON_PRESSGDK_LEAVE_NOTIFYwprintf_ZN3Gdk9Rectangle9intersectERKS0__ZNSs9_M_mutateEmmmthread_yieldfloat_ZNK4Glib7ustring8casefoldEv_M_repmbrlen_ZNK4Glib7ustring17find_first_not_ofERKS0_m_ZNSs9push_backEcupperGThreadFunc_Repputchar_Ios_Fmtflags_M_replace_auxrandresize_ZNSt6locale2idaSERKS0_GDK_DROP_FINISHEDColor_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKc_next_ZNSt14numeric_limitsIfE12has_infinityE_ZNKSs17find_first_not_ofEcm_ZNK9__gnu_cxx13new_allocatorIcE7addressERcset_height_ZNK3Gdk5Color9get_red_pEvSCALE_MEDIUM_ZNSt8ios_base4leftEgunichardata_size_ZNSt8ios_base3outEhas_zero_area_ZNSsaSERKSsRefPtr_ZN3Gdk5Color9set_greenEt_ZNK3Gdk9Rectangle5get_yEvg_class_M_coalesce_ZNK4Glib7ustring17find_first_not_ofEPKcmm_ZNK4Glib7ustring3endEvGMutexustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >c_strdenorm_absent_ZNK4Glib7ustring8validateEv_ZNK8OsziView8get_freqEvbadbit_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4___count__value_ZN4Glib6RefPtrIN3Gdk8DrawableEEaSERKS3__M_replace_categories_ZNSt6locale7numericEfgetwc_ZNSs6assignEPKcm_ZNSt10money_base20_S_construct_patternEcccfgetwsGDK_DELETEint_p_sign_posn_ZNKSt6localeeqERKS_i_col_mark_ZN4Glib7ustring5eraseEmmtm_sec_GdkColorGdkEventExposealnum_ZN8OsziView13setSampleFreqEd_ZNK4Glib6RefPtrIN5Pango6LayoutEEptEv_ZNSt8ios_base5rightEparent_instance_ZNK5Pango9Rectangle5get_yEv_ZN3Gdk9Rectangle5set_xERKi_S_ios_seekdir_enddeallocatepthread_once_t_ZNK4Glib6RefPtrIN5Pango6LayoutEEeqERKS3_strcoll_ZNKSt6locale2id5_M_idEv_ZNSs4_Rep12_S_empty_repEvmon_decimal_point_ZN9__gnu_cxx17__normal_iteratorIPcSsEmIERKl_ZNKSs17find_first_not_ofEPKcm__off64_tunitbuf_ZNK4Glib6RefPtrIN3Gdk8ColormapEEptEvGDK_FOCUS_CHANGE_ZNSt8ios_base8internalEwscanf_ZNSs7replaceEmmRKSs_S_showpoint_IO_lock_ti_col_bg_ZN4Glib7ustring6assignEPKcGDK_WINDOW_STATE_ZN4Glib7ustring6resizeEmjstringlong long intRefPtr_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs_ZNSs9_M_assignEPcmcgoodbitlayout_ZNKSs12find_last_ofEcm_S_dec_ZNK4Glib6RefPtrIN3Gdk8ColormapEEeqERKS3_GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4).symtab.strtab.shstrtab.rela.text.data.bss.debug_abbrev.rela.debug_info.rela.debug_line.rodata.cst8.rela.text._ZTv0_n32_N8OsziViewD1Ev.rela.text._ZThn16_N8OsziViewD1Ev.gcc_except_table.rela.text._ZTv0_n32_N8OsziViewD0Ev.rela.text._ZThn16_N8OsziViewD0Ev.rodata.str1.1.rodata.rela.rodata._ZTV8OsziView.rela.rodata._ZTT8OsziView.rela.rodata._ZTC8OsziView0_N3Gtk11DrawingAreaE.rela.rodata._ZTC8OsziView0_N3Gtk6WidgetE.rela.rodata._ZTC8OsziView0_N3Gtk6ObjectE.rela.rodata._ZTC8OsziView0_N4Glib6ObjectE.rela.rodata._ZTC8OsziView16_N3Atk11ImplementorE.rela.rodata._ZTC8OsziView16_N4Glib9InterfaceE.rela.rodata._ZTC8OsziView192_N4Glib10ObjectBaseE.rodata._ZTS8OsziView.rela.rodata._ZTI8OsziView.rela.debug_frame.rela.eh_frame.debug_loc.rela.debug_pubnames.rela.debug_aranges.debug_ranges.debug_str.comment.note.GNU-stack.groupR@@;RH@<RP@GRX@HR`(@?R@R@| V- @&-,-1-D6?p@ U Ph@ax@s n@ @p @ Ȯ@ 25( # @C >@^` Y @!@ о @#  @% @'  @)>@ 9@+mp h@-P `H@0x @2X0@4hG O8@70 P0@9 ..0g9z*BzzYȎ8A3     !#%')+-/024679;<> ! &(+008=6Rg T" " 0?0P!^p!U" " 0 +2 Mj` *Hdw K `qp -O`0 @ P `ZR4 E\u #1(,M,f~!0 0 H b     > h    / V v    : m    ? z   "W0q*lH h?P0Rw!!!#!%#!'A!)e!+!-p4Uv(;NiBZs1Ph{!/ osziview.cc.LC1.LC2.LC3.LC4.LC5.LC7.LC8.LC11_ZN8OsziView11calc_minmaxEv__gxx_personality_v0_ZN8OsziView9calc_freqEv_ZN8OsziView6recalcEv_ZN8OsziView11getTrigFactEv_ZN8OsziView16copy_sample_dataEPKvig_byte_array_set_sizeg_byte_array_append_ZTv0_n32_N8OsziViewD1Ev_ZThn16_N8OsziViewD1Ev_Unwind_Resume_ZN8OsziViewD1Ev_ZTV8OsziViewg_byte_array_free_ZN3Gdk5ColorD1Ev_ZTT8OsziView_ZN3Gtk11DrawingAreaD2Ev_ZN4Glib10ObjectBaseD2Ev_ZN4sigc9trackableD2Ev_ZN8OsziViewD2Ev_ZTv0_n32_N8OsziViewD0Ev_ZThn16_N8OsziViewD0Ev_ZN8OsziViewD0Ev_ZdlPv_ZN8OsziView10on_realizeEv_ZN3Gtk6Widget10on_realizeEv_ZN3Gtk6Widget10get_windowEv_ZN3Gdk6Window14set_backgroundERKNS_5ColorE_ZN8OsziView12paint_sampleEv_ZN3Gdk2GC6createERKN4Glib6RefPtrINS_8DrawableEEE_ZN3Gdk2GC14set_foregroundERKNS_5ColorE_ZNK3Gtk6Widget10get_heightEv_ZNK3Gtk6Widget9get_widthEv_ZN3Gdk8Drawable9draw_lineERKN4Glib6RefPtrIKNS_2GCEEEiiii_ZN8OsziView11paint_scaleEv_ZN4Glib7ustringC1EPKc_ZN3Gtk6Widget19create_pango_layoutERKN4Glib7ustringE_ZN4Glib7ustringD1Ev_ZN5Pango15FontDescriptionC1ERKN4Glib7ustringE_ZN5Pango6Layout20set_font_descriptionERKNS_15FontDescriptionE_ZN5Pango15FontDescriptionD1Evsprintf_ZN5Pango6Layout8set_textERKN4Glib7ustringE_ZNK5Pango6Layout25get_pixel_logical_extentsEv_ZN3Gdk8Drawable11draw_layoutERKN4Glib6RefPtrIKNS_2GCEEEiiRKNS2_IKN5Pango6LayoutEEE__stack_chk_fail_ZN8OsziView17invalidate_sampleEv_ZNK3Gtk6Widget11is_realizedEv_ZNK3Gtk6Widget14get_allocationEv_ZN3Gdk9Rectangle5set_xERKi_ZN3Gdk9Rectangle5set_yERKi_ZNK3Gdk9Rectangle10get_heightEv_ZN3Gdk9Rectangle10set_heightERKi_ZN3Gdk6Window15invalidate_rectERKNS_9RectangleEb_ZN8OsziView10invalidateEv_ZN8OsziView11setTrigFactEd_ZN8OsziView11setAdaptiveEi_ZN8OsziView13setSampleFreqEd_ZN8OsziView13setSampleDataEPKsi_ZN8OsziView13setSampleDataEPKhi_ZN8OsziViewC1Ev_ZN4sigc9trackableC2Ev_ZN4Glib10ObjectBaseC2Ev_ZN3Gtk11DrawingAreaC2Ev_ZN3Gdk5ColorC1Evg_byte_array_new_ZN3Gdk5Color3setERKN4Glib7ustringE_ZN3Gtk6Widget12get_colormapEv_ZN3Gdk8Colormap11alloc_colorERNS_5ColorEbb_ZN8OsziViewC2Ev_ZN8OsziView11paint_marksEv_ZN8OsziView15on_expose_eventEP15_GdkEventExpose_ZN3Gtk6Widget15on_expose_eventEP15_GdkEventExpose_ZTI8OsziView_ZN3Gtk6Object10set_manageEv_ZN3Gtk6Object15destroy_notify_Ev_ZN3Gtk6Widget7on_showEv_ZN3Gtk6Widget7on_hideEv_ZN3Gtk6Widget6on_mapEv_ZN3Gtk6Widget8on_unmapEv_ZN3Gtk6Widget12on_unrealizeEv_ZN3Gtk6Widget15on_size_requestEP15_GtkRequisition_ZN3Gtk6Widget16on_size_allocateERN3Gdk9RectangleE_ZN3Gtk6Widget16on_state_changedENS_9StateTypeE_ZN3Gtk6Widget17on_parent_changedEPS0__ZN3Gtk6Widget20on_hierarchy_changedEPS0__ZN3Gtk6Widget16on_style_changedERKN4Glib6RefPtrINS_5StyleEEE_ZN3Gtk6Widget20on_direction_changedENS_13TextDirectionE_ZN3Gtk6Widget14on_grab_notifyEb_ZN3Gtk6Widget15on_child_notifyEP11_GParamSpec_ZN3Gtk6Widget20on_mnemonic_activateEb_ZN3Gtk6Widget13on_grab_focusEv_ZN3Gtk6Widget8on_focusENS_13DirectionTypeE_ZN3Gtk6Widget8on_eventEP9_GdkEvent_ZN3Gtk6Widget21on_button_press_eventEP15_GdkEventButton_ZN3Gtk6Widget23on_button_release_eventEP15_GdkEventButton_ZN3Gtk6Widget15on_scroll_eventEP15_GdkEventScroll_ZN3Gtk6Widget22on_motion_notify_eventEP15_GdkEventMotion_ZN3Gtk6Widget15on_delete_eventEP12_GdkEventAny_ZN3Gtk6Widget18on_key_press_eventEP12_GdkEventKey_ZN3Gtk6Widget20on_key_release_eventEP12_GdkEventKey_ZN3Gtk6Widget21on_enter_notify_eventEP17_GdkEventCrossing_ZN3Gtk6Widget21on_leave_notify_eventEP17_GdkEventCrossing_ZN3Gtk6Widget18on_configure_eventEP18_GdkEventConfigure_ZN3Gtk6Widget17on_focus_in_eventEP14_GdkEventFocus_ZN3Gtk6Widget18on_focus_out_eventEP14_GdkEventFocus_ZN3Gtk6Widget12on_map_eventEP12_GdkEventAny_ZN3Gtk6Widget14on_unmap_eventEP12_GdkEventAny_ZN3Gtk6Widget24on_property_notify_eventEP17_GdkEventProperty_ZN3Gtk6Widget24on_selection_clear_eventEP18_GdkEventSelection_ZN3Gtk6Widget26on_selection_request_eventEP18_GdkEventSelection_ZN3Gtk6Widget25on_selection_notify_eventEP18_GdkEventSelection_ZN3Gtk6Widget21on_proximity_in_eventEP18_GdkEventProximity_ZN3Gtk6Widget22on_proximity_out_eventEP18_GdkEventProximity_ZN3Gtk6Widget26on_visibility_notify_eventEP19_GdkEventVisibility_ZN3Gtk6Widget15on_client_eventEP15_GdkEventClient_ZN3Gtk6Widget18on_no_expose_eventEP12_GdkEventAny_ZN3Gtk6Widget21on_window_state_eventEP20_GdkEventWindowState_ZN3Gtk6Widget16on_selection_getERNS_13SelectionDataEjj_ZN3Gtk6Widget21on_selection_receivedERKNS_13SelectionDataEj_ZN3Gtk6Widget13on_drag_beginERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk6Widget11on_drag_endERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk6Widget16on_drag_data_getERKN4Glib6RefPtrIN3Gdk11DragContextEEERNS_13SelectionDataEjj_ZN3Gtk6Widget19on_drag_data_deleteERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk6Widget13on_drag_leaveERKN4Glib6RefPtrIN3Gdk11DragContextEEEj_ZN3Gtk6Widget14on_drag_motionERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZN3Gtk6Widget12on_drag_dropERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZN3Gtk6Widget21on_drag_data_receivedERKN4Glib6RefPtrIN3Gdk11DragContextEEEiiRKNS_13SelectionDataEjj_ZN3Gtk6Widget17on_get_accessibleEv_ZN3Gtk6Widget17on_screen_changedERKN4Glib6RefPtrIN3Gdk6ScreenEEE_ZN3Gtk6Widget39dispatch_child_properties_changed_vfuncEjPP11_GParamSpec_ZN3Gtk6Widget14show_all_vfuncEv_ZN3Gtk6Widget14hide_all_vfuncEv_ZN3Gtk6Widget20get_accessible_vfuncEv_ZN3Atk11Implementor21ref_accessibile_vfuncEv_ZNK4Glib10ObjectBase9referenceEv_ZNK4Glib10ObjectBase11unreferenceEv_ZTv0_n56_N3Gtk6Object15destroy_notify_Ev_ZTv0_n64_N3Gtk6Object10set_manageEv_ZTC8OsziView0_N3Gtk11DrawingAreaE_ZTC8OsziView0_N3Gtk6WidgetE_ZTC8OsziView0_N3Gtk6ObjectE_ZTC8OsziView0_N4Glib6ObjectE_ZTC8OsziView16_N3Atk11ImplementorE_ZTC8OsziView16_N4Glib9InterfaceE_ZTC8OsziView192_N4Glib10ObjectBaseE_ZTIN3Gtk11DrawingAreaE_ZN3Gtk11DrawingAreaD1Ev_ZN3Gtk11DrawingAreaD0Ev_ZThn16_N3Gtk11DrawingAreaD1Ev_ZThn16_N3Gtk11DrawingAreaD0Ev_ZTv0_n32_N3Gtk11DrawingAreaD1Ev_ZTv0_n32_N3Gtk11DrawingAreaD0Ev_ZTIN3Gtk6WidgetE_ZN3Gtk6WidgetD1Ev_ZN3Gtk6WidgetD0Ev_ZThn16_N3Gtk6WidgetD1Ev_ZThn16_N3Gtk6WidgetD0Ev_ZTv0_n32_N3Gtk6WidgetD1Ev_ZTv0_n32_N3Gtk6WidgetD0Ev_ZTIN3Gtk6ObjectE_ZN3Gtk6ObjectD1Ev_ZN3Gtk6ObjectD0Ev_ZTv0_n32_N3Gtk6ObjectD1Ev_ZTv0_n32_N3Gtk6ObjectD0Ev_ZTIN4Glib6ObjectE_ZN4Glib6ObjectD1Ev_ZN4Glib6ObjectD0Ev_ZTv0_n32_N4Glib6ObjectD1Ev_ZTv0_n32_N4Glib6ObjectD0Ev_ZN4Glib10ObjectBase15destroy_notify_Ev_ZN4Glib10ObjectBase10set_manageEv_ZTIN3Atk11ImplementorE_ZN3Atk11ImplementorD1Ev_ZN3Atk11ImplementorD0Ev_ZTv0_n32_N3Atk11ImplementorD1Ev_ZTv0_n32_N3Atk11ImplementorD0Ev_ZTIN4Glib9InterfaceE_ZN4Glib9InterfaceD1Ev_ZN4Glib9InterfaceD0Ev_ZTv0_n32_N4Glib9InterfaceD1Ev_ZTv0_n32_N4Glib9InterfaceD0Ev_ZTIN4Glib10ObjectBaseE__cxa_pure_virtual_ZTS8OsziView_ZTVN10__cxxabiv120__si_class_type_infoE5##$39:A ? L ?T ?@]@iAuA~AAAAA BC BDAAAA!A*A3AQ BYCe BjDvE~=@ AA"A+A4A=AFAkCAAAAAAAC=A ? L ?T ?@] @i Au A~ A A A A A B C B D E A A A A) A2 A; AY Ba Cm Br D~ E = L M N\ = M PW Q_ Rj Su R M T& Qx M TSSYRRR@==%]&u'''RQS6SsM(,T')Q"S>S{M(.TQ VWX V YZ[&XpS(SM (^T  *\V]X^PSM(_M-P`=X[X=zbcdefgMhS=jbcdeMh#=z8ia8i aDpP B]qb Bjrv ?  ? ?@ssssssst V'u/X<vUwt |VuXvw VuX v" wD L VW u_ Xo v w # V u X v w! +!V%!u-!X=!vW!wy! 0!V!u!X!v!w" "n="EG"=i"Aq"Ay"A"A"A"A"A" B"C" B"D"X#r$s$s'$s3$s?$sN$s]$sb$tp$ x$V$u$X$v$w$ $V$u$X$v%w4% <%VI%uQ%Xa%v}%w% %V%u%X%v%w& #&V&u!&X1&vK&wm& +u&V&u&X&v&w& 0&V&u&X&v'wo' w'n'C'='A'A'A'A(A (A(A((X(Q)S)RE)Mz)T)S)R)M.*Tn*Q*R*S*M+TQ+Rc+S+M+T=,= -{-R*-U2-O:-y5E J6iGiVi66  V- !1% !L) ! .. !9 !@ !a5G !4N !BU !=[\ !WRc !u !\| !$ !]e ! !9 !L !- !G !V !lM ! ! ! ! ! !+ 0 !S(? !7N !] !(l !/{ !  !E  !T: !G !dM ![: !3 !C !$= !X !L:% !N 5 !U E !\ U !c e !j u !s !! ! !?; !% !- !b !b !# !KX !^E` !n !4| !< !{  !e !0 !_ ![ !Q  ! !^% ! >, !I{ !V6 !] !> ! W !b !< !B !W9 !; !W9 !7Q !* !y !+_ ! !f ![ !# !w3) !5@/ !g6 != ! D !YK !eR !Y !D` !M4h !Ap !Vw !~ !# !z; !P ! !1 !0 !4 ! !e2 ! ! !.= ! !cG !08 !2 !5 !. !Q ! !ldP !EV !IW_ ! p !v !N| !RN !5 !d !A !d ! !~= !+ !| E !CM !fn !Cv !f !D !f !Kf ! !P9 !N !d !- !J5 !QM !Ve ![} !( ! !y !? !F;, !I[O != [ !>} !# !H_ !'> ! !n !$ ! F !U^ ! ! ! !% !  !B !5 !l8 !W !q6 !WX ![z !u ! !,E !z ! !D !F4 !r30 !i+H !<_ !3w !N6 !L/ ! ! !1  !IB !5j !  !/  !I !_  !.@ !aV !#_ ! !$Z: !6N !9g !@U !c ! H !p+ !3 ! !06 !0QS !0z !Z. !B !L; !w+ !A !  ! !d ! S !: !6! !IR/ !o#= !K !1;Y !g !u !9= !@ !O) !9 ! !7 !0 !Yc ! !- !@. !c< !!J !X !Of !$t !=6 !( !  ! ![ !8 !L !B1 !6 ! !Y< !^ !m, !R, !/ !S !5 ! !c !Gc8 !%JU !Or ! !\ !  ! !  !^ !@ !c !. !  !  !d !DX !  !? !Xa !- ! > !}D ! ! J !eS" !uX> !LZ !Yv !LX !E !, !& !, !/>3 !\` !k| !  !7 !$  !7 ! ! !YB !XEZ !9 | !/ !I !$  !R^ !e !V0 !{[L !Wh ! !M !Y !Y ! !_,/ !_,H !2b ! Bh !,` ! B !  !' ! !d ! !K !.T ! !6& !F, !t/| !D !D !Z ! !] !B !A !{" !J( !_3 !7<: !\Q !7<X !$t !^{ !B !R ! !/ ! !3 !3 ! !Z! !! !|49! !@! !#a! !#h! !! !! ! *! !d! !L! !Y! !f! !R! !>0" !R" !\b3" !R:" !DV" !R]" !jYy" !@" !|^" ! " !" !" !X" !!" !!" !!# !!9# !!a# !!# !!# !!# !V# !K# !`$ !K $ !iJ$$ !K+$ !F$ !@M$ !\Yc$ !@j$ !$ !$ !G$ !S$ !Y$ !S$ !NC$ !.$ !>% !.% !#:.% !:5% !?K% !.R% !ih% !Ko% !E% !M_% !2% !M_% !+M% !Q.% !lE% !3% !& !J& !@7& !(3!& !7& !;>& !7Y& !;`& !& ! :& !L-& !%& !& !%& !b.' !%' !J#' !#*' !E' !#L' !R3q' !#x' !v<' !#' !P' !#' !7' !, ' !^' !>V( !? ( !>V'( !0L( !>VS( ! cs( !>Vz( !~&( !>V( !Y( !o5( !( !o5( !p% ) !o5) !CF<) !o5C) !Oh) !o5o) !E5) !o5) !U) !o5) !?) !2) !F * !2* !8+* !22* !PR* !CY* !e~* !C* !=* !C* !J * !C* !+ !C+ ! B+ !CI+ !ofn+ !Cu+ !D!+ !C+ !++ !C+ !+ !C, !S-, !C4, !8D^, !Ce, ! 2, !C, !tW, !9_, !B, !J, !1$- !@*- !aRJ- !+Q- !uOv- !`}- !z"- ! b- !<- !&M- !E- !- !h@- !V- !. !V. !x>. !VE. ! e. !Vl. !u. !k. !m. !k. !4. !k. !A/ !k / !:-/ !4/ ! T/ ![/ !/ !/ !6/ !/ !P/ !/ !/ !/ !M!0 !(0 !ZH0 !O0 !fo0 !=@v0 !90 !=@0 !^>0 !=@0 !>e0 !=@0 !`1 !R1 !871 !R>1 !<c1 !Rj1 ! 1 !R1 !6N1 !6 1 !h1 ! 1 !1 ! 2 !H1&2 ! -2 !\2 ! c2 !n2~2 ! 2 !#2 ! 2 ! - 3 !W53 !}G)3 !CM3 !XS3 ![^3 !o d3 !Eo3 !/u3 !ZN3 !3 !d3 !$3 !:3 !;3 !Q3 !:.3 !\3 ! 3 !l3 !;4 !$4 ![!4 !74 !=4 !]4 !d4 !C4 !<4 !4 !4 !4 !#4 !A4 !H.4 !? 5 !%%&5 !1X25 ! 85 !D5 ![JJ5 !bV5 !@\5 !Th5 !Yn5 !u z5 !5 !Q5 !B5 !S5 !5 !L5 !uD5 !5 !J5 !TU5 !95 !5 !5 ! 6 !#6 !E6 !40#6 ! :6 !yN6 !yg6 !y6 !y6 !y6 !6 !K6 !6 !Df 7 !77 !7(7 !E.7 !icI7 ! O7 !Yj7 !5q7 !V 7 !G7 !lS7 !y7 !7>7 !7 !)7 !V 7 !Y7 !T7 !/a7 ! I8 !Y8 !-`8 !q8 !Kx8 !T_8 !_ 8 !d8 !C9 !9 !3'9 !/79 !:G9 !DN9 !DZ9 !l;a9 !,m9 !$t9 !69 !~09 !9 !'N9 !y9 !+9 !9 !@9 !9 !O9 !F9 !9 !{*: !L%: !LE: !L`: !+|: !L: !K: !: !T: !: !b: !R: !7: !.; !i#; !" @; !G; !`; !g; !; !8; !>]; !< !B-!< !]28< !RW< !2^< ! i< !Dp< !"G|< !%< !c< !< !;8< !;8< !!< !'= !['= !ZT.= !%5= ! K= !%R= !i m= !'t= !p= !'= !9= !;= !]= !%= !s,= !+= ![)> !P'> !e4> !5;> !`]R> !*Y> !o> !*Q> !b> !=> !~>> !> !]> !L> !B> !> !X? !)? !,J? !Z;(? !O? !!_? !%h? !.!w? !.? ! C? !f3? !&M? !*? ! ? !G? !R? !+$ @ !X?@ !_>@ !FF@ !XFL@ !8R@ !>X@ !b[_@ !~aj@ !2u@ ! {@ !W@ !:@ !C@ !n@ !@ !i/@ !J@ !@ !M@ !:@ !A !5!A !N?!A !(/A !4 =A !MKA !VYA ! gA !&uA !^A !r=A !A !,A ! A !C !$C ![?C ! NC !VC !&MdC !!yC !sPC !C !DC !+C !<C !C !"C ! C !9C !C !:D !RD !A D !Y-D !!;D !'ID !XD !0gD !J}D !D !GD !jD !D ! 1D !c;D !5D !#&D !B,E !HUOE !=E !`E !#E !KE !DE !wF !3F !GZF !'a2F !AF !IF !WF ! eF !ZxF !WF !SF !F !#\F !F !CF !0VF !KF !&F !sKF !MF !OF !aF !{BF !'@F ! F !LF !F ! ?F !OF !`G !YfG ! G !:CG !,*G !B0G !5/VI !I7I !>V>I !)cI !>VjI !WI !>VI !eI !>VI !)I !>VI !)I !%J !LJ !%#J !>J !%EJ !Y`J !%gJ !XJ !, J !UJ !, J !UJ !#J !$J !#J !8E K !#K !33K !#:K !oUK !#\K ! |K !#K !OK !o5K !@K !o5K !CMK !o5L !'L !o5.L !(NL !o5UL ! zL !o5L ! L !o5L !HL !o5L !VL !o5L !"M !o5#M !""DM !CKM !-pM !CwM !N7M !CM !dM !CM !RN !C N !4N !C;N !eN !ClN !TN !CN !0LN !CN !_N !CN !:IO !C&O !HPO !JWO !`6iO !2pO !cO !2O !UO !2O !"O !2O !O ! O !KP ! P !;:P ! AP !fP ! mP !P ! P !P ! P !/)P !~Q !Q !]Q !H=3Q !;:Q !V[Q ! ZvQ !6 }Q !(Q !@Q !\XQ !R/Q !@Q !OQ !faR !SR !.R !.5R !KR !SRR !ChR !.oR !3R !VR !R !VR !sMR !VR !LR !VS !M&S !V-S ! KMS !kTS !VtS !k{S !S !kS !FS !kS !BS !kS !?T !T !W-mV !RtV !VV !RV !V !RV !,V !RV !W !RW !15W !(3[ !3E[ !E6M[ !A\[ !A|[ !2[ !V[ !%$[ !#[ !][ !*[ ![ !![ !C[ !~`\ !Y'\ !,.<\ ! ^\ !Cr\ !#\ !#\ !#\ !cJ\ !Q\ !J\ !] !Y] !K] !X`$] !;] !T]A] !>GW] !Z]]] !3ds] !y] !] !:5] !] !A] !a(] !:] !q] !/] ! ] !v:^ !$^ !!^ !<^ !QB^ !4T^ !QZ^ !8^ !&.^ !9^ !^ !2^ !V^ !_ !c _ !M8&_ !y64_ !C_ !w?N_ !89X_ !?`_ !#do_ !<_ !c_ !g?_ !K9_ !_ !iW_ !0_ !g:_ !` !5 ` !?` !Nc` ! ` !"#` !!)` !-/` !/^5` !D;` !7A` !EG` !M` !5S` !A^Y` !e_` ! <e` !C9k` !@q` ! w` !T}` !VZ` !tH` !0` !<` !U` !I` !V` !R[` !fO` !l_` !$` !K` ! 9` !L` !f` !6-` !W` !mG` !#` !~_a !\ a !Za !6%a !C5a !l ;a !AJa !#^a !#wa !Q}a !E>a !Qa !a !#a !\a !]a !6a !Z^b !6b !.3?b !`Eb !8Y[b !T]ab !=wb !cJ}b !Pdb !Z]b ! ab !Jb !EVb !b !Sb !Yb !@c !:5 c !Kc !X`$c !'Kqc !Cc !l c != c !~_c !~_c !Kc !dc !e d !`d !M%d !Q+d !v5Ad !QGd !G]d !Ucd !XPyd !~_d !~_d !Id !%d !ad ! d !TXd !|Xe ! e !3.e !')4e !\Ue ![e !(e !Ie !%e !ae !n:e !Je !e !e !ee !f !AWf !u/f !5f !`Lf !Rf !Sif !";of !f !+f !]f !Mf !c`f !:f !7f !\f !nF7g !Hg !:MXg !geg ! Wug !g !rg ! g !Mg !Cg !Tg !-g !w g !&^g ! h !eh !%8)h !~c8h !5Gh !uJVh !$Lfh !vh ! h !#h ! h !h !\h ! \h !?h !I*h !:i !Ui !:M?i !:M_i !Ai !i ! jr !qr !4r !Jr !)Ar !`r !5r ! - s !'s ! -@s ! -Ys !`_s !1\vs !K|s !Xs !Es !ds ! s !=s !['s !cs !s !=t !Jt ! Tt !5ht ! -|t !t ! -t ! -t !`t !1t !Kt !iu !E u !>(u ! /u !(Ju !['Pu !fu !mu !u !Ju !Du !Lv !=1Ov !=1iv !=1v !=1v !=1v !uv !\v !=1v !=1w !=1ww)w !=1=w Bw !Mw !HWw ojwrwzw w !=1w w `w w dw  w Uw !W+w w !Hw w !xx0x8xQxYxnxvxxxx x !=1x Vxxx !=1xx$x x !=1y y  y !`!y C1y !=1;y !{$Py !=1Zy !{$dy !/5|y0yy yy yyy7yPyy% y "y z zJzc-z5zOz0 Wz _z  hz t uz }z z? zX z !=1z !{$z z` z  z !=1z  z {? {` *{ !=1T{ !=1i{ !\{ !=1{ !=1{ !{${ !=1{ !=1| !{$|` |&| d +| !=14|  A|  c|  q| h v| !| !H| | | | | | } } %}  /} 7} G} O} b} j}2 }2 }H }| } }| } } } } } ~K ~l 6~K >~R T~ \~ o~ w~ ~&~<~ @~D~\~\~}~}~&B !=1l !=1v !{$ !=1 !{$g   !=1   =  Y  \+ !.96 < !fU pl ~0EEb Հ 2GG d# 0) ![B pY kbsww ǁ ށ 0ah'0'8DODWanv9mނ9NNX %X-m=mEZbxЃ `  :.:6WLTiq  ..ĄMڄMgpW g !=1% / 5 !IQ/b6jW`'  !=1 r  !ȅم'0: !=1  !:$ 2@:KF !=1O U !S` $nPvZ !=1 G j`  !=1Ɔ Ն !ۆ ! D  !=1  !$ !. D> !=1S !=1m !=1w !{$ !=1 !{$ !/5 Ň#͇ և > Y n#2& :; I Q ` h !w[!p!!!K"e""Ĉ"ވ#(  r  ##/$7$F%N.%]%e%t%|%O&d&&&'2'ԉ'܉''' (, *" !=1+ 0 ! : 7? !)5I mt ))~))Š)ʊ)))) )"2**H*=H*Eb*^*f***+-+-+G+ًj++j+q++ +3+; ,T,\),u PA,Y,j,,,,Ռ,݌,,, ,,),1V-9 > !=1G M !EX i !w !`? !f' ! !H] ! !̍ !`?ڍ !f' ! !H] ! !:C !, !RN !5 != !1Ύ !Վ !_ ! ! ! !- ! !! !% !L2 !9 !^CF !M !d Z !a !Gn !u !d9 !B !A !X ![ !o !E !/ !ZNȏ !BϏ !Oڏ !X !: !o !2S !  ! ![J !b !@& !T2 !Y8 !u D !J !QV !B\ !Sh !o ! !40 ! !D !D !l; !,ΐ !$Ր !6 !~0 ! !'N !y !+ ! !@! !3 !: !N !l[ !b !v ! !E6 !e !Y !` !0 !v4Ƒ ! dӑ !5Uڑ !&, !H ! !> !  ![G !S' !+. !& < !geC !Q !kX !.f ! m !>z !O !F !;4 !_* !Ub !' !$Ò !PВ !ג !QW !f !2 !~E !`0 != ! _C !Q !q W !Le !7k !2y !& !*F !D !+ !5 !. ! ! &ɓ !/ϓ !Oܓ ! !& !Y, !? !c !% !M !]&& !- !!8 !2? ! J !DQ !"G\ !c !Bn !u ! ! !G ! !IK ! !D ! !Ȕ !ϔ !Nڔ ! !@ !B !5/ !gH !m,,, , | >(I0}8~@HPX`Khpxz (08@HPX`hpx8|@<HHP|;G?     (p08 @ HpPxX`@hp@x??@@ (0}8~@HPX`Lhpx{ (08@HPX`hpx8@HP (0}8~@HPX`Lhpx{ (08@HPX`hpx8@HP (0}8~x (hpx (0px (hpx8@HPX`h  4 8\ `|   0   0 4 8 T X`   p `$ (0< @@T XPl p`    #4 8(t x, 4( @ `    0  H 0  0  9 P ` Y   ? p  ` 6 0( @@ PX `x    N # > ( "@ ,  gtkguitune/install-sh0000755000175000017500000003246411062733040013717 0ustar flohfloh#!/bin/sh # install - install a program, script, or datafile scriptversion=2006-12-25.00 # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # 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. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # 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 $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: gtkguitune/lcdview.h0000644000175000017500000000306511063701271013516 0ustar flohfloh// lcdview.h // gtk-- class for LCD-Display // // Copyright (C) 1999 Florian Berger // Email: florian.berger@jk.uni-linz.ac.at // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License Version 2 as // published by the Free Software Foundation; // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // // //#include "spec_view.h" #include #include #include #include #include #include class LCDView : public Gtk::DrawingArea { public: LCDView(const char * str); ~LCDView(); void set( const char * str ); private: Gdk::Color i_col_bg; Gdk::Color i_col_LED; char * i_string; int i_string_maxlen; int i_code[128]; int i_LCD_num; Glib::RefPtr i_draw_gc; struct{ double x,y,w,h; } i_rect[20]; void invalidate(); protected: virtual bool on_expose_event(GdkEventExpose* event); virtual void on_realize(); }; gtkguitune/Makefile0000644000175000017500000005777611064666176013411 0ustar flohfloh# Makefile.in generated by automake 1.10.1 from Makefile.am. # Makefile. Generated from Makefile.in by configure. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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)/gtkguitune pkglibdir = $(libdir)/gtkguitune pkgincludedir = $(includedir)/gtkguitune 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 = : bin_PROGRAMS = gtkguitune$(EXEEXT) 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 \ depcomp install-sh missing 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 = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = am__installdirs = "$(DESTDIR)$(bindir)" binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am_gtkguitune_OBJECTS = main.$(OBJEXT) guitune.$(OBJEXT) \ lcdview.$(OBJEXT) logview.$(OBJEXT) osziview.$(OBJEXT) \ aboutbox.$(OBJEXT) gtkguitune_OBJECTS = $(am_gtkguitune_OBJECTS) gtkguitune_DEPENDENCIES = DEFAULT_INCLUDES = -I. depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ -o $@ SOURCES = $(gtkguitune_SOURCES) DIST_SOURCES = $(gtkguitune_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 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); }; } DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = ${SHELL} /home/floh/gtkguitune/missing --run aclocal-1.10 AMTAR = ${SHELL} /home/floh/gtkguitune/missing --run tar AUTOCONF = ${SHELL} /home/floh/gtkguitune/missing --run autoconf AUTOHEADER = ${SHELL} /home/floh/gtkguitune/missing --run autoheader AUTOMAKE = ${SHELL} /home/floh/gtkguitune/missing --run automake-1.10 AWK = gawk CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 CPP = gcc -E CPPFLAGS = CXX = g++ CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo DEFS = -DHAVE_CONFIG_H DEPDIR = .deps ECHO_C = ECHO_N = -n ECHO_T = EGREP = /bin/grep -E EXEEXT = GREP = /bin/grep GTKMM_CFLAGS = -DPNG_NO_MMX_CODE -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/atk-1.0 GTKMM_LIBS = -lgtkmm-2.4 -lgdkmm-2.4 -latkmm-1.6 -lgtk-x11-2.0 -lpangomm-1.4 -lcairomm-1.0 -lglibmm-2.4 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lsigc-2.0 INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s LDFLAGS = LIBOBJS = LIBS = LN_S = ln -s LTLIBOBJS = MAKEINFO = ${SHELL} /home/floh/gtkguitune/missing --run makeinfo MKDIR_P = /bin/mkdir -p OBJEXT = o PACKAGE = gtkguitune PACKAGE_BUGREPORT = PACKAGE_NAME = PACKAGE_STRING = PACKAGE_TARNAME = PACKAGE_VERSION = PATH_SEPARATOR = : PKG_CONFIG = /usr/bin/pkg-config SET_MAKE = SHELL = /bin/sh STRIP = VERSION = 0.7 abs_builddir = /home/floh/gtkguitune abs_srcdir = /home/floh/gtkguitune abs_top_builddir = /home/floh/gtkguitune abs_top_srcdir = /home/floh/gtkguitune ac_ct_CC = gcc ac_ct_CXX = g++ am__include = include am__leading_dot = . am__quote = am__tar = ${AMTAR} chof - "$$tardir" am__untar = ${AMTAR} xf - bindir = ${exec_prefix}/bin build_alias = builddir = . datadir = ${datarootdir} datarootdir = ${prefix}/share docdir = ${datarootdir}/doc/${PACKAGE} dvidir = ${docdir} exec_prefix = ${prefix} host_alias = htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info install_sh = $(SHELL) /home/floh/gtkguitune/install-sh libdir = ${exec_prefix}/lib libexecdir = ${exec_prefix}/libexec localedir = ${datarootdir}/locale localstatedir = ${prefix}/var mandir = ${datarootdir}/man mkdir_p = /bin/mkdir -p oldincludedir = /usr/include pdfdir = ${docdir} prefix = /usr/local program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin sharedstatedir = ${prefix}/com srcdir = . sysconfdir = ${prefix}/etc target_alias = top_builddir = . top_srcdir = . SUBDIRS = icon gtkguitune_SOURCES = main.cc \ guitune.cc lcdview.cc logview.cc osziview.cc \ guitune.h lcdview.h logview.h osziview.h \ resources.h FB_logo.xpm \ aboutbox.c aboutbox.h gtkguitune_LDADD = -lgtkmm-2.4 -lgdkmm-2.4 -latkmm-1.6 -lgtk-x11-2.0 -lpangomm-1.4 -lcairomm-1.0 -lglibmm-2.4 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lsigc-2.0 INCLUDES = -DPNG_NO_MMX_CODE -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/atk-1.0 all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .cc .o .obj am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ cd $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ 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: $(am__configure_deps) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 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: $(am__configure_deps) cd $(top_srcdir) && $(AUTOHEADER) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) gtkguitune$(EXEEXT): $(gtkguitune_OBJECTS) $(gtkguitune_DEPENDENCIES) @rm -f gtkguitune$(EXEEXT) $(CXXLINK) $(gtkguitune_OBJECTS) $(gtkguitune_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c include ./$(DEPDIR)/aboutbox.Po include ./$(DEPDIR)/guitune.Po include ./$(DEPDIR)/lcdview.Po include ./$(DEPDIR)/logview.Po include ./$(DEPDIR)/main.Po include ./$(DEPDIR)/osziview.Po .c.o: $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< mv -f $(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) '$<'` mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po # source='$<' object='$@' libtool=no \ # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ # $(COMPILE) -c `$(CYGPATH_W) '$<'` .cc.o: $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po # source='$<' object='$@' libtool=no \ # DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ # $(CXXCOMPILE) -c -o $@ $< .cc.obj: $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po # source='$<' object='$@' libtool=no \ # DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ # $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` # 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): @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; \ (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): @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; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (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; nonemtpy = 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) tags=; \ 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 || \ tags="$$tags $$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; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ 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)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ am__remove_distdir=: \ am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ done -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -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-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) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(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) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && 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 $(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: @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 $(PROGRAMS) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done 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) 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-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-info: install-info-recursive install-man: install-pdf: install-pdf-recursive install-ps: install-ps-recursive installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ install-strip .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-binPROGRAMS \ clean-generic ctags ctags-recursive dist dist-all dist-bzip2 \ dist-gzip dist-lzma dist-shar dist-tarZ dist-zip distcheck \ distclean distclean-compile distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS 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-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ ps ps-am tags tags-recursive uninstall uninstall-am \ uninstall-binPROGRAMS # 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: gtkguitune/configure.in0000644000175000017500000000120011064665440014216 0ustar flohflohdnl Process this file with autoconf to produce a configure script. AC_INIT(guitune.cc) AM_INIT_AUTOMAKE(gtkguitune, 0.8) AM_CONFIG_HEADER(config.h) dnl Checks for programs. AC_PROG_AWK AC_PROG_CC AC_PROG_CXX AC_PROG_INSTALL AC_PROG_LN_S dnl Checks for libraries. PKG_CHECK_MODULES(GTKMM, glibmm-2.4 gtkmm-2.4 sigc++-2.0) AC_SUBST(GTKMM_CFLAGS) AC_SUBST(GTKMM_LIBS) dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(fcntl.h sys/ioctl.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST dnl Checks for library functions. AC_PROG_GCC_TRADITIONAL AC_OUTPUT([ Makefile icon/Makefile ]) gtkguitune/depcomp0000755000175000017500000004271311062733040013266 0ustar flohfloh#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2007-03-29.01 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 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., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, 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 . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac 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 # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} 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. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" 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. In older versions, 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. # Version 6 uses the directory in both cases. 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$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done 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,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$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" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. 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$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; 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 # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space 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 preprocessed 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'. 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 # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $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 $? # Remove any Libtool call if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # 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 ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -*|$object) ;; *) 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 preprocessed 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 -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [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 preprocessed 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 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: gtkguitune/config.h0000644000175000017500000000332611064666172013341 0ustar flohfloh/* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.in by autoheader. */ /* Define to 1 if you have the header file. */ #define HAVE_FCNTL_H 1 /* Define to 1 if you have the header file. */ #define HAVE_INTTYPES_H 1 /* Define to 1 if you have the header file. */ #define HAVE_MEMORY_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STDINT_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STDLIB_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STRINGS_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STRING_H 1 /* Define to 1 if you have the header file. */ #define HAVE_SYS_IOCTL_H 1 /* Define to 1 if you have the header file. */ #define HAVE_SYS_STAT_H 1 /* Define to 1 if you have the header file. */ #define HAVE_SYS_TYPES_H 1 /* Define to 1 if you have the header file. */ #define HAVE_UNISTD_H 1 /* Name of package */ #define PACKAGE "gtkguitune" /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "" /* Define to the full name of this package. */ #define PACKAGE_NAME "" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "" /* Define to the version of this package. */ #define PACKAGE_VERSION "" /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 /* Version number of package */ #define VERSION "0.7" /* Define to empty if `const' does not conform to ANSI C. */ /* #undef const */ gtkguitune/aclocal.m40000644000175000017500000011175611064666173013573 0ustar flohfloh# generated automatically by aclocal 1.10.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 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. # 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(AC_AUTOCONF_VERSION, [2.61],, [m4_warning([this file was generated for autoconf 2.61. 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'.])]) # 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 "$PKG_CONFIG"; then if test -n "$$1"; then pkg_cv_[]$1="$$1" else PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) fi else pkg_failed=untried 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 --errors-to-stdout --print-errors "$2"` else $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` 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 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.10' 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.10.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 AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.10.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(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` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 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. # serial 8 # 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 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 # 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 # 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 for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 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 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # 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 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 13 # 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.60])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) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) ]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_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 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 install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} 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])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 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 3 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 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 5 # 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 test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # 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 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 3 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # 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 4 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # 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 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_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_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 gtkguitune/icon/0000755000175000017500000000000011064666176012653 5ustar flohflohgtkguitune/icon/Makefile0000644000175000017500000002401511064666176014315 0ustar flohfloh# Makefile.in generated by automake 1.10.1 from Makefile.am. # icon/Makefile. Generated from Makefile.in by configure. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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)/gtkguitune pkglibdir = $(libdir)/gtkguitune pkgincludedir = $(includedir)/gtkguitune 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 = : subdir = icon 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 = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(icondir)" iconDATA_INSTALL = $(INSTALL_DATA) DATA = $(icon_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = ${SHELL} /home/floh/gtkguitune/missing --run aclocal-1.10 AMTAR = ${SHELL} /home/floh/gtkguitune/missing --run tar AUTOCONF = ${SHELL} /home/floh/gtkguitune/missing --run autoconf AUTOHEADER = ${SHELL} /home/floh/gtkguitune/missing --run autoheader AUTOMAKE = ${SHELL} /home/floh/gtkguitune/missing --run automake-1.10 AWK = gawk CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 CPP = gcc -E CPPFLAGS = CXX = g++ CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo DEFS = -DHAVE_CONFIG_H DEPDIR = .deps ECHO_C = ECHO_N = -n ECHO_T = EGREP = /bin/grep -E EXEEXT = GREP = /bin/grep GTKMM_CFLAGS = -DPNG_NO_MMX_CODE -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/atk-1.0 GTKMM_LIBS = -lgtkmm-2.4 -lgdkmm-2.4 -latkmm-1.6 -lgtk-x11-2.0 -lpangomm-1.4 -lcairomm-1.0 -lglibmm-2.4 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lsigc-2.0 INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s LDFLAGS = LIBOBJS = LIBS = LN_S = ln -s LTLIBOBJS = MAKEINFO = ${SHELL} /home/floh/gtkguitune/missing --run makeinfo MKDIR_P = /bin/mkdir -p OBJEXT = o PACKAGE = gtkguitune PACKAGE_BUGREPORT = PACKAGE_NAME = PACKAGE_STRING = PACKAGE_TARNAME = PACKAGE_VERSION = PATH_SEPARATOR = : PKG_CONFIG = /usr/bin/pkg-config SET_MAKE = SHELL = /bin/sh STRIP = VERSION = 0.7 abs_builddir = /home/floh/gtkguitune/icon abs_srcdir = /home/floh/gtkguitune/icon abs_top_builddir = /home/floh/gtkguitune abs_top_srcdir = /home/floh/gtkguitune ac_ct_CC = gcc ac_ct_CXX = g++ am__include = include am__leading_dot = . am__quote = am__tar = ${AMTAR} chof - "$$tardir" am__untar = ${AMTAR} xf - bindir = ${exec_prefix}/bin build_alias = builddir = . datadir = ${datarootdir} datarootdir = ${prefix}/share docdir = ${datarootdir}/doc/${PACKAGE} dvidir = ${docdir} exec_prefix = ${prefix} host_alias = htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info install_sh = $(SHELL) /home/floh/gtkguitune/install-sh libdir = ${exec_prefix}/lib libexecdir = ${exec_prefix}/libexec localedir = ${datarootdir}/locale localstatedir = ${prefix}/var mandir = ${datarootdir}/man mkdir_p = /bin/mkdir -p oldincludedir = /usr/include pdfdir = ${docdir} prefix = /usr/local program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin sharedstatedir = ${prefix}/com srcdir = . sysconfdir = ${prefix}/etc target_alias = top_builddir = .. top_srcdir = .. icondir = $(datadir)/icons/hicolor/scalable/apps icon_DATA = guitune_logo.svg EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu icon/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu icon/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 install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) test -z "$(icondir)" || $(MKDIR_P) "$(DESTDIR)$(icondir)" @list='$(icon_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(iconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(icondir)/$$f'"; \ $(iconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(icondir)/$$f"; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(icondir)/$$f'"; \ rm -f "$(DESTDIR)$(icondir)/$$f"; \ done tags: TAGS TAGS: ctags: CTAGS CTAGS: 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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 $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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) 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 mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic 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-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-iconDATA # 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: gtkguitune/icon/guitune_logo.svg0000644000175000017500000003046111064275557016077 0ustar flohfloh image/svg+xml gtkguitune/icon/Makefile.am0000644000175000017500000000015111064276136014675 0ustar flohflohicondir = $(datadir)/icons/hicolor/scalable/apps icon_DATA = guitune_logo.svg EXTRA_DIST = $(icon_DATA) gtkguitune/icon/Makefile.in0000644000175000017500000002213211064666173014715 0ustar flohfloh# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = : subdir = icon 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 = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(icondir)" iconDATA_INSTALL = $(INSTALL_DATA) DATA = $(icon_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ GTKMM_CFLAGS = @GTKMM_CFLAGS@ GTKMM_LIBS = @GTKMM_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ 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@ ac_ct_CXX = @ac_ct_CXX@ 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_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ 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_builddir = @top_builddir@ top_srcdir = @top_srcdir@ icondir = $(datadir)/icons/hicolor/scalable/apps icon_DATA = guitune_logo.svg EXTRA_DIST = $(icon_DATA) all: all-am .SUFFIXES: $(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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu icon/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu icon/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 install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) test -z "$(icondir)" || $(MKDIR_P) "$(DESTDIR)$(icondir)" @list='$(icon_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(iconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(icondir)/$$f'"; \ $(iconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(icondir)/$$f"; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(icondir)/$$f'"; \ rm -f "$(DESTDIR)$(icondir)/$$f"; \ done tags: TAGS TAGS: ctags: CTAGS CTAGS: 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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 $(DATA) installdirs: for dir in "$(DESTDIR)$(icondir)"; 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) 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 mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-iconDATA install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-iconDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic 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-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-iconDATA # 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: gtkguitune/stamp-h10000644000175000017500000000002711064666204013267 0ustar flohflohtimestamp for config.h gtkguitune/osziview.h0000644000175000017500000000466211063041540013740 0ustar flohfloh// osziview.cc // // oszi - widget for gtk-- // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License Version 2 as // published by the Free Software Foundation; // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // // #include class OsziView : public Gtk::DrawingArea { // Q_OBJECT public: OsziView(); ~OsziView(); double get_freq (void) const { return freq; } void setSampleData (const unsigned char *s, int num_samples); void setSampleData (const short *s, int num_samples); void setSampleFreq (double f); void setTrigFact (double fact); void setAdaptive (int active); double getTrigFact (); void invalidate (); void invalidate_sample (); protected: bool on_expose_event(GdkEventExpose* p0); void on_realize(); // void draw_default_impl(); // void draw_impl(GdkRectangle* p0); private: enum SampFmt { U8, S16_LE }; short int * samp; GByteArray * samp_byte_array; int sampnr; double sampfreq; int wscr, hscr, xscr, yscr; double trigfact; Glib::RefPtr i_GC; Gdk::Color i_col_bg; Gdk::Color i_col_trig; Gdk::Color i_col_mark; Gdk::Color i_col_data; Gdk::Color i_col_scale; Gdk::Color i_col_ticks; Gdk::Color i_col_zero; enum SampFmt i_sampfmt; int i_minsamp; int i_maxsamp; int i_divisor; int i_adaptive_scale; int startpoint; int endpoint; int trigger_a; int trigger_b; double freq; void paint_sample (); void paint_marks (); void paint_scale (); void calc_minmax(void); void calc_freq(void); void recalc(void); void copy_sample_data(const void *ptr, int data_size); }; gtkguitune/config.h.in0000644000175000017500000000311011064666176013741 0ustar flohfloh/* config.h.in. Generated from configure.in by autoheader. */ /* Define to 1 if you have the header file. */ #undef HAVE_FCNTL_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_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_IOCTL_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 /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define to empty if `const' does not conform to ANSI C. */ #undef const gtkguitune/config.status0000755000175000017500000007422611064666176014453 0ustar flohfloh#! /bin/sh # Generated by configure. # 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-/bin/sh} ## --------------------- ## ## 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=: # Zsh 3.x and 4.x performs 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 # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # 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.) as_nl=' ' 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 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. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # 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 || 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" || { 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 fi echo >conf$$.file 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 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.61. 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` " # Files that config.status was made for. config_files=" Makefile icon/Makefile" config_headers=" config.h" config_commands=" depfiles" ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." ac_cs_version="\ config.status configured by ./configure, generated by GNU Autoconf 2.61, with options \"\" Copyright (C) 2006 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='/home/floh/gtkguitune' srcdir='.' INSTALL='/usr/bin/install -c' MKDIR_P='/bin/mkdir -p' # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. ac_need_defaults=: while test $# != 0 do case $1 in --*=*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; 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 ) echo "$ac_cs_version"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header { echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; };; --help | --hel | -h ) echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) { 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 if $ac_cs_recheck; then echo "running CONFIG_SHELL=/bin/sh /bin/sh ./configure " $ac_configure_extra_args " --no-create --no-recursion" >&6 CONFIG_SHELL=/bin/sh export CONFIG_SHELL exec /bin/sh "./configure" $ac_configure_extra_args --no-create --no-recursion fi exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX echo "$ac_log" } >&5 # # INIT-COMMANDS # AMDEP_TRUE="" ac_aux_dir="." # 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" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "icon/Makefile") CONFIG_FILES="$CONFIG_FILES icon/Makefile" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason 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") } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } # # Set up the sed scripts for CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "$CONFIG_FILES"; then cat >"$tmp/subs-1.sed" <<\CEOF /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end s,@SHELL@,|#_!!_#|/bin/sh,g s,@PATH_SEPARATOR@,|#_!!_#|:,g s,@PACKAGE_NAME@,|#_!!_#|,g s,@PACKAGE_TARNAME@,|#_!!_#|,g s,@PACKAGE_VERSION@,|#_!!_#|,g s,@PACKAGE_STRING@,|#_!!_#|,g s,@PACKAGE_BUGREPORT@,|#_!!_#|,g s,@exec_prefix@,|#_!!_#|${prefix},g s,@prefix@,|#_!!_#|/usr/local,g s,@program_transform_name@,|#_!!_#|s\,x\,x\,,g s,@bindir@,|#_!!_#|${exec_prefix}/bin,g s,@sbindir@,|#_!!_#|${exec_prefix}/sbin,g s,@libexecdir@,|#_!!_#|${exec_prefix}/libexec,g s,@datarootdir@,|#_!!_#|${prefix}/share,g s,@datadir@,|#_!!_#|${datarootdir},g s,@sysconfdir@,|#_!!_#|${prefix}/etc,g s,@sharedstatedir@,|#_!!_#|${prefix}/com,g s,@localstatedir@,|#_!!_#|${prefix}/var,g s,@includedir@,|#_!!_#|${prefix}/include,g s,@oldincludedir@,|#_!!_#|/usr/include,g s,@docdir@,|#_!!_#|${datarootdir}/doc/${PACKAGE},g s,@infodir@,|#_!!_#|${datarootdir}/info,g s,@htmldir@,|#_!!_#|${docdir},g s,@dvidir@,|#_!!_#|${docdir},g s,@pdfdir@,|#_!!_#|${docdir},g s,@psdir@,|#_!!_#|${docdir},g s,@libdir@,|#_!!_#|${exec_prefix}/lib,g s,@localedir@,|#_!!_#|${datarootdir}/locale,g s,@mandir@,|#_!!_#|${datarootdir}/man,g s,@DEFS@,|#_!!_#|-DHAVE_CONFIG_H,g s,@ECHO_C@,|#_!!_#|,g s,@ECHO_N@,|#_!!_#|-n,g s,@ECHO_T@,|#_!!_#|,g s,@LIBS@,|#_!!_#|,g s,@build_alias@,|#_!!_#|,g s,@host_alias@,|#_!!_#|,g s,@target_alias@,|#_!!_#|,g s,@INSTALL_PROGRAM@,|#_!!_#|${INSTALL},g s,@INSTALL_SCRIPT@,|#_!!_#|${INSTALL},g s,@INSTALL_DATA@,|#_!!_#|${INSTALL} -m 644,g s,@am__isrc@,|#_!!_#|,g s,@CYGPATH_W@,|#_!!_#|echo,g s,@PACKAGE@,|#_!!_#|gtkguitune,g s,@VERSION@,|#_!!_#|0.7,g s,@ACLOCAL@,|#_!!_#|${SHELL} /home/floh/gtkguitune/missing --run aclocal-1.10,g s,@AUTOCONF@,|#_!!_#|${SHELL} /home/floh/gtkguitune/missing --run autoconf,g s,@AUTOMAKE@,|#_!!_#|${SHELL} /home/floh/gtkguitune/missing --run automake-1.10,g s,@AUTOHEADER@,|#_!!_#|${SHELL} /home/floh/gtkguitune/missing --run autoheader,g s,@MAKEINFO@,|#_!!_#|${SHELL} /home/floh/gtkguitune/missing --run makeinfo,g s,@install_sh@,|#_!!_#|$(SHELL) /home/floh/gtkguitune/install-sh,g s,@STRIP@,|#_!!_#|,g s,@INSTALL_STRIP_PROGRAM@,|#_!!_#|$(install_sh) -c -s,g s,@mkdir_p@,|#_!!_#|/bin/mkdir -p,g s,@AWK@,|#_!!_#|gawk,g s,@SET_MAKE@,|#_!!_#|,g s,@am__leading_dot@,|#_!!_#|.,g s,@AMTAR@,|#_!!_#|${SHELL} /home/floh/gtkguitune/missing --run tar,g s,@am__tar@,|#_!!_#|${AMTAR} chof - "$$tardir",g s,@am__untar@,|#_!!_#|${AMTAR} xf -,g s,@CC@,|#_!!_#|gcc,g s,@CFLAGS@,|#_!!_#|-g -O2,g s,@LDFLAGS@,|#_!!_#|,g s,@CPPFLAGS@,|#_!!_#|,g s,@ac_ct_CC@,|#_!!_#|gcc,g s,@EXEEXT@,|#_!!_#|,g s,@OBJEXT@,|#_!!_#|o,g s,@DEPDIR@,|#_!!_#|.deps,g s,@am__include@,|#_!!_#|include,g s,@am__quote@,|#_!!_#|,g s,@AMDEP_TRUE@,|#_!!_#|,g s,@AMDEP_FALSE@,|#_!!_#|#,g s,@AMDEPBACKSLASH@,|#_!!_#|\\,g s,@CCDEPMODE@,|#_!!_#|depmode=gcc3,g s,@am__fastdepCC_TRUE@,|#_!!_#|,g s,@am__fastdepCC_FALSE@,|#_!!_#|#,g s,@CXX@,|#_!!_#|g++,g s,@CXXFLAGS@,|#_!!_#|-g -O2,g s,@ac_ct_CXX@,|#_!!_#|g++,g s,@CXXDEPMODE@,|#_!!_#|depmode=gcc3,g s,@am__fastdepCXX_TRUE@,|#_!!_#|,g s,@am__fastdepCXX_FALSE@,|#_!!_#|#,g s,@LN_S@,|#_!!_#|ln -s,g s,@PKG_CONFIG@,|#_!!_#|/usr/bin/pkg-config,g s,@GTKMM_CFLAGS@,|#_!!_#|-DPNG_NO_MMX_CODE -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/atk-1.0 ,g s,@GTKMM_LIBS@,|#_!!_#|-lgtkmm-2.4 -lgdkmm-2.4 -latkmm-1.6 -lgtk-x11-2.0 -lpangomm-1.4 -lcairomm-1.0 -lglibmm-2.4 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lsigc-2.0 ,g s,@CPP@,|#_!!_#|gcc -E,g s,@GREP@,|#_!!_#|/bin/grep,g s,@EGREP@,|#_!!_#|/bin/grep -E,g s,@LIBOBJS@,|#_!!_#|,g s,@LTLIBOBJS@,|#_!!_#|,g :end s/|#_!!_#|//g CEOF fi # test -n "$CONFIG_FILES" for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 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 || { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 echo "$as_me: error: cannot find input file: $ac_f" >&2;} { (exit 1); exit 1; }; };; 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 "`IFS=: echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} fi case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin";; 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 || 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=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 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=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`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 # 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= case `sed -n '/datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p ' $ac_file_inputs` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} ac_datarootdir_hack=' s&@datadir@&${datarootdir}&g s&@docdir@&${datarootdir}/doc/${PACKAGE}&g s&@infodir@&${datarootdir}/info&g s&@localedir@&${datarootdir}/locale&g s&@mandir@&${datarootdir}/man&g s&\${datarootdir}&${prefix}/share&g' ;; esac sed "/^[ ]*VPATH[ ]*=/{ s/:*\$(srcdir):*/:/ s/:*\${srcdir}:*/:/ s/:*@srcdir@:*/:/ s/^\([^=]*=[ ]*\):*/\1/ s/:*$// s/^[^=]*=[ ]*$// } :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s&@configure_input@&$configure_input&;t t s&@top_builddir@&$ac_top_builddir_sub&;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 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out 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"; } && { 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 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 ;; :H) # # CONFIG_HEADER # # First, check the format of the line: cat >"$tmp/defines.sed" <<\CEOF /^[ ]*#[ ]*undef[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[ ]*$/b def /^[ ]*#[ ]*define[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[( ]/b def b :def s/$/ / s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_NAME\)[ (].*,\1define\2 "" , s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_TARNAME\)[ (].*,\1define\2 "" , s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_VERSION\)[ (].*,\1define\2 "" , s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_STRING\)[ (].*,\1define\2 "" , s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_BUGREPORT\)[ (].*,\1define\2 "" , s,^\([ #]*\)[^ ]*\([ ]*PACKAGE\)[ (].*,\1define\2 "gtkguitune" , s,^\([ #]*\)[^ ]*\([ ]*VERSION\)[ (].*,\1define\2 "0.7" , s,^\([ #]*\)[^ ]*\([ ]*STDC_HEADERS\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_TYPES_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_STAT_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDLIB_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_STRING_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_MEMORY_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_STRINGS_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_INTTYPES_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDINT_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_UNISTD_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_FCNTL_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_IOCTL_H\)[ (].*,\1define\2 1 , s,^\([ #]*\)[^ ]*\([ ]*HAVE_UNISTD_H\)[ (].*,\1define\2 1 , s/ $// s,^[ #]*u.*,/* & */, CEOF sed -f "$tmp/defines.sed" $ac_file_inputs >"$tmp/out1" ac_result="$tmp/out1" if test x"$ac_file" != x-; then echo "/* $configure_input */" >"$tmp/config.h" cat "$ac_result" >>"$tmp/config.h" if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else rm -f $ac_file mv "$tmp/config.h" $ac_file fi else echo "/* $configure_input */" cat "$ac_result" fi rm -f "$tmp/out12" # 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 || 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) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # 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 || 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 || 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=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; esac done # for ac_tag { (exit 0); exit 0; } gtkguitune/Makefile.am0000644000175000017500000000064211064305514013743 0ustar flohfloh## Makefile.am ## 14.07.2000 SUBDIRS = icon bin_PROGRAMS = gtkguitune gtkguitune_SOURCES = main.cc \ guitune.cc lcdview.cc logview.cc osziview.cc \ guitune.h lcdview.h logview.h osziview.h \ resources.h FB_logo.xpm \ aboutbox.c aboutbox.h gtkguitune_LDADD = @GTKMM_LIBS@ INCLUDES = @GTKMM_CFLAGS@ gtkguitune/gtkguitune0000755000175000017500000212342511064666204014040 0ustar flohflohELF>@@@8@(%@@@@@@@@@ aa aa@@ PtdhhAhAQtd/lib64/ld-linux-x86-64.so.2GNUM|K$,1So xw2#&.8" -75EJ@FK/b7:BA?3n):>H<sz+O\L%(~A'I, 09 pu. ; y3j>DL5Q8=JB6-Iq!&]0H4}GC9$%/6!24[1aYNef<Zh'=Pki*EUr^X" T *g _MtDlGV )F(dCm#`@v ?;WcR{+  $!H @2d`@ lX́L8,  S,  1I  "@JO D2"0pDmD.JA3t @$QB %a _!@`t    "#$&'(,-.12469<>CFGIJL GKy8ӪRO}2fU\S_|A)* R =U06ym OU=pwVsIL[Ilۓue^[8|22\l-Ld(w?NQ~p=mwg8,ō8zc9A_؁AŠ%x F6}5(Yw'xM$Q)@&/30AqX 4Yn_+ Z2p{v7,T\5O3czmġn6%3eK^6)' +5Uf,("&8"nFO,+!,' "^OR~'k&c'N'+U"9N-&+^d+V'I))A+s:8w+'N$0Q%+((IZdmI%+ ,1Sw)8'wU E + _$+H,D;4,d"p+Wh fA,$L3%G' "d,%Hw,/,drxF3z(M$,e3$!,N(Vd:,f|$*%!+'I(*p$^m m!d <8,N ]!j,codq,l% @g@ ?X@ ;h@f8@ZjȀ@ @Z@ ؂@oo@B @h@Z@ j@i }@H@B#x@"@Z@o@ % ؈@BV,(a" @" @@!a(H@dh@Z6Ȍ@Z(@o@ @R@oA @Z" P@:}@ h@ #}@ }~@Z" 0@(@Z0"@ZX@xa؄@"x@Z\ @B(@ ȏ@ " 0@ X@i@g],(aHH@ !!a!pa8k!Pa @h@ Z@ @ZM @g+؎@Z" @ @Z/ ~@!a(8@@#,a!@(@r-x@ @Rh@ a#@ H@Z@i3@DH@M@ Ȏ@" @@V!a(@o,8@ @Bha"@B@g !0aD#@Bt@Z haj"x@ZF@ @Zd X@ H@BE !Pa @ J@ Ua!0a؇@n XcA x@C؊@ @g @ZX@~@ ,a@Zi@+X~@Zt " @A@ @+!aXD@Zx (@iX@،@x@j^@o ~@rW @H~@@ZX@Z" @v @Y(@H@r8@Z#x@[+8@,#h@ }x@ h@{!x@@B=!@Za@oH+@%~@B8@(@ N@Z`@ !" P@؏@ilibgtkmm-2.4.so.1_ZN4sigc10connectionC1ERNS_9slot_baseE_ZTv0_n32_N4Glib6ObjectD0Ev_ZTIN4Glib10ObjectBaseEgtk_widget_grab_default_ZTIN4Glib9InterfaceE_ZN4Glib6ObjectD0Ev_ZN4sigc8internal8slot_rep6notifyEPvgtk_label_get_type_ZN5Pango15FontDescriptionD1Evgtk_widget_get_type_ZN3Gdk5ColorC1Ev_ZNK4Glib10ObjectBase9referenceEvg_type_check_instance_cast_ZTv0_n32_N4Glib9InterfaceD0Ev_ZTIN4Glib6ObjectEgtk_text_view_get_typeg_log_ZN3Atk11ImplementorD1Evgtk_icon_theme_get_for_screen_ZN4Glib10ObjectBase15destroy_notify_Ev_ZNK4sigc9trackable27add_destroy_notify_callbackEPvPFS1_S1_Egtk_widget_get_screen_ZTIN3Atk11ImplementorE_ZN3Atk11Implementor21ref_accessibile_vfuncEv_ZTv0_n32_N3Atk11ImplementorD1Evgtk_container_get_type_ZN4Glib10ObjectBaseC2Evgtk_container_set_border_widthgtk_image_set_from_pixbuf_ZN4Glib9InterfaceD1Evgtk_icon_theme_load_icon_ZN4sigc9slot_baseC2EPNS_8internal8slot_repE_ZN3Atk11ImplementorD0Ev_ZN4Glib17SignalProxyNormal8connect_ERKN4sigc9slot_baseEb_ZNK4sigc9trackable30remove_destroy_notify_callbackEPv_ZN4sigc9trackableD2Evgtk_window_set_titlegtk_container_add_ZTv0_n32_N3Atk11ImplementorD0Evgtk_scrolled_window_set_policygtk_box_get_type_ZN4Glib7ustringC1Ev_ZNK4Glib10ObjectBase11unreferenceEvgtk_text_buffer_set_text_ZN4sigc10connectionD1Evgtk_box_pack_startgtk_text_view_get_buffergtk_box_pack_endgtk_image_get_type_ZN4sigc9trackableC2Ev_ZN4Glib9InterfaceD0Ev_Jv_RegisterClasses_ZN4Glib7ustringD1Ev_ZN4Glib10ObjectBaseD2Evgtk_dialog_get_typegtk_text_view_set_editable_ZN4Glib17SignalProxyNormalD2Ev_ZTv0_n32_N4Glib6ObjectD1Evgtk_text_view_set_wrap_modegtk_widget_show_allgtk_object_get_typegtk_widget_showg_object_unref_ZN4Glib10ObjectBase10set_manageEvgtk_scrolled_window_get_type_ZN4Glib7ustringC1EPKc_ZTv0_n32_N4Glib9InterfaceD1Ev_ZN4sigc9slot_baseD2Evgtk_label_set_justify__gmon_start___ZN3Gdk5ColorD1Evgtk_window_get_type_ZN4Glib6ObjectD1Ev_ZN3Gtk10Adjustment9set_valueEd_ZTv0_n32_N3Gtk11DrawingAreaD1Ev_ZTIN3Gtk5TableE_ZN3Gtk6ObjectD1Ev_init_ZN3Gtk6Widget19on_drag_data_deleteERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk5LabelC1ERKN4Glib7ustringEb_ZN3Gtk6Widget7on_showEv_ZN3Gtk7StockIDD1Ev_ZN3Gtk6manageINS_7MenuBarEEEPT_S3__ZN3Gtk6Widget20on_hierarchy_changedEPS0__ZN3Gtk11DrawingAreaD0Ev_ZN3Gtk6WindowC1ENS_10WindowTypeE_ZN3Gtk6Widget13on_grab_focusEv_ZTIN3Gtk6ObjectE_ZN3Gtk9ContainerD1Ev_ZN3Gtk12Menu_Helpers8MenuList6insertEN4Glib17List_Cpp_IteratorI12_GtkMenuItemNS_8MenuItemEEERKNS0_7ElementE_ZNK3Gtk12ToggleButton10get_activeEv_ZN3Gtk6Widget21on_drag_data_receivedERKN4Glib6RefPtrIN3Gdk11DragContextEEEiiRKNS_13SelectionDataEjj_ZN3Gtk6Widget21on_selection_receivedERKNS_13SelectionDataEj_ZN3Gtk6Widget26on_selection_request_eventEP18_GdkEventSelection_ZN3Gtk6Widget20get_accessible_vfuncEv_ZN3Gtk9Container6on_addEPNS_6WidgetE_ZN3Gtk5TableD0Ev_ZN3Gtk6Widget18on_no_expose_eventEP12_GdkEventAny_ZN3Gtk6manageINS_5TableEEEPT_S3__ZN3Gtk6Widget16on_drag_data_getERKN4Glib6RefPtrIN3Gdk11DragContextEEERNS_13SelectionDataEjj_ZN3Gtk12Menu_Helpers13StockMenuElemC1ERKNS_7StockIDERKN4sigc4slotIvNS5_3nilES7_S7_S7_S7_S7_S7_EE_ZNK3Gtk6Widget11get_pointerERiS1__ZN3Gtk6Widget13on_drag_beginERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk11DrawingAreaD1Ev_ZNK3Gtk6Widget14get_allocationEv_ZTIN3Gtk11DrawingAreaE_ZN3Gtk6Widget16on_style_changedERKN4Glib6RefPtrINS_5StyleEEE_ZN3Gtk9Container18on_set_focus_childEPNS_6WidgetE_ZN3Gtk5Stock5ABOUTE_fini_ZN3Gtk6Widget14on_unmap_eventEP12_GdkEventAny_ZN3Gtk5TableC2Ejjb_ZN3Gtk4Main4quitEv_ZN3Gtk6Widget15on_delete_eventEP12_GdkEventAny_ZN3Gtk6Widget12get_colormapEv_ZN3Gtk5TableD1Ev_ZN3Gtk6Widget10get_windowEv_ZNK3Gtk6Widget10get_heightEv_ZN3Gtk6Widget14on_drag_motionERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZN3Gtk6Object10set_manageEv_ZN3Gtk9MenuShell5itemsEv_ZN3Gtk6Widget6on_mapEv_ZN3Gtk9Container15on_check_resizeEv_ZThn16_N3Gtk11DrawingAreaD0Ev_ZN3Gtk6Object15destroy_notify_Ev_ZN3Gtk11DrawingAreaD2Ev_ZN3Gtk9Container3addERNS_6WidgetE_ZTv0_n32_N3Gtk6WidgetD0Ev_ZN3Gtk6Widget39dispatch_child_properties_changed_vfuncEjPP11_GParamSpec_ZN3Gtk6Widget23on_button_release_eventEP15_GdkEventButton_ZN3Gtk4MainC1ERiRPPcb_ZN3Gtk6Widget18on_focus_out_eventEP14_GdkEventFocus_ZN3Gtk7MenuBarC1Ev_ZN3Gtk6manageINS_11CheckButtonEEEPT_S3__ZN3Gtk6Widget11on_drag_endERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk4Main3runEv_ZN3Gtk6Widget22on_proximity_out_eventEP18_GdkEventProximity_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEES3_EEvRKT_RKT0__ZNK3Gtk13CheckMenuItem10get_activeEv_ZN3Gtk6Widget16on_state_changedENS_9StateTypeE_ZN3Gtk5TableD2Ev_ZN3Gtk6Widget19signal_delete_eventEv_ZThn16_N3Gtk6WidgetD0Ev_ZN3Gtk6manageINS_4MenuEEEPT_S3__ZN3Gtk6Widget20on_mnemonic_activateEb_ZN3Gtk12ToggleButton10set_activeEb_ZN3Gtk12Menu_Helpers8MenuElemC1ERKN4Glib7ustringERNS_4MenuE_ZThn16_N3Gtk11DrawingAreaD1Ev_ZN3Gtk6Widget19create_pango_layoutERKN4Glib7ustringE_ZN3Gtk12Menu_Helpers13SeparatorElemC1Ev_ZThn16_N3Gtk9ContainerD0Ev_ZN3Gtk6manageINS_10SpinButtonEEEPT_S3__ZN3Gtk6Widget26on_visibility_notify_eventEP19_GdkEventVisibility_ZTv0_n32_N3Gtk9ContainerD0Ev_ZN3Gtk6Widget15on_child_notifyEP11_GParamSpec_ZN3Gtk6Widget12on_unrealizeEv_ZTv0_n32_N3Gtk6WidgetD1Ev_ZTv0_n32_N3Gtk6ObjectD0Ev_ZTv0_n56_N3Gtk6Object15destroy_notify_Ev_ZN3Gtk6Window16set_default_sizeEii_ZN3Gtk5Table16set_row_spacingsEj_ZN3Gtk10SpinButtonC1ERNS_10AdjustmentEdj_ZN3Gtk5Stock4QUITE_ZN3Gtk6Widget21on_leave_notify_eventEP17_GdkEventCrossing_ZN3Gtk10SpinButton10set_digitsEj_ZN3Gtk12ToggleButton14signal_toggledEv_ZN3Gtk12Menu_Helpers13RadioMenuElemC1ERNS_16RadioButtonGroupERKN4Glib7ustringERKN4sigc4slotIvNS8_3nilESA_SA_SA_SA_SA_SA_EE_ZN3Gtk12Menu_Helpers7ElementD2Ev_ZN3Gtk7StockIDC1ERKNS_14BuiltinStockIDE_ZN3Gtk6Widget15on_scroll_eventEP15_GdkEventScroll_ZN3Gtk6Widget21on_proximity_in_eventEP18_GdkEventProximity_ZN3Gtk6Widget24on_property_notify_eventEP17_GdkEventProperty_ZNK3Gtk12Menu_Helpers8MenuListixEm_ZThn16_N3Gtk6WidgetD1Ev_ZN3Gtk16RadioButtonGroupC1Ev_ZTIN3Gtk6WidgetE_ZN3Gtk6Widget18on_key_press_eventEP12_GdkEventKey_ZNK3Gtk6Widget9get_widthEv_ZThn16_N3Gtk9ContainerD1Ev_ZN3Gtk6Widget15on_expose_eventEP15_GdkEventExpose_ZTv0_n32_N3Gtk5TableD0Ev_ZTv0_n32_N3Gtk9ContainerD1Ev_ZN3Gtk5Table6attachERNS_6WidgetEjjjjNS_13AttachOptionsES3_jj_ZN3Gtk6Widget18on_configure_eventEP18_GdkEventConfigure_ZTv0_n32_N3Gtk6ObjectD1Ev_ZN3Gtk6Widget13on_drag_leaveERKN4Glib6RefPtrIN3Gdk11DragContextEEEj_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEES3_EEvRKT_RKT0__ZN3Gtk4VBoxC1Ebi_ZN3Gtk6Widget4showEv_ZN3Gtk6Widget16set_size_requestEii_ZN3Gtk6Widget15on_size_requestEP15_GtkRequisition_ZN3Gtk6manageINS_5FrameEEEPT_S3__ZNK3Gtk9Container24get_child_property_vfuncEP10_GtkWidgetjP7_GValueP11_GParamSpec_ZN3Gtk9Container20composite_name_vfuncEP10_GtkWidget_ZN3Gtk6Widget4hideEv_ZN3Gtk6Widget20on_direction_changedENS_13TextDirectionE_ZN3Gtk6Widget14on_grab_notifyEb_ZN3Gtk8AccelKeyC1ERKN4Glib7ustringES4__ZN3Gtk6Widget10set_eventsEN3Gdk9EventMaskE_ZN3Gtk6Widget15on_client_eventEP15_GdkEventClient_ZNK3Gtk9Container16child_type_vfuncEv_ZTv0_n32_N3Gtk5TableD1Ev_ZN3Gtk6Widget21on_enter_notify_eventEP17_GdkEventCrossing_ZN3Gtk5FrameC1ERKN4Glib7ustringE_ZN3Gtk4MainD1Ev_ZN3Gtk6WidgetD0Ev_ZN3Gtk5Table16set_col_spacingsEj_ZNK3Gtk6Widget11is_realizedEv_ZN3Gtk6Widget17on_focus_in_eventEP14_GdkEventFocus_ZN3Gtk6Widget17on_screen_changedERKN4Glib6RefPtrIN3Gdk6ScreenEEE_ZN3Gtk6Widget25on_selection_notify_eventEP18_GdkEventSelection_ZN3Gtk6Widget16on_size_allocateERN3Gdk9RectangleE_ZN3Gtk12Menu_Helpers8MenuElemC1ERKN4Glib7ustringERKNS_8AccelKeyERNS_4MenuE_ZN3Gtk5TableC1Ejjb_ZN3Gtk6Widget20on_key_release_eventEP12_GdkEventKey_ZN3Gtk10AdjustmentC1Edddddd_ZN3Gtk6Widget14show_all_vfuncEv_ZN3Gtk6manageINS_5LabelEEEPT_S3__ZN3Gtk6Widget21on_button_press_eventEP15_GdkEventButton_ZThn16_N3Gtk5TableD0Ev_ZN3Gtk11CheckButtonC1ERKN4Glib7ustringEb_ZN3Gtk6Widget7on_hideEv_ZNK3Gtk10Adjustment9get_valueEv_ZN3Gtk9Container9on_removeEPNS_6WidgetE_ZN3Gtk6Widget17on_get_accessibleEv_ZN3Gtk6Widget12on_drag_dropERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZN3Gtk6Widget8on_unmapEv_ZN3Gtk6Widget8on_focusENS_13DirectionTypeE_ZTv0_n32_N3Gtk11DrawingAreaD0Ev_ZN3Gtk6Widget17on_parent_changedEPS0__ZN3Gtk9Container24set_child_property_vfuncEP10_GtkWidgetjPK7_GValueP11_GParamSpec_ZN3Gtk6Widget21on_window_state_eventEP20_GdkEventWindowState_ZN3Gtk6WidgetD1Ev_ZN3Gtk6ObjectD0Ev_ZN3Gtk6manageINS_4VBoxEEEPT_S3__ZTIN3Gtk9ContainerE_ZN3Gtk6WindowD1Ev_ZN3Gtk10Adjustment20signal_value_changedEv_ZN3Gtk6Widget8show_allEv_ZN3Gtk6Widget22on_motion_notify_eventEP15_GdkEventMotion_ZN3Gtk6Widget12on_map_eventEP12_GdkEventAny_ZN3Gtk6Widget14hide_all_vfuncEv_ZN3Gtk6Widget8on_eventEP9_GdkEvent_ZN3Gtk6Widget24on_selection_clear_eventEP18_GdkEventSelection_ZN3Gtk4MenuC1Ev_ZThn16_N3Gtk5TableD1Ev_ZN3Gtk6Widget10on_realizeEv_ZN3Gtk9ContainerD0Ev_ZN3Gtk11DrawingAreaC2Ev_ZTv0_n64_N3Gtk6Object10set_manageEv_ZN3Gtk9Container12forall_vfuncEiPFvP10_GtkWidgetPvES3__ZN3Gtk6Widget16on_selection_getERNS_13SelectionDataEjj_ZN3Gtk3Box10pack_startERNS_6WidgetEbbjlibgdkmm-2.4.so.1gdk_pixmap_create_from_xpm_d_ZNK3Gdk9Rectangle10get_heightEv_ZN3Gdk2GC6createERKN4Glib6RefPtrINS_8DrawableEEE_ZN3Gdk6Window14set_backgroundERKNS_5ColorE_ZN3Gdk6Window15invalidate_rectERKNS_9RectangleEb_ZN3Gdk9Rectangle5set_xERKi_ZN3Gdk8Drawable9draw_lineERKN4Glib6RefPtrIKNS_2GCEEEiiii_ZN3Gdk5Color3setERKN4Glib7ustringE_ZN3Gdk8Colormap11alloc_colorERNS_5ColorEbb_ZN3Gdk9Rectangle5set_yERKi_ZN3Gdk2GC14set_foregroundERKNS_5ColorE_ZN3Gdk9Rectangle10set_heightERKi_ZN3Gdk8Drawable11draw_layoutERKN4Glib6RefPtrIKNS_2GCEEEiiRKNS2_IKN5Pango6LayoutEEE_ZN3Gdk8Drawable14draw_rectangleERKN4Glib6RefPtrIKNS_2GCEEEbiiiilibatkmm-1.6.so.1libgtk-x11-2.0.so.0gtk_text_view_newgtk_scrolled_window_newgtk_button_new_with_labelgtk_pixmap_newgtk_dialog_newgtk_vbox_newgtk_label_newgtk_signal_connect_fullgtk_widget_set_usizegtk_hbox_newgtk_image_newgtk_widget_destroylibpangomm-1.4.so.1_ZN5Pango15FontDescriptionC1ERKN4Glib7ustringE_ZN5Pango6Layout20set_font_descriptionERKNS_15FontDescriptionE_ZN5Pango6Layout8set_textERKN4Glib7ustringE_ZNK5Pango6Layout25get_pixel_logical_extentsEvlibcairomm-1.0.so.1libglibmm-2.4.so.1_ZN4sigc10connectionaSERKS0__ZN4sigc10connectionC1Ev_ZN4sigc10connection10disconnectEv_ZN4Glib9signal_ioEv_ZN4Glib8SignalIO7connectERKN4sigc4slotIbNS_11IOConditionENS1_3nilES4_S4_S4_S4_S4_EEiS3_ilibgdk-x11-2.0.so.0libatk-1.0.so.0libgdk_pixbuf-2.0.so.0libpangocairo-1.0.so.0libfontconfig.so.1libXext.so.6libXrender.so.1libXinerama.so.1libXi.so.6libXrandr.so.2libXcursor.so.1libXfixes.so.3libpango-1.0.so.0libcairo.so.2libX11.so.6libgobject-2.0.so.0libgmodule-2.0.so.0libdl.so.2libglib-2.0.so.0g_byte_array_newg_byte_array_set_sizeg_byte_array_freeg_byte_array_appendlibsigc-2.0.so.0libstdc++.so.6_ZdlPv__cxa_pure_virtual__gxx_personality_v0_ZdaPv_Znwm_Znam_ZTVN10__cxxabiv120__si_class_type_infoElibm.so.6powlibgcc_s.so.1_Unwind_Resumelibc.so.6strcpyexitsprintffopenperrorputs__stack_chk_failfgetc__errno_locationreadfputcmemcpymallocgetenvsscanfoptargstderrioctlfwriteclosefprintffcntlstrerror__libc_start_maingetopt_long_only_edata__bss_startGCC_3.0GLIBC_2.2.5GLIBC_2.4CXXABI_1.3GLIBCXX_3.4+ P&y ,+ ui ,+0ii ,ui ,2+ӯk,t),aaaa(a0aPaha paaa+(a0aPahaaaaaaaaaa4a'aaa#a a(a20aF8a @aHa Pa Xa`aha paxaa>aaa aaaaaaaa aaaaaaaa a(a%0a8a@a Ha PaCXa`ahapaxaaa<a a!a"aa#a$a%a)aaa&aGa'aaa(a)a* a(a+0a,8a@aHa1PaXa-`a.ha/paxaaa0a1a2aa3a4a5aa!a6aa7a8a9a6aaa:a; a(a<0a=8a@aHa>Pa?Xa@`a9haApaBxaCaDaEaFaGaHaaIaJaJaKaLaaaMaNaOaaPaQaR aS(aT0aU8aV@aHaWPaXXaY`aZhapa[xa.a\aa]a^a_a`aaaabacada5a-aeafagaha?aiaj ak(al0an8a@a&HaoPaXa`aHhapapxaqarasatauava*awaxaayaza,a{a|aa}a@a~aa a(a0a8a@aHaPaXa`aha paxaaaaaaaaaa3aaaDaaaaaaaa a(a0a8a/@aHaPaXa`aha=pa:xa"aaaaaaaaaaaaaaaaaaaa a(a0a8a@aIHa8PaXa`ahapaxaaaAaEaaaaaLaaaaaa;aaaa0aBH#mH5l!%l!@%l!h%l!h%l!h%l!h%l!h%l!h%l!h%l!hp%l!h`%l!h P%l!h @%l!h 0%l!h %zl!h %rl!h%jl!h%bl!h%Zl!h%Rl!h%Jl!h%Bl!h%:l!h%2l!h%*l!hp%"l!h`%l!hP%l!h@% l!h0%l!h %k!h%k!h%k!h%k!h %k!h!%k!h"%k!h#%k!h$%k!h%%k!h&%k!h'p%k!h(`%k!h)P%k!h*@%k!h+0%k!h, %zk!h-%rk!h.%jk!h/%bk!h0%Zk!h1%Rk!h2%Jk!h3%Bk!h4%:k!h5%2k!h6%*k!h7p%"k!h8`%k!h9P%k!h:@% k!h;0%k!h< %j!h=%j!h>%j!h?%j!h@%j!hA%j!hB%j!hC%j!hD%j!hE%j!hF%j!hGp%j!hH`%j!hIP%j!hJ@%j!hK0%j!hL %zj!hM%rj!hN%jj!hO%bj!hP%Zj!hQ%Rj!hR%Jj!hS%Bj!hT%:j!hU%2j!hV%*j!hWp%"j!hX`%j!hYP%j!hZ@% j!h[0%j!h\ %i!h]%i!h^%i!h_%i!h`%i!ha%i!hb%i!hc%i!hd%i!he%i!hf%i!hgp%i!hh`%i!hiP%i!hj@%i!hk0%i!hl %zi!hm%ri!hn%ji!ho%bi!hp%Zi!hq%Ri!hr%Ji!hs%Bi!ht%:i!hu%2i!hv%*i!hwp%"i!hx`%i!hyP%i!hz@% i!h{0%i!h| %h!h}%h!h~%h!h%h!h%h!h%h!h%h!h%h!h%h!h%h!h%h!hp%h!h`%h!hP%h!h@%h!h0%h!h %zh!h%rh!h%jh!h%bh!h%Zh!h%Rh!h%Jh!h%Bh!h%:h!h%2h!h%*h!hp%"h!h`%h!hP%h!h@% h!h0%h!h %g!h%g!h%g!h%g!h%g!h%g!h%g!h%g!h%g!h%g!h%g!hp%g!h`%g!hP%g!h@%g!h0%g!h %zg!h%rg!h%jg!h%bg!h%Zg!h%Rg!h%Jg!h%Bg!h%:g!h%2g!h%*g!hp%"g!h`%g!hP%g!h@% g!h0%g!h %f!h%f!h%f!h%f!h%f!h%f!h%f!h%f!h%f!h%f!h%f!hp%f!h`%f!hP%f!h@%f!h0%f!h %zf!h%rf!h%jf!h%bf!h%Zf!h%Rf!h%Jf!h%Bf!h%:f!h%2f!h%*f!hp%"f!h`%f!hP%f!h@% f!h0%f!h %e!h%e!h%e!h%e!h%e!h%e!h%e!h%e!h%e!h%e!h%e!hp%e!h`%e!hP%e!h@%e!h0%e!h %ze!h%re!h%je!h%be!h%Ze!h%Re!h%Je!h%Be!h%:e!h%2e!h%*e!hp%"e!h`%e!hP%e!h@% e!h0%e!h %d!h%d!h%d!h%d!h%d!h%d!h%d!h%d!h%d!h%d!h%d!hp%d!h`%d!h P%d!h @%d!h 0%d!h  %zd!h %rd!h%jd!h%bd!h%Zd!h%Rd!h%Jd!h%Bd!h%:d!h%2d!h%*d!hp%"d!h`%d!hP%d!h@% d!h0%d!h %c!h%c!h%c!h%c!h %c!h!%c!h"%c!h#%c!h$%c!h%%c!h&%c!h'p%c!h(`%c!h)P%c!h*@%c!h+0%c!h, 1I^HHPTIbAHbAH@@oHHY!HtHÐ=yl!UHt$HH%c!Hc!HHuMl!DfDUH=U!HtHt aIAÐHHÐfDfDf.US1HH=k!HHHu HH uщ(fA1C11cAtiH=7k!ھcA1HT$1M6t$HT$1ɿDtx8uH[]H j!cAH[]1M|$uH j!cA_H vj!cABz@H333333?H/dev/dspj!Hk!Hj!k! Vk!k!k!,AWAAVAUATIUSH(H$H|$cAH$dH%(H$1cAHH1KcAH.HICLl$LAE-AE-t!CHL tt uCA$HcADA}t A$MluDA<$HcHtHT$H$HA<$HHH~:A4$HD$DFA9Hu H8uHH9A~0HD$H $E$H8BHQHA9HHTuE<$AGA$1MH$dH3%(u$H([]A\A]A^A_H$HT$E<$H8ATI1HHfAUHLSl LcAHUHtPH] udA dALdAHD1&HU1dALHHEHH Hu[]L A\fHw $fAHH=jf!agA1HaH=If!8A1HOaغaѺaʺaH= f!a!dA1HgAWAVAUATUSHdH%(H$1|$LHt$@H$VHf!gA@apL$LHT$@H$H$H$$Iع@a%dAyH$pHT$@Ht$L`H$.|H$aH$".jg!H$#5cg!H$#5Lg!H$#5Ig!H$D#XRHHwHHD$X0HHHHD$HHſ@HHHs0H$L$HCHC@HF@HCз@HC HC(H$HLH$L$haLH@p@GH$LLHHEHP(H$0HDŽ$8H$@H$0HHHLLXHHH[HD$HL$HLsH$L$XL`HHHs0H$HCHC@HC@H$HC HC(HV HFHF@LfH$L$HLVH$L$'dALH@@H$LLLHHEHP(H$PHDŽ$XH$`H$PHHHgL?LH$L$XL`HHnHs0H$HCHC@HC@H$HC HC(HN HFHF@LfH$L$HL*H$L$/dALH@@H$LLLH\HEHP(H$pHDŽ$xH$H$pHHcH;LL[H$L$XL`]HHBHs0H$HCHC@HC@H$ HC HC(HF HFHF`@LfH$ yL$HLH$L$5dALH@@H$LLLH0HEHP(H$HDŽ$H$H$HH7HLL/H$ HHEHP(H$HDŽ$H$H$HHHL$LH$L$XL`HHHs0H$HCHC@HC@H$0HC HC(HV HFHFP@LfH$0L$HLqH$L$0?dALH@@,H$LLLHHEHP(H$HDŽ$H$H$HHHLZLH$L$XL`HHHs0H$HCHC@HC@H$@HC HC(HN HFHF0@LfH$@L$ HLEH$ L$@LdALH@@H$LLLHwHEHP(H$HDŽ$H$H$HH~HVL.LvXHH1HHD$ H,L$HLH$L$XL`;HH Hs0H$HCHC@HC@H$PHC HC(HF HFHF @LfH$PWL$@HLH$@L$PUdALH@@H$0LLLHHEHP(H$HDŽ$H$ H$HHHLL H$L$XL`HHHs0H$HCHC@HC@H$`HC HC(HV HFHF@LfH$`+L$`HLH$`L$`YdALH@@kH$PLLLHHEHP(H$0HDŽ$8H$@H$0HHHLLH$L$XL`HHHs0H$HCHC@HC@H$pHC HC(HN HFHF@LfH$pL$HLH$L$padALH@@?H$pLLLHHEHP(H$PHDŽ$XH$`H$PHHHLmLH$L$XL`HHHs0H$HCHC@HC@H$HC HC(HF HFHF@LfH$L$HLXH$L$idALH@@H$LLLHHEHP(H$pHDŽ$xH$H$pHHHiLALXHHDHHH*Y!=IH$ 1cA1?D$<T$H$LLHHEHP(H$HDŽ$H$ H$HHHLLH$0ZL$@dALL$H$0LLL$PdALL$ HL$(LLLH|$PHHHP(H(HHP(H$0H$8H$@H$0LHLLI~LH$0H$prL$dALL$H$pLL2L$dALL$`HL$LLLH|$hHHHP(H(HHP(H$PH$XH$`H$PLH5L LI~LH$pL$LL$dALL$LLLLL$dALH$HL$0LLH,H|$HHHP(H$pHDŽ$xH$H$pHHWH/LI}LLPTH11H%HHE111Ht$HE1H$HL$ 1LHLR!5R!LxL @HHHs0H$L$HCHC@HF`@HC@@HC HC(H$HLH$H$ LHH@@\LHH$HH HHiL\LH$o H$pz1H$dH3%(uRH[]A\A]A^A_H O!cAH O!cAH$H$ H$pH<$H$H$LLMHH$H$H$HfHH$LLtH$LbL[H$H$HH$Zf9HH$fCLH$5L H$HH$LH$HCHtHH@!H$H$0HH$H$1H$;HH$fLkI}bLZLRSH$H$H$@H$LH$DLI~L H$pH$H$H$H$@LH$LI~LH$H$H$@HH$ZffDHH$@dHH$rLJH$H$HCHZHАOfDfDfDDfDH$HCH H(fD}DfDDfDEDfDNDfD4H$HCHHDfDDfDDfDDfDvDfDDfDDfDH$HCHH-DfD~DfDdDfDEDfDH$HCHHDfDDfDH$HCHnHdH$HCHSHIDfDfD]DfDDfDDfDH$HCHH DfDDfD5DfDDfDDfDDfDDfDHSHPH[ÐHSHPH[ÐHSHPH[ÐL_A㐐H0HHH>P8HÐÐHHHHH$HÐHOHwHVt HFHHLHVIHA㐐H0ÐHHHHH$HÐÐHHHHH$HÐHHw0HGH<$HGH1HÐÐHHHHH$HÐHH7@HUH6HHHHHH$HÐHH7HH6HHHHHH$HÐHHw0HGH<$HGH1HÐHHw0HGH<$HGH1HÐH\$Hl$HLd$@H(xLcHHYHC0Hu0LeHE@HE@@HHE HE(HE0HC8H,$HE8HH\$Hl$Ld$ H(HHH;H\$Hl$HLd$XH(LeHHLcHC@Hs0HC@HC HHC(HE0HC0HE8HC8HE@HC@HEHHCHHEPHCPH$HHl$H\$Ld$ H(HHHHHCHtHHfHHÐH\$Hl$HLd$@H(LcHHHC0Hu0LeHE@HEз@HHE HE(HE0HC8H,$HE8}HH\$Hl$Ld$ H(HH#HSHHtǃ[@USHHHiAHLJlAHGPlAHlAHHmAH HH[]|HHlAHHmA?H CHHHH@USHHHiAHLJlAHGPlAH4lAHHmAHH []HHlAHHmAH HHHHfDfDH\$Hl$HLd$HHHHHPHHHHGH^HuHBH$Hl$Ld$HHI0HuHLlIIf.H@@"f.SHH(H[HL@*Hx;f*Hp+fSHHx,C([f.SHHH[郑fHz@H@H|@H@H@HOHNHNH1NfH/NH1NfHH:+Xz@HFiFB@H>B!H?B!MfHH0{@H'M@H5B!H B!LfHI{@IZVZyX@L A!LA!LfATLUSHH@HcHcW8dH%(HD$81I44l%8Nj;u]ǃ9ƃ#fǃHT$8dH3%(H@[]A\@S()9|˃]lH*C,YCP!C`\f.CfDXC`f.wC`X\f.rfD\f.sC`CD1f(\fTf.vf(ىCDHH uHtJCP hAHHH3HcCDSPMøf(^f.v,%6Yf(^f.wf(^f.vXf(^f.wf( hAH~HH73ƃhA1H1 <8/W9HcIDfDH94f8fx~ƃՅ_A$1L1)=~!@AH1)=19u%fD製8蜿gAH11H11L1)Ѓ~'DAH1)Ѓ9uW9fHcI8wxv ƃH9|݀`eHcHI448HcHI4t|ç1fAU1ATUHSHxhAHXHuH11HǾ1-hA H28hA_ PhAE8 1u,`hA1*E,E0HEXƅDžDIL`HHfHs0HCHC@@HC@HC H|$0HC(Hn HFHF@LfH\$0(HH8H$H@`@H\$HD$ Ht$ E1ADHHHHbHHHX[]A\A]Ë1ҾP1H]8HT$DP1t$DohA1跺t$DhA1衺t$DhA1苺t$DhA1ut$DhA1_t$DhA1It$DhA1 3Hھ P1E8GHھP12u8RhA11ҾP1HPDž1D$LHT$LP1u,bhA1t$H芹HT$HP1HU,P1u,bhA1N*E,E0QHg]HHHHHCHtHHqHHdHHHHHf.SHHxH[fDSHHpۿ,H߉C,HC0[rfAWH AVAUATUHHSHXHD$8HmAHD$@HE1lAH轹HHEiAHDžlAHEPlAHD$HH޸ H HH{@IZVZyX@I/dev/dspHW8!LX8!HLxƅE(E,(+DžhAH8! yHH7!H1ŸYX HH uʿ¿HH迆HE0Hۅp虿HHDH}HþdAH5HdH$JHþdAH5HdH8IY@HHLd$(fWd$(h hh#H]p8žLd$(HHd$(fW@@f(<H]x8聾fWH%"Hf(HHAD$D$E1D$$1HL$hAL@H1LHH !HD$D$D$$AAH"LHAD$D$D$A$HL$ iAL1@'H1LH'HG HD$D$D$$AAH_LWHAD$D$D$A$HH$0 iAHn@dIHHH޾PDI1ɺH L LCILH IHLL$@iAL@ڻH1LHڿHHD$D$D$$AALL PpHHup1fWH蛵HHD$D$D$$AALL$PiAL@H1LHHHD$D$D$$AAL,L$P芺HHux1fWH赴HHD$D$D$$AALL$`iAL@H1LHH.HD$D$D$$AALFL>P褹IH1fWH̳LHD$D$D$$AALL$piAL/@%H1LH襾HL薻HbHD$D$D$$AALJL*HD$D$D$$AAHL$dAL]@SH1LHSHsHD$D$D$$AAH苿L胺HAD$D$D$A$1HBHV1oL"HEIXL`}HHbHs0HCHC@HC@HC H$HC(Hn HFHFp@LfH$Ll$PHL)HD$PLd$`HupLH@@諼LLkH$HH踭H谶LL萾HEIXL`蛶HH耷Hs0HCHC@HC@HC H$HC(Hn HFHF0@LfH$Ll$pHLGHD$pL$HuxLH@@ƻLL膴H$HHӬH˵L3L諽HEIXL`趵HH蛶Hs0HCHC@HC@HC H$HC(Hn HFHFP@LfH$L$HL_H$L$HLH@@غLL蘳H$HHHݴLEL轼LXI$MLhHH覵Hs0HCHCp@HC@HC H$ HC(Lf HFHF LALnH$ L$HLjH$L$HupLH@@LL覲H$HHHLSL˻LXI$MLhϳHH贴Hs0HCHCp@HC@HC H$0HC(Lf HFHF LALnH$0L$HLxH$L$HuxLH@@LL贱H$HHHLaLٺHEIXL`HHɳHs0HCHC@HC@HC H$@HC(Hn HFHF@LfH$@L$HL荰H$L$HLH@@fLLưH$HHH LsLHX[]A\A]A^A_HD$0H|$8蚰H|$0 LHD$03L諹H|$H豱lAH蔳H|$@mAEHD$0HD$0HCHtHH1H)HD$0HD$0HD$0HCHtHHHD$0]DHD$0HCHftH1f`HD$0HCHhH^kf.f HD$0HCH(H+f.BDfDDfDHD$0HCHHf.HHD$0L軲[HD$0LHD$0¯BHHD$0fD裯#@f.LHD$0fDsLHD$0aH9HD$0DPhfD@DfDMDfD]DfDMDfD=DfD-DfDDfD HD$0fD8HD$08HD$0;fDAWHFE1AVAUATUHSHHHXHD$@蓧HHEHPHHDHHEHHD$HH警 Hp H蓯I{@IZVZyX@I/dev/dspL5&&!L-'&!HLxƅE(E,(+DžhAH%!h HHH%!H1ŸYX HH uʿ葭HHtHE0HsphHH1HLHþdAH#HdHHþdAHq#HdH8IY@HHLd$(fWd$(W7 77H]p8蔬Ld$(HHd$(fWf( 记H]x8PfWH%HƎf(mHHAD$D$E1D$$1HhL$hALò@蹫H1LH蹯HHD$D$D$$AAHLHAD$D$D$A$H襲L$ iAL@H1LHHHD$D$D$$AAH.L&HAD$D$D$A$HH$0 iAH=@3IHHŰH譬PI1ɺH̤ L LILH  HLL$@iAL賰@詩H1LH詭H HD$D$D$$AALL٫P?HHup1fWHjHz HD$D$D$$AALrL$PiALͯ@èH1LHìH HD$D$D$$AALLPYHHux1fWH脢H HD$D$D$$AAL茯L$`iAL@ݧH1LHݫH HD$D$D$$AALL PsIH1fWH蛡L HD$D$D$$AAL裮L$piAL@H1LHtHLeH1 HD$D$D$$AALL HD$D$D$$AAHѭL$dAL,@"H1LH"HB HD$D$D$$AAHZLRHAD$D$D$A$1HHV1>LHEIXL`LHH1Hs0HCHC@HC@HC H$HC(Hn HFHFp@LfH$pLl$PHLHD$PLd$`HupLH@@zLL:H$HH臛HLL_HEIXL`jHHOHs0HCHC@HC@HC H$HC(Hn HFHF0@LfH$Ll$pHLHD$pL$HuxLH@@蕩LLUH$HH袚H蚣LLzHEIXL`腣HHjHs0HCHC@HC@HC H$HC(Hn HFHFP@LfH$L$HL.H$L$HLH@@觨LLgH$HH贙H謢LL茪LXI$MLh萢HHuHs0HCHCp@HC@HC H$ HC(Lf HFHF LALnH$ dL$HL9H$L$HupLH@@赧LLuH$HH˜H躡L"L蚩LXI$MLh螡HH胢Hs0HCHCp@HC@HC H$0HC(Lf HFHF LALnH$0rL$HLGH$L$HuxLH@@æLL胟H$HHЗHȠL0L訨HEIXL`賠HH蘡Hs0HCHC@HC@HC H$@HC(Hn HFHF@LfH$@L$HL\H$L$HLH@@5LL蕞H$HHHڟLBL躧HX[]A\A]A^A_HD$8Ht$@H薡H|$8LHD$8LwH|$H}HD$8HD$8HCHtHHHHD$8fHD$8HD$8HCHtHHHD$8ݝwDfDHD$8HCHftHEfXHD$8HCH`HVcf.yDfDDfDHD$8HCHHf.)DfDDfDHD$8HCHHf.HHD$8賝L苠_HD$8LHD$8蒝FHHD$8fDs'@f.LHD$8fDCLHD$81H HD$8DPhfD@DfDMDfD]DfDMDfD=DfD-DfDDfD HD$8fDH|$ H1~Hl$ 1HH蟀HtHEHHxHPH8[]HHtHEHHxHPH豃@w'fDATISHHHT$Ht$}T$t$A1hst$HtAƉC(1KsHLH8}H[A\Ðft~0tt6H aH `ayuH aH aXAWHhAVAUATUHHSHHD$P|HHHAHD$H7xȊAHtHHEAHDžHxAHE AHD$ HtHHD$(HtHHD$0HstL LdtL(LUtL0LFtL8L7tH@H\$@HDž@E(EzAHD$8HE HE@E HE$ HB aEHH|$(hH|H|$PHvH\$P1Ht$(HzzHtHHHxHPH\$` AHHH|$0H^|H|$pHuH\$p1Ht$0HzHtHHHxHPH$AH~HL裀H{H$HKuH$1LHyHtHHHxHPH$AHHLHD$;HD$;HD$;HD$f9HD$fH$CH$^H$]H$\H$DVH$WH$XAWAVAUATUHHSHH|$ sH@H@L|$ HD$ML|$@tILHxHPH|$0Ht$@yH\$0HtHHHxHPH@H@HtHHHxHPHtHHHxHPHT$@HtHHHxHPHD$H H8tDu$HAnAHD$]De HHHT$PtHHHxHPEHt$PD4$ED$A)LlHT$PHtHHHxHPE@f.Fp4HAŋE H(D$HD$H8:tEAUA] H9ADMNm+E9HD$De$HHHT$`tHHHxHPD$D)Ht$`DKDLD$AD$DD$$kHT$`HtHHHxHPHD$HH8sHD$]$HHHT$ptHHHxHPD$Ht$pEL$DLDL6pHT$pHtHHHxHPMtILHxHPHĈ[]A\A]A^A_H-l+]HHtHHHxHPHT$@HtHHHxHPMtILHxHPHuHT$PHHuHHDHT$pHHuHT$`HHuAWdAAVAUATUSHhH$H|$(dH%(H$X1HtH$HHt$(kH$H$HHT$PXp"AHtH$HHlHH|$P uHfHpH$dAHvtH$HHt$(!kH$HHL$XoH$,AH7tH$HHkHH|$XtHfHoHD$(HT$(H@H@HD$0H$pHDnH$pHH$ tHEHHxHPH$H$ YtH$HtHHHxHPHL$(H@H@HtHHHxHPHtHHHxHPH$ HtHHHxHPHtHEHHxHPH$Ht$(jm HT$(H$1I?\!NHHD$`B0XNB8*Ld$D$f(T$jT$Yp YMCHXc H uL$H$1HźgfffDHL$(DEDa HL$0)A)HAۃH$0HtHHHxHPEH$0AA)DH|$`-kH$0HtHHHxHPHL$0AHD$(ۃHDh D`$HH$@tHHHxHPCL%H$@AH|$`D jH$@HtHHHxHPAAxHD$(HT$(HzHD$ ;H$P;AHCpHH|$XfoHkH|$XTnH$`H$HD$(H$hH$$dHT$0D$hHD$lL$lHD$ HH:lHL$(HcA(HWHL$0AHD$(Hh X$HH$`tHHHxHPLG,?H$`EDH|$`FL) giH$`HtHHHxHPHD$(HT$0HH:H$H7lHL$XHH$ptHHHxHPHL$0HD$(Hh X$HH$tHHHxHPD$lLH$L$pH|$`؉D$@DL$@DA)AL AT$aH$HtHHHxHPH$pHtHHHxHPHT$0Ht$ H:UkHL$XHH$tHHHxHPHL$0HD$(Hh X$HH$tHHHxHPLL$@H$L$DH|$`AL aH$HtHHHxHPH$HtHHHxHPHt$(HD$0H8H8jE1DBH|$(HT$(HL$0ADb j$HHH$tHHHxHPغVUUUEA ,H$EH|$`)R)DDFL fH$HtHHHxHPIIMHD$xHT$x\$xH$H4alH$H|$XkH$gH|$XjHL$xH$hH$`H$H$D$hD$dD$l̠H|$($HD$0H$H8iHT$XHH$tHHHxHPHD$0HL$(HDi i$HH$tHHHxHPغVUUUADd$DAAL-H$L$H|$`)DRDD$A)ԋT$DEA)ƍL AVA ^H$HtHHHxHPH$HtHHHxHPHL$0Ht$ H9 hHD$XHH$tHHHHxHPHD$0HL$(Hi Y$HH$tHHHxHPT$DLH$L$H|$`L DA ]H$HtHHHxHPH$HtHHHxHPHD$xH|$xvHL$0Ht$ H9+gH|$(Q`HL$0AHD$(HX hHH$tHHHxHPH$AED$ىH|$`cH$HtHHHxHPH|$(_HL$0AHD$(Hh X$D`HH$ tHHHxHPLH$ EEDH|$`ABcH$ HtHHHxHPHD$p@HT$(HD$pHD$HHD$0HL$(HI HH$0L$LtHHHxHPDL$LDD$HH$0L$LH|$`ADbH$0HtHHHxHPHT$(zuiHL$0Z$HHH$@tHHHxHPL$LDD$HH$@H|$`DDI-bH$@HtHHHxHPH HT$pH$PHH4gHH|$PgH[cH|$PeHL$(H$H$`HD$0H$hH$H$h$lHL$8HH8dHT$PHH$`tHHHxHPHL$0HHH$ptHHHxHPD$LH$pL$`H|$`)ʼnM؋\$H)ÍSDZH$pHtHHHxHPH$`HtHHHxHPHT$0Ht$ H:cHL$PHH$tHHHxHPHD$0HHH$tHHHxHPMH$L$H|$`YH$HtHHHxHPH$HtHHHxHPHT$(zvE1HL$pHD$(H$?ADHDY^*ȸYVH$H$eH$H|$XdH$aH|$XcH$H$`HD$0H$hH$D$hD$lHt$8H8UbHT$XHH$tHHHxHPHD$0HL$($dHi$HH$tHHHxHPDL$LAAH$DDd$HL$EBL1 H|$`A)AL AT$WH$HtHHHxHPH$HtHHHxHPHT$0Ht$ H:gaHL$XHH$tHHHxHPHL$0HD$(HX$HH$tHHHxHPL$LH$L$DH|$`AL AL WH$HtHHHxHPH$HtHHHxHPAAHD$pH|$p`iH|$`tHL$`HHHxHPH|$XtHL$XHHHxHPH|$PtHL$PHHHxHPH$XdH3%(uHh[]A\A]A^A_P]HIu^H|$`tHT$`HHHxHPH|$XtHT$XHHHxHPH|$PtHT$PHHHxHPLbH$@IHtHHHxHP|H$0IHugI_IH$ HtHHHxHPHSHEHHxHP=IH]L2bIHw]7I/H$IHtHHHxHPH$H3IH$IHtHHHxHPH$HIH$IHtHHHxHPH$pHIH$IHtHHHxHPH$HH$`IHnHIRH\\IH$`H=H$@IH$H$0IH H$ IH~H$IHeH$IHtHHHxHPH$H/II@/I3IH[@IHQH$I[[H$IHtHHHxHPH$HIH$pIHHHHxHPH$IHtHHHxHPH$HGIH$IZ-H$IHIIfDIHIHHHxHPyfH\$Hl$HHH/SSE 9~ S E$9~HKHH\$Hl$HÐLIzTHGLIzHHOw(LJLJ~51ҐD ;~D ;}BH9G(΋tQLJ1)1);~ Ãt LJËW(LJLJ~/1DQ;~;}BH9G(Ӌt_LJ3)=~3);RÉLJf.USH_DO(EHE1E1fD1F1)D9~ DMAHE9uHE1E11F1)D9~DNAHE9uA*A*GHA O7YYXX,D,A)…LJCA9O(HA HA9t BAA9}IcHAA9 BA9 HD;G(|A@DD;G(DIc1E1HTB1A9@ƃH9O(~-tBA9A9~߉A1H9O(Ӌ;A*fXDO(EHE1E11Ɖ1)D9~fDOAHE9uHE1E11Ɖ1)D9~fDHAHE9uA*A*GHLJ ~5YYXXD,D,Aڅ>CA9:O(.HA @HA9t BAA9}IcHCAA9 BA97HD;G(|(DtZ;fW+*^f. _szHV瞯WH{`5WH{X,WHSPHtHHHxHPHuHMLoUIIIIDIIIĐIuI^f.USHHHAHLJXAHGAH WEH{VHoVH{xfVH{p]VH{hTVH{`KVH{XBVHSPHtHHHxHPAH MH(AOHKHH[]LHHUHUH{xUH{pUH{hUH{`UH{XUHSPHtHHHxHPAHsLH(ABOHFKHSHHHH@HHHŐoH^HMH9fH\$Hl$HH(BRHHMH,$HsXHGLHt*HEHH\$Hl$ HxHLXH(AH\$Hl$ H(HHtHEHHxHPHRAWHWPAVAUATUHSHHPHGH$HD$H|$@HLLd$@MLd$0tI$LHxHPH|$ Ht$0 SH\$ HtHHHxHPHUPH]PHtHHHxHPHtHHHxHPHT$0HtHHHxHPMtI$LHxHPH$HH8NHeRHAGHAORAH$HHHT$PtHHHxHPH|$`HKAEH\$`Ht$PEFAAHAAD$AA=KHtHHHxHPHT$PHtHHHxHPH$HupH:N}(AE1mH$HHHT$ptHHHxHPHH$ KT$ H$Ht$pDL$(HA׉AT$(AԉDAL$AP_JHtHHHxHPHT$pHtHHHxHPAID9}(HVFHD$Du(FFD$ Dm( HD$HA\kP؉ډD$HD$A\\H/P؉ډD$HT$HB bO؉ډD$HD$BL`HĘ[]A\A]A^A_HMtI$LHxHPHOHHtHHHxHPHT$0HtHHHxHPHHHtHHHxHPHT$pHtHHHxHPHHH@tHHHxHPHT$PHu[Hf.AWAVAUATIUSHHdH%(H$81HPHGPHD$A*T$(A^T$0 F^f(f.r ^f.sO)f.v Yf.wf.GTNG^.TD$HY TT$8T$8L^T$@ NI$D$PHD$H8^JAD$0fWD$`A*D$(^D$`f.D$P$D$TLJCAD$0LEl$(D$x.CAHD$E|$(HHH$tHHHxHPLH$G$E$H$YD$`H$DL$TY\$xL$PHD$`*AFYD$`D$`A*L$`^*L$` RT$`XYT$`D$xA*T$x^X,L$`D,EHtHHHxHPH$HtHHHxHPAD$0$D$`A*D$(X\$@^D$`$f.xD$HID$xf.RHD$zL$8HHD$Y &H8$SHAD$0fWD$hA*D$(^D$hf.D$PL$0D$\LBAAD$0LEl$(D$p&AAHD$E|$(HHH$ tHHHxHPLH$0 ED$0E\$0H$0YD$hH$ DL$\Y\$pL$PHD$h*AFYD$hD$hA*L$h^*L$h PT$hXYT$hD$pA*T$p^D$hD,X,CHtHHHxHPH$ HtHHHxHPAD$0\$0D$hA*D$(X$^D$h\$0f.HD$Ht$H$@H8FdAHTIH$HL@H$`HL$DAHIH$PHHi@HLnIH:H~DAL$0A*D$(fW^f.ED$PT$(D$XDYL$(LL$>(\$(*LHD$El$(HHH$ptHHHxHPH$LBENH$H$pDL$X*EL$PHY$$A*$^X,AHtHHHxHPH$pHtHHHxHPD$(H$H$AYNHT8HHIGHLnFHBL^EMH$H$H$H$L$tILHxHPD$(D$X+$LAYD$0D$$$=AHD$Et$($HHH$tHHHxHPH$L@AE$MH$H$L$*L$$HY$$A*$^*X$\,V9HtHHHxHPH$HtHHHxHPH$HtHHHxHP\$(A*D$(AL$0X\$8^\$(f.MtILHxHPH$8dH3%(HH[]A\A]A^A_^L$HYT$8H$L?H$HH$tHEHHxHPH$H$EH$HtHHHxHPIT$PI\$PHtHHHxHPHtHHHxHPH$HtHHHxHPHHEHHxHPm>HItHHHxHPH$HtHHHxHPLXDIHItHHHxHPH$HtHHHxHPH$HtHHHxHPMtILHxHPIIIH%?HItHHHxHPH$pHuIIH\5IIH>LCIH$ H HItHHHxHPIHHEHHxHPIH$HtHHHxHPHItHHHxHPǐUHSHHJHdHEHHxHPHH[]HHtHEHHxHPHBUHSH8Z;uH8[]HH\$1Ht$(HHT$HT$H$HD$D$(#5Ht$,HD$,CH|$ H;Hl$ 1HH>HtHEHHxHPH8[]HHtHEHHxHPH1AGH&fD@G0fDHl$HcH\$HHHR;k(ǃt#k(HHHl$H\$HfHfDH\$Hl$HH;k(ǃt!k(HnHHl$H\$HH`AWHAVAUATUHHSH(HD$9H(AHD$H5AH*2HEPHEAHDžXAHEAHEPHD$8HEXHD$ H1HE`HD$(H1HEhHD$0H1L}pL1LuxL1LL1LL1?H\$@HE zAH>HH|$ ?Hu:H|$PH3H\$P1Ht$ H/8HtHHHxHPH\$`AH>HH|$(>H:H|$pHf3H\$p1Ht$(H7HtHHHxHPH$zAH3>HH|$0V>H9H$H2H$1Ht$0Hb7HtHHHxHPH$AH=HL=HE9H$H2H$1LH6HtHHHxHPH$AHa=HL=H8H$H.2H$1LH6HtHHHxHPH$AH--%s %s %s %lf+_Normal_Wien_Physical_EquidistantN_atural_USUS-_Alt_GermanG_erman-Alt_TuningNote _Scale_Recording Inputo_Optionsf_Fileh_Helparg=device audio-in devicetriggersampfreqarg=sample frequency in Hzsampnrarg=number of sampleswidtharg=width in pixelsheightarg=height in pixelsadaptivethis helpVol Bass TreblSynthPcm Spkr Line Mic CD Mix Pcm2 Rec IGainOGainLine1Line2Line3Digital1Digital2Digital3PhoneInPhoneOutVideoRadioMonitorsetRecInput: item #%d selected usage: %s [--option []] arg=threshold of schmitt triggerarg=1|0 adaptive scaling of sample data@@@@@@@ӕ@gtkguitune}eAeAeAeAeAeAeAeAeAeAeAeAeAeAeAeAeAeAeAeAeAfAfAfAfAerror reading audio: %sEOF on audio%0.3finitializing audio at %s /dev/stdinreading data from stdin blocksize=%d sampfreq=%d OSS-Version %d DUPLEX = %X REALTIME = %X BATCH = %X COPROC = %X TRIGGER = %X MMAP = %X Audiodriver initializedFreq:Tune:Adjust:SF:SN:Trig:AdaptU?DB.?U?Yx???p@@@?@@??333333? zA`@@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@@@~@@@@x@(@@H~@zA0@@X@ zA @@x@h@(@}@iAmApAtAvAwAwA@wA@xAyAPyAxAxvA vAsAPsApA0pAlAPlAyA 0a@~@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@@@~@@@@x@(@@H~@0ah@@X@ 0a@@x@h@(@}@ a@@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@@@~@@@@x@(@@H~@aH@@X@ a@؊@x@h@(@}@ pax@Ȏ@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@pa@x@X@ pa~@h@x@h@(@}@ PaX@@@@ Pa@ȏ@x@h@(@}@ ax@(@ a8@}@x@h@8@،@PaH@(@X@  Pah@@x@h@8@،@ah@؇@  a(@Ȁ@x@h@8@،@ a@@x@h@8@،@10MainWidgetayA0ablackred.@!@A@@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@`@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@A AAX@@@@ @AAAx@h@(@}@`zA}AAA`AAAAAAXA8AAXAA|A|AA0ah@H@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@0aX@@X@@@@ @0a@@x@h@(@}@pax@Ȏ@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@pa@x@X@@@@ @pa~@h@x@h@(@}@PaX@@@@@@@ @Pa@ȏ@x@h@(@}@ax@(@@ @a8@}@x@h@8@،@PaH@(@X@P PPah@@x@h@8@،@ah@؇@P Pa(@Ȁ@x@h@8@،@ a@@x@h@8@،@7LCDViewaA0a$@?pointer:%d,%d grundton=%d white#999green#666Sans 13pxSans 8px%d/%dKey%.2fHDbEbGbGAbBbC#D#F#G#A#25/2416/159/87/675/646/55/432/25125/964/325/1845/3236/253/225/168/55/3125/7216/99/515/848/25125/64hH`ApAA@@@@H@@@H@@@@@@X@@؂@@@؈@@x@ A؎@X@@@ /AX~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@X8`A/A/AX@ `A/A/Ax@h@(@}@AA`A@AAPAAA`AAAؐAAAAxA A AhH0ah@H@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@X80aX@@X@ 0a@@x@h@(@}@hHpax@Ȏ@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@X8pa@x@X@ pa~@h@x@h@(@}@hHPaX@@@@ Pa@ȏ@x@h@(@}@hHax@(@ a8@}@x@h@8@،@X8PaH@(@X@ Pah@@x@h@8@،@X8ah@؇@ a(@Ȁ@x@h@8@،@ a@@x@h@8@،@7LogViewaPA0aV瞯<@4@@@Sans 8 %.0fcyan#B8B8B8gray@A5A8A@@@@H@@:AH@@@@@@X@@؂@@@؈@@x@@؎@X@@@\AX~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@@A0]AP]AX@@@@ @@A ]A@]Ax@h@(@}@A`A@A AA0AAA@AA؟AA`AؚAAXAAA0ah@H@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@0aX@@X@@@@ @0a@@x@h@(@}@pax@Ȏ@@@@@H@@@H@@@@@@X@@؂@@@؈@@x@@؎@X@@@h@X~@8@@8@H@Ȍ@~@x@@@@@(@@@@h@@@x@X@(@؏@@@؄@8@@x@H@@X@@@~@pa@x@X@@@@ @pa~@h@x@h@(@}@PaX@@@@@@@ @Pa@ȏ@x@h@(@}@ax@(@@ @a8@}@x@h@8@،@PaH@(@X@P PPah@@x@h@8@،@ah@؇@P Pa(@Ȁ@x@h@8@،@ a@@x@h@8@،@8OsziViewa0A0aguitune_logodestroyAbout Gtk-- GuituneCloseclicked66 62 65 1 c None. c #2C2617+ c #866202@ c #BA941E# c #AB9650$ c #FDEA8F% c #A0966E& c #CAB776* c #C6BA92= c #F3DD8F- c #7B7566; c #5F5530> c #FBEDBC, c #916804' c #CDB255) c #D9B83B! c #E5D08F~ c #907826{ c #502F02] c #ECE8DE^ c #EEDDA6/ c #DCBF51( c #FCF3D5_ c #CFAC30: c #524A2D< c #D6CDB6[ c #AE860E} c #B4B2AA| c #D9C2771 c #6059472 c #D6D6D53 c #DEDDDA4 c #4743345 c #F1F0ED6 c #C8A62D7 c #9D89498 c #F4D95F9 c #9E9B900 c #FCFBF8a c #73683Fb c #C8C0A5c c #6B5B23d c #E7CF77e c #CBCCCDf c #6E4B03g c #5D3C02h c #8A7B41i c #B9B8B5j c #C39F24k c #8F886Fl c #D2D2D3m c #AEAB9En c #EFE0C1o c #3B362Dp c #A78934q c #817646r c #A37908s c #C6C5C4t c #BCA553u c #E9CB54v c #442B08w c #F4DC74x c #B8A675y c #7D5702z c #B68E14 eellllllleee ee222e}9-----%9ie22lleee el2e}-::ch@'//|u|t#hqa-kmbellee eee ell}a4+p_66'&'tjzzzj_u8$$8##qh9mellee ee2s9e e2m4c[j&3]55]322333<$>($rfx03ss elk1zx05ss eel2232l&jzrzw=88dw==!^>$6ggx03ss l9;[903se el2eik-:;g7e*_jrr@!$wd88=$'gv{#03s lio670]ss e2sk1;q[z&3003ei_jzr,@d>$$_yv{g#03s e24'r]5ss e2i;:x!z,x]03eesees'j@r,,j)y{{{gp0]ss l9a[s0se el214b0r{fb03ese ss'6@[,,+vggg,55ss e24'#03s elmo90=yvfs02ss es*6@zr+{gg+30es eia[30ss el9o<0^gvf*02s ee*_@@rggf#0ls lk@p02s l}on0(g{fp03s el2222lllls'j@rf,n5s l1j*0s lb.n00,vg,30ss ellm14;cqaq%ss&j@,,0ls l1j3]s ee4b(0dvgyr02s el9o-<(((>$$u#xsb_@r0se lcj02s e%a>50rvg,x0s el1a=u_@j6)8=8u//n(!vgf,2nsel17z@s]5]3&j@zz8)6@|2sls 2q60s la*>n5/vgy[n3sl9;@l0]2ss e<'6z[6rr@^le lkj0s e2o(nn5_{g,r<]e2vt50ess es'_j@r+[j5s e}p5nn5)gf,['5em:55ss em'/_)y~[nls ee7<]s 2;b>n]5)yf,r@5sk<0ss ee78u8,yrb]s emj5es eeo>]nn5|,+,[@!3ee2s lk/w$@frt0s ee%d3e 2-%(]]>]w[r,rzj]ss 29x$>6g,@0s eex^ee lbo5(0((>=j@r,[@_]see eee l9%=>6{+@0s esx^eeee leob0|j[@6))6@[rzj),r6)u)&se sss&_j[r@j))__/@fvg,<0iaoa|d_j@66j_u))|[{ggg,]5s eku8uu8jgf+rj0s 21$^^^>fgggfp0ls emtw8u8/{gf,r0s 21$^=nwvggg,20s ei7$^w=8g{y,r0s 2;>^^>jvggfp02s esq$^^^wggf,r0s e24>nn(f{gg,30s esa>!^ndvgfyr0s e}qnn('{ggf*0nn>'{gg+[0s l-x>](f{gfp03s 2-#nnn(rvgfyt0s el4^]0jv{g~50ss e2o]]>5(f{gf+25s lm1((/{{g,30ss 2kq(]]0jvggfr03s e24<0^{{g,]0ee li.5(]0>g{g{y*0se l9a0$gvg~30labee e2io<(5((y{gggr03s ls.0=fvyp]0eem/+{ggg+30ss lso(00|gvgggys0es le4i)ffrl03ss esi))#h-a;;-n000^~{{g{fyb02s e2sox[y,*502ss eei__u=$>(0>='y{{gfffp302s ell%o'rrx503se eesj[[z[r+fffy+y,[}50es eel2l94f@#b]03ess eels&@[rrrrrr[#<503se eei71{c#<]553ess eel232!< http://www.geocities.com/harpin_floh/home.htmlThis 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.;((hPh8p 8Xp8HXx0H`x8hx 8Ph(8HXx x0 hP  8 ( P Xp x      0 H (` 8x H X x    8(PXh ( H8 0 0 0 0 0( 0H 81` h1x x1 1 1 1 1 1 1 28 2P (2h 82 X2 h2 x2 2383(4h556@7hh8899>C8IpJxJLMN(OP8PhQQQQV [X8_uXvw{ |@(|X|x(~(HHȑ8xXH8`x(zPLRx8@ $0@DD@@DdP@D`@p@ @G@@ @D @+,@ D @\0@ t@@D `@p@ @D @+D д@@ @D 4@L0@d@@ |P@ `@D @@@ @  @D $`@D<@$T@;AAF0|В@R40@BEB B(D0A8G$@BNG @D @+D $@+D <@@TAJQ0\@fAJQ0|з@AJQ04@@ABBB B(A0A8G@D @D0@D4@@DTP@Dt`@7D@+@ @@ @ @D 0@ 4@@ LP@D dp@|@ @ @D @ @ @D  p@,A$,@AAAG $T`@&AAAG | @FAJL @@ A@ @  @ 0@A<P@A\p@ t@ @ @ @ @@ @ @4 0@L P@d `@.| @. @. @@+D  p@+D $ @BHA G` @]AJQ0,$ @{ABDA D(PT P@At p@.A @AJQ04 @IABIB B(A0G8G4 @rABSB B(A0D8M$ @AJG0$D @AAAG $l @ AAAG  @GAJL $ @dAADDP @N4 @b|ABFE B(A0H8J4, `@ABBB I(A0A8G4d @@'ABIB B(A0D8J 0AGN  AZAG0$ A~AAAG $ pAAAAG $, A?ABAD $T @A?AADD`| 0 Al$ AXAADDP p A $ AmBDG0 AX4P ApABIB B(A0G8G4L`AGABFB B(A0D8M4 ArABBB B(A0G8G4A~kABGB B(A0A8G  /AQJG /A,P1A AGL`5AAl5A5ATJL $5A]AAFG $7AUABAD $8AAAFG :A*AJG04< ;A?ABFB B(A0D8G4t?Aw ABBB B(D0A8G$0KAzAADD`$ LAAADDPLA MA ,MA D MAZEJJ dMARJG 4MAABIB B(A0G8G4`SAABFB B(A0D8M4XA,ABFB B(A0A8J,\AfJL zRx $`]AbD bA0D\PbA%DzRx h$4`JQQ@***Km.o.3./././/2///./C./3.662666#.66 . 6 6 26 6 6 #. 7 7 . 7 3 23 3 7 . 23 3. 37.552555#.55.552455.4C.44.442944#.88.882888#.87.992999#.90.932339.4.4.1/2//1(.1*. 1 20 1 .!1!20!1!!."0"20"0"."/".#/$.$/$/$2/$/%/%.%0%3%3%2&H2&2&3&3&0&.'2'2'2'2'H1(2(2(2(2(.)1)1)1)1)@1*1*1*1*1*.*/*K.++.+.,.,., 3-.- .-.-.--%..003444556777708888#l/<MY#d/<M_9iEQ*9+**#<V$$$$$$$#$#$#$"$#$##E#^$##E#^$ # " $ " A$ " " E" $ " Z$ " " E" $ " Z$""E"$"Z$"!$"!E"{$!!$! !!$! $   $  $   !$  $ !$$ $$ $   !!!!0fs$#$#$#$#$#$"$#$##E#^$#"E#^$ " " $ " A$ " " E" $ " Z$ " " E" $ " Z$""E"$!Z$!!$!!E!{$!!$! !!$  $   $  $ !$$ !$$ $$ $   !!,oV#JQZgx#JQZgx]dmy nI'N Z &         Z/g z &     ?S"; H n z &         @<FR^jv@<FR^jv5@JVbnz  n#<I x                         #Vj ~    UWd&S<9N&kx&&*&&*&**(*8*,%+,%,*%%A% % E% $ % ( H% , ' , 7%,(,j%,8%,%,+,:%*)*d%)D%)`%)6%)#%$%(+(7%+*+k%*s% '!'!'!7%"'"&#'#%#*#&$%&D,8DMV_hq90<HQZcluD,8DMV_hq,oVY8Zg X  Uc           >  J9U"  n#<I                                  L #du                                L e8DElGM$&&'(()))))) **+*6*E*U*d*v******!+2++++ }@ XcA@@o @/@@ , a8ha@`@h o`_@oo\@a}@}@}@}@~@~@.~@>~@N~@^~@n~@~~@~@~@~@~@~@~@~@~@@@.@>@N@^@n@~@@@@@@@@@@@.@>@N@^@n@~@@@@@΀@ހ@@@@@.@>@N@^@n@~@@@@@΁@ށ@@@@@.@>@N@^@n@~@@@@@΂@ނ@@@@@.@>@N@^@n@~@@@@@΃@ރ@@@@@.@>@N@^@n@~@@@@@΄@ބ@@@@@.@>@N@^@n@~@@@@@΅@ޅ@@@@@.@>@N@^@n@~@@@@@Ά@ކ@@@@@.@>@N@^@n@~@@@@@·@އ@@@@@.@>@N@^@n@~@@@@@Έ@ވ@@@@@.@>@N@^@n@~@@@@@Ή@މ@@@@@.@>@N@^@n@~@@@@@Ί@ފ@@@@@.@>@N@^@n@~@@@@@΋@ދ@@@@@.@>@N@^@n@~@@@@@Ό@ތ@@@@@.@>@N@^@n@~@@@@@΍@ލ@@@@@.@>@N@^@n@~@@@@@Ύ@ގ@@@@@.@>@N@^@n@~@@@@@Ώ@ޏ@@@@@.@>@N@^@n@~@@adAdAdAhfAdAdAeAeA4eA:eANeAUeAjeAfAxeAseAAUADA1AFAAIA٢AuALAOAQAATAUA1AFAAIA٢AuALAOAQAAUADA1AWAAZA٢AuA]AOA`AAcAUA1AWAAZA٢AuA]AOA`AfAlArAvAzAAAAAAAAAAAAAAćAɇA͇A҇A؇AAAAAAǡAӡAߡAAAAAA'A3A?AKAWAcAoA{AAAAAAâAϢAۢAAAA AA#A/A;AGASA_AkAwAAAAAAAˣAףAAAAAAA+A7ACAOA[AgAsAAAAAA8AAȥAAXAAA0AxAAAPAAA(ApAAAHAAتA AhAAA@AAЬAA`AAA8AAȮAAXAAA0AxAAAPAAA(ApAAAHAAسA AhAAA@AAеAGCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)L̐@}@ XcAl`@!0@@@P@`@p@ @@@ @@+@ @0@ @@`@p@ @@+д@@ @@0@@@ P@ `@@@@ @ @@+@+@@@з@hp@1@ @0@@@P@`@7@+@ @+@ @@@ @ @0@@@ P@ `@0@ @@ P@@p@@ @ @@@ @ @@+@ @ @@@+p@+@@@,Б@b,=0AA,,/AV-,5@`]A<T}@acA!s_IO_stdin_usedhJImanage~managemanagesigc::adaptor_functor >::operator()1sigc::internal::slot_call0, void>::call_itsigc::internal::slot_call1, bool, GdkEventAny*>::call_itvisit_each, sigc::pointer_functor0 >`visit_each, sigc::pointer_functor0 >visit_each_type > >sigc::adaptor_functor >::operator()sigc::internal::slot_call0, void>::call_itvisit_each, sigc::pointer_functor1 > visit_each, sigc::pointer_functor1 >Uvisit_each_type > >visit_each, sigc::pointer_functor0 >visit_each, sigc::pointer_functor0 >9visit_each_type > >sigc::internal::typed_slot_rep >::destroy2visit_each, sigc::pointer_functor1 >vvisit_each, sigc::pointer_functor1 >visit_each_type > ><visit_each, sigc::trackable>visit_each, MainWidget, true>4visit_each, void, MainWidget>visit_each, sigc::bound_mem_functor0 >visit_each_type > >$visit_each, sigc::trackable>visit_each, MainWidget, true>visit_each, void, MainWidget>`visit_each, sigc::bound_mem_functor0 >visit_each_type > >4destroy_cbTsetRecInputset_option_defaultsload_configprint_helpEprocess_optionsigc::internal::typed_slot_rep >::destroysigc::internal::typed_slot_rep >::destroysigc::internal::typed_slot_rep >::dupsigc::internal::typed_slot_rep >::dupsigc::internal::typed_slot_rep >::dup#mainmenu_input_recoptions_audiodevoptions_triggeroptions_sampnroptions_sampfreq options_widthoptions_height)options_adaptive_scalehhJ{manage}{manage{manage{manage|manage|sigc::internal::slot_call1, bool, Glib::IOCondition>::call_itL}sigc::adaptor_functor >::operator()}sigc::internal::slot_call0, void>::call_it~sigc::adaptor_functor >::operator()l~sigc::internal::slot_call0, void>::call_it~visit_each, sigc::trackable>wvisit_each, OsziView, true>visit_each, void, OsziView> visit_each, sigc::bound_mem_functor0 >Pvisit_each_type > >visit_each, MainWidget, true>visit_each, void, MainWidget><visit_each, sigc::bound_mem_functor0 >visit_each_type > >ׁvisit_each, bool, MainWidget, Glib::IOCondition>$visit_each, sigc::bound_mem_functor1 >kvisit_each_type > >visit_each, sigc::trackable>jvisit_each, OsziView, true>visit_each, void, OsziView>visit_each, sigc::bound_mem_functor0 >=visit_each_type > >visit_each, MainWidget, true>քvisit_each, void, MainWidget>visit_each, sigc::bound_mem_functor0 >dvisit_each_type > >sigc::internal::typed_slot_rep >::destroySvisit_each, bool, MainWidget, Glib::IOCondition>visit_each, sigc::bound_mem_functor1 >visit_each_type > >5MainWidget::uninit_audioMainWidget::~MainWidgetMainWidget::~MainWidgetMainWidget::~MainWidgetMainWidget::setAdaptiveValLMainWidget::setAdaptiveMainWidget::setTriggerValMainWidget::setSampNrValMainWidget::setSampFreqVal5MainWidget::setSampNraMainWidget::setTriggerMainWidget::getTriggerMainWidget::hideOsziMainWidget::hideLogViewMainWidget::showOszi9MainWidget::showLogViewdMainWidget::setScaleGEAltMainWidget::setScaleGEMainWidget::setScaleUSAltMainWidget::setScaleUSMainWidget::setTuningNat;MainWidget::setTuningEquifMainWidget::setTuningPhysMainWidget::setTuningWienMainWidget::setTuningNormsigc::internal::typed_slot_rep >::destroy~sigc::internal::typed_slot_rep >::destroyMainWidget::proc_audiosigc::internal::typed_slot_rep >::dup$MainWidget::init_audioVMainWidget::setDSPNameMainWidget::setSampFreqsigc::internal::typed_slot_rep >::dupsigc::internal::typed_slot_rep >::dupۖMainWidget::MainWidgetáMainWidget::MainWidgetKAMMERTONKAMMERTON_LOGБm~!nLCDView::on_realizenLCDView::~LCDViewoLCDView::~LCDViewIoLCDView::~LCDViewoLCDView::invalidatepLCDView::setpLCDView::LCDViewrLCDView::on_expose_eventuLCDView::LCDView=yLogView::pos_noteZyLogView::lfreq_posyLogView::~LogViewzLogView::~LogViewRzLogView::~LogViewzLogView::invalidate_arrow-{LogView::change_lfreq{LogView::invalidate|LogView::set_nat_tuningA|LogView::on_button_press_event|LogView::setScaler}LogView::LogView|~LogView::LogView}LogView::draw_arrowLogView::draw_itLogView::on_expose_event|note_gernote_usnote_ger_altnote_us_altnoteܓtuning_natK wOsziView::calc_minmaxawOsziView::calc_freqxOsziView::recalcxOsziView::getTrigFactxOsziView::copy_sample_datasyOsziView::~OsziViewyOsziView::~OsziViewFzOsziView::~OsziViewzOsziView::on_realize |OsziView::paint_sampleOsziView::paint_scaleOsziView::invalidate_samplevOsziView::invalidateOsziView::setTrigFact)OsziView::setAdaptiveeOsziView::setSampleFreqOsziView::setSampleDataOsziView::setSampleDataOsziView::OsziViewՈOsziView::OsziViewOsziView::paint_marks OsziView::on_expose_event5@ about_cb̐@̐@V`z5Cez7int̰`z> cAWB'/build/buildd/glibc-2.5/build-tree/amd64-libc/csu/crti.S/build/buildd/glibc-2.5/build-tree/glibc-2.5/csuGNU AS 2.17.50FTvdZ+;0`z5Cez7s,eint̰lll`z/lK!l> /!=M!!M[zǰ'Iel18 L8#>s8(E #{*)X*+l*,e#*-S*10m*2E4ъ*H |*R   =e*d*N*H#[*H#=Y","6XP!6XeX #X!S#WX"#(W/[ap W1"΍${WC7WD JwWE Iw WH WJ\@WK#z)WL!#WM6#oxWN!#;dWO!# %WPG#(^#WQX#0GWRX#8FWTn#@WW#HhWXX#P0WY#X<WZ#`?W\#h-#Wd#pWe #xWf#TWg #dWi6#Wj#vWlP#  ! 6^ 'A< X AM n A ^^ A  t       P  i ^ ^ p   6  p&P^  <tm8!!e#$!e#c!e#)!e# '!e#i!e#x !e#S!e# !e# \!l#(!#0 > eZR"SYR%DR&#`R'S#R(S##7"d #p^ #jQ""jQ%DQ&#`Q'#` ```'_`)#`*Q#1`,W#;#`-t#u^`/]# o`1S#(`2t#,d`3t#0ig`5#8`7c#@``8c#H`:#P`;#X``?ref`@#A`A#get`E#` F0`KT`M##-L#".#)2 #xs;~#D#E#F#G#H%#Je#{L #N> cEE D,M( PQ aR0Ne#*jS #n =`s#n #- K_ #/p #ae#{  t  XE  g4142 #ɡ3h   2+ Q 2P2Q #2 #[2#<XH2o #dw_Em  ի M d "$; K]{$t !}=$jMiMg v!ϵ"U# std6 7%X,ZH]i_bijn_owpqrtvwy4|Q}n~ !Df Olքצd e g5hOifj~klmno s&tMvnwxz{|} !>Ul?b:;GgI u`s^u msV\kmsԙI0]o b\Vn"=i& \1 f#Q #SjE#TuE#\E#eE#hE#iE!{j&^ | ^ # ea Ɵ , j  `!&~--0#-e#-1?H#$~--3%e e 6 4 Zt F $x'%A"(%&.)&/%*4&++H&ke  +i-o%  %+ Ȩ ,m e+6+C  e %bcfde#remee#jdkfll#remml#9pdwfx#remy#{EK_e  ,w܃xe ,a , ae ,al ,'    % % 9-div! e e.h[ ,40 ,QY/# l l,n4je  %,v%   %},ne   %.f % % 9/ te, SY %.!t E,>\XH  >,f Ml  > e,ƍS0  > e,(e ,mz%  % ,2hqe (OԮ0absf 00div!   $ f ,lX/* ,! ,}  > e,   > e,cX]  >,c  >. e,55 .I= I +fbe I,~Ge I,)e I+7e I,e I,e I  ,  e I+&ɵI  ,Mia% % % I+nI   I,(e I l e,e I  ,Tl I,e I1S)e,  .!  ,>e e I+USqBe e+lqe +e  .y I.- I ,O2e I e %1I+k ,=Ye e I+95"e  9 ,btee % 2,ee I  9,e  9,tie %  9,e   9GgL`58#k9#'?#E#&F# G#(kH#0'I#8"J#@NK#HebL#PibM#Q5MO#R7Q#S[gS#T U#U@\#VP]#W1M`#X7b#YWgd#Z f#[@m#\On#]+cP} e 1,pH/1@!+J! +ȑ! V+! +"!  V, "!  $ +@ !  +W M!  +} r!% %  _ , &  e, H   , R&  e ,    ,!e  ,7!_fe e,U!sne 2,s!7e 2,!H  /j ,!EV%  % !} ,!B4%   % !,"Z].e "" } ,2"a%  n % !,O"   ,g"  ,"&Eye  % 2,"Xe  2,"I  ,"se  9, #6e  9,0#%Ee  %  9,R#Xe   9,o#e  9,#oe  9,#n8%  !+#Lq  +#te  +$!e  +$\u  +:$f%  ,a$8%  %  +x$B% +$e   %+$he   %+$j   %,%I*g% % % !+$%%  ,A%(  A%,d%7  A%+%   A%,%,l  A% e,%<00  A% e+%<%   %,&'*e ,$&I, e   %,F&̮   %,h&4   %,&_R   %,&ste 2,&8e 2+&sА  +&  +'w1Ӑ  +,'   ,N'5+   %,k'=8<  A%,'E8  A% e,'k   A% e3%@4(0.35'.A%(5'.C%( (5 (.H%(%e6+(.KS% ) (6L(.Nɉ% ) (6r(r.SS%( 0 7(r.]T%( 06(sv.a %% )7(.gG%( (8\.kI%( 99'9) ')4h)J1#'#58)#3/a%h)5Q)#3/c%h) n):O/i%h)%e)9t) ) ~)~ J}G!e4z<J8;BK  z<<K# V X=)DKt%<=*DK%< =4*JKؒ<%<=R*p/K gR6%<=p*\K$!h6%<>*+@K(U%<=*9hK/y%%< 0 >* K7I%< 0 0 =+K?ч%%< 0 0=&+'fKG%~)%< >I+KP.  0>l+KY7  0>+ Kb 0 >+3KuD4 6 6>+3Ky < <>+3K}; >,3K  >D,L%< 0 0 0>^,<LѪ%<?MtK=<.,K%<5,L%< n)5,L%< <5,L%< < 0 05-L%< < 0 0 n)5&-L%<  0 n)5D-L%<  n)5g-L%< 0 n).-K%<%e@-= K<%< <@-= KG<%< @-= K"<%< @.t/KA6%<@".t/K%<%<A?.endK!6%<A\.endK"k<%<@y.v K+cu%<@.v K4"%<@.dK=.d%<@.dKF %<@.AKN%%<@ //KTJB%%<@'/svKY9%%<BJ/LmZm%< 0 Bh/Ktg%< 0@/K|B%%<B/Ly%< 0B/BKE%<@/?K*G~)%<@/5pK*(%< 0@05pK׈(%< 0A>0atKKg(%< 0A_0atK%m(%< 0@00K<%< <@00Kc<%< @00K<%< @06LIp<%< <@16LZ<%< < 0 0@:16L.^/<%<  0@\16K3H<%< @16L<%< 0 B1<KVCM%< 61 LW<%< <@1 KtS<%< < 0 0@2 L<%<  0@72 KX<%< @^2 K<%< 0 B23mK%< 6 0 @23mKb]<%< 0 <@23mKf<%< 0 < 0 0@ 33mLl<%< 0  0@133mKM<%< 0 @]33mK2f<%< 0 0 @33mKCt6%< 6 @3mK[<%< 0 0@3mKk~6%< 6@3mKjX6%< 6 6@ 4"K!<%< 0 0 <@V4"K<%< 0 0 < 0 0@4"L!<%< 0 0  0@4"K1<%< 0 0 @4"K <%< 0 0 0 @5"KM<%< 6 6 <@A5"KqT<%< 6 6  0@m5"K+/<%< 6 6 @5"K@<%< 6 6 0 @5"Kd0<%< 6 6 @6"Ko<%< 6 6  @16"Ky<%< 6 6 6 6@b6"K<%< 6 6 < <=6*L<%< 0 0 0 =6L0<%< 0 0  0C6L 0 n)@7LS%%< 0 0B67Le%< <@S727KO%<@p7DK<%<@7'K=Z)%<@7"L)%%<  0 0@7"Kk%%< < 0@8"K(\%%<  0@.8"LS%%< 0@U8"KF/1%%< < 0@8"L%%<  0 0@8"KbK%%<  0@8"L(%%< 0@8OK%%< < 0@"9OL!%%<  0 0@I9OK %%<  0@p9OKua%%< 0@98K3%%< < 0@98L(^%%<  0 0@98KZ%%<  0@:8Kv%%< 0@8:BK"[%%< < 0@d:BL=p%%<  0 0@:BKr%%<  0@:BLI{%%< 0@:iK59H%%< < 0@;iLT(%%<  0 0@,;iKR%%<  0@S;iLi#%%< 0@z;`Kr&J)%< 0 0@;uKY\e%< <@;uL}Ife%< 0 0 <@;uLӡe%< 0 0 < 0 0@ <uLe%< @L<uLZe%< 0 0 DuL&e%< 0 0  0 %< )))9)9<9)4<)K/K%#K%#qK)#4>)K#<#'pvL?+,z<'LDGj'M8LP>EMtKw<6T=;K`~)%>6p=<K~)%>7=>K%<7=K\%<7=RK7%< 06=/K.U%<6=$Kn%< n) n)@%>.L%< 0 0 n)7B> Ka%< n)B`>\L%< n)6|>BtK %<DL]:%< n) 0>%> <4AFDF&Fiz F2Fj FFkZ FFlB FFmN FFn V FsLFo  GallFq ? <FA#HF![AHtF$BAHanF* #AHTF9 v!?+MHFc8 Iid5?PF|%A5 @PF%A A5"@PF%A 5E@PF%A A  e5h@PF%A A A e5@KF%A%e6@= FƯA%A AJ<)6@Fތ@%A6@dFt~)%A A6 Am\F~)%A A@(AtF> AJF)AKUAPF=%A ALF@Le FC=A$FFe eMsFI%A A A eW? AA >9A >ANzB?F2B= FS %zB BOLBidF%zB BP`BidF%zBD{F1B%%BA9B ABN'EW?(F# H2FF8EHF:{8EH Fg8EHF|8EHFo8EHmLF8EHDF}CE>CaF.%A>CFyh%AKCF %A YE %KCF %A  %KDF %A %KDF%A%eK9DF%A YE>XD= F%A YE=vDFd~)%A>DonF!%A dE e>DdF$P%A dE NE>D MF'L'%A dE B>EF*X%A B -EMܥF2Y%A -E %-E3E ?CEBQNENEQTE B9_E B_E$B0#$ȀEE Z+E$e jE+E*$  uE+E,$uE +E$jE NEFW^ ;I@^ VEF;^ +D ^ "a aNH6MzJ\%{\ % @L E?J\%{\ % @L0EFM\%{\ \@L0EGV\%{\ @M0EH\%{\ @"M0EIT\%{\ B@M<EJE%{\ B^M<EK(%{\ @M6EM\%{\ \@M6ENp.\%{\ \ % %@M6EO˯\%{\  %@M6EPn$\%{\ @N6EQϑ\%{\ % @CN6ER\%{\ % @jN3mEY\%{\ % \@N3mEZI\%{\ % \ % %@N3mE[xy\%{\ %  %@N3mE\@p\%{\ % @O3mE]=\%{\ % % @FO3mE^=\%{\ % % @mO3mE`h<II%{\ II @O3mEa<II%{\ II BO3mEb4%{\ II % BO3mEc܅%{\ II % @P"Ej|u\%{\ % % \@FP"Ekڐ\%{\ % % \ % %@wP"El[q\%{\ % %  %@P"Em_\%{\ % % @P"Enq\%{\ % % % @Q"Eoq\%{\ % % % @1Q"Eq\%{\ II II \@bQ"Er\%{\ II II  %@Q"Esu\%{\ II II @Q"Etj\%{\ II II % @Q"Eu \%{\ II II % B RBE|+|%{\@0RmE} \%{\ % %@MRmE~&>\%{\@oRmEV,II%{\ II@RmE =II%{\ II II@RuEme%\ \@RuEee%\ @SuEڎe%\ % % \@[DEw%\@[[27E%\@[E%%\ % %@[E%%0~)%\@[E(~)%{\ \@[E+w~)%\ \@\OE3!~)%\@'\R`E65aI%\ I@D\csEC I%\@a\հEJ/I%\DAEQI%\I9\ I9I9\ @\9II9OI4]IIEeSQnE{JF#.\?>E%].\?>E%] ]6] Eph%]61]$_ErL\%]6R]$_EsWK]%] e6n]`EtR\%]6]`EuzR]%] e.]?>E%] JFDE JF%]\9] \] !(aQ,+(h^,  [ q  h1 x 4 I   ? ߰ - ~ 3 w FC K ( /  t {    ( k , e k   ? F   u7^ۙp 2 XB _ۙo 2 Z7)_ ] Z7E_P>AA 2 XBb_P>B[ 2 7~_1k 7_M XB_r Z7_ը@  Z7_qN XB `q 7(`.6  7D`cz 2 Dn7``ow$Y 2 B}`s |L 2 ۬B`87b 2 ~7`o( ~7`r Dn7`"w\  B a-3 45 ۬B(aA: ~7DaiW  ~,\a  ,yab@ F THH 4a],%%;,&#J,ax,'a#:,(%a aaa a4,cB.35b.A%Cc50b.C%Cc Ic5Jb.H%Cc%e6kb.K2a%Tc 7c6b.N5,c%Tc =c6br.Sfa%Cc 0 7br.]0N%Cc a 06bsv.al%%Tc7c.gd?%Cc a =c8\.k%Cc a2c a9a92ca9Oc aOc4c/S#a#5c#3/a%c5c#3/c%c c:O/i%c%eZc9c Zc4dH.35c.A%e5c.C%e e5d.H%e%e68d.K"d%'e e6Yd.N;d%'e e6dr.Svd%e 0 7dr.][%e d 06dsv.a%%'e7d.gEc%e d e8\.kE %e de 99ec9"e c"e4e/S#c#5Ve#3/a%e5oe#3/c%e e:O/i%e%e-e9e -eNf-<-8#=ey-;ud%f>e -?_f%f d@f3-F;Zc%f@1f'-J7JZc%f.Kf "-M%f c.ff "-R%f%e7~fB0E%fBf,-Y%f -e -e -e -eef eN{l-#e#=gWE-x\d%{l =c.g[-%{l c.@g[-%{l 0 =c c.Zg[-%{l l6{g= 0xȣl%{l lBg - i%{l 0 =c@g'-:9iZc%l@gt/-C%{l@gt/-LD%lAhend-U/%{lA/hend-^N%l@Lhv -g%{l@ihv -p%l@hd-y|x%{l@hd-*%l@h?-`j~)%l@hA-%%l@hsv- %%l7i0i`%{l 0 a@9i1-|7c%{l@Vi1- =c%l@si<-Q27c%{l@i<-dw=c%lBi,- 9%{l =cBiF-8%{lBi<-s%{l =cBi- D%{l6$j3m0UC%{l  =cBLj3m-&%{l  0 =c6mjm0_%{l @jm-g%{l  Bj-xK%{l lBjB-%b%{lBje-F%{l  lBke-9G%{l  l BCke-#%{l  l  7`kq0q{%{l =c7xk@0O%{l7k{0 \%{l lBk-|+%{l7kg0+%{lUk0D|%{l 0 =c>lub-cj#%{l  0 =c>;lT-ly%{l   >_l0m-q%{l  =cMm-y%{l f9l f9fl4Dm],3S,Mf#Sru,N~)#7l>,9D%Dm a7mk,>b%Dm 7mB,B %Dm5-m[,D%Dm:[,I%Dm%el4>nh^,iS$,Dm#5ym/,j%>n5m/,l%>n Dn6m= ,nOn%>n Dn5m/,p%>n%e7m ,}/%Un a7 n,%Un 7$nP,+%>nV[,&Dm%UnJm9Jn Jm9JmJn4wnn^1@W%^4nt^9#[n#Wt%R4o^06#Jm#{az@n#Fn#(#Kn#Nn# Q\Q#(5%oqS%o n n n5?oeV%o%e7Wo\a#%o0sodupg'o%o7o+ oP;%o n7o!va%oX{B: no n4#p^do#5 p%#p o8}^%)p Uno/p o4p ^do#5gph1%p o8}^%p Un4pp 4p4Urz^#[n#d8o#\ ;~)#5p{%Ur5p{%Ur o5 q{%Ur [r5%qz%Ur%e6Aquf@~)%fr7cq+ O%fr aBq h%fr aBq Y&%fr @q?~)%fr@q_2;~)%fr@r5@!jQ~)%Ur ~)@r3@&~)%UrB6r!+%UrD= 4S$lr%Ur [rp9ar par9p4 t^T)SVT{Ur#5rT+% t5rT0% t t5rT=% t lr6r= TBt% t t5skTK% t%e6*s?TP#A~)% t6Fs=TUÖ~)% t6bs_TZ @~)% t6s5@Ta~)% t ~)6s3@Tf~)% t7s!Tijm% t6suTn~)% t6s{BTsa Y$TvfE% t Urrr9t rr9rrt9,t ^4ht\I#> # #4tbI$S3t#5tsZ&%t t6t2j)Ur V= 6Ut%t thIht9ht9t ht4vnIE#ht#SPmv#51uG%(v%e7Iu/ J:%(v7euWO^  ZuX%(v t vCu~_lr%(v [r ~)Cuj 'lr%(v [r ~)CucMrKlr%(v [r ~)V= u5.v%(v 4v#v 1tt9t9:v tN w^#p#Bnv}^^H% w.vM%w.vM%w w@v= Y w%w w[vL%w%e.vm%w X$%w ۬w ?v?v9w9?vNw^C#?v#.Qw:jc%w.kw:jl%w &t.w.&i%w X[w_%w%e$OOi%w ۬&w(hx:&\;4 ]v;5hx*h/?]N;6hxdHI?]M;7hx~?];8hx?];9hx333333?]0;:hxHգp= ?]g;;hxS? *0<^Atk=.xGdk>=_>tK {_:| CzGtk?   } p M A " F(yzz@0   a  0E`Ӄ7y< ^E%/ 58, \g%/ 5 *]AJ*B0 |6y^9_%C C6ys93x x a6 z_9 P ̡aC-'V9DC.s{'0+D s{4g{y?$bid_?5I#5rz?&%g{5z?'%g{ m{5z?(%g{ \5z?)%g{ 5zt?*%g{%e5z?,%g{ x{6{= ?--{%g{ x{62{}?/.!~)%{ x{6N{6?1ZI%{X.7?2X%{Cz9s{ y9~{ Cz9Cz~{4|y*S8Wt#SXx#SYI#5{},%|5{}4%| t x \5|}=%| \ \56|}?%| |6W|= AZB }%| |6s|QC~)%}6| JH?t%}6|}LO0x%}6|UMPII%}6|TI%}W|%|%e{9} {9{}4*~yP0S)PJ#5E}pP2%*~5^}pP3%*~ 0~6}= P5e;~%*~ 0~Z}pP8%*~ c}addPC-%*~ A~c}addPDI+%*~ G~c}addPEuH%*~ M~c~addPF`%*~ X~VPHs %}96~ }9}9y9"y9S~ {I9(y4I'4S='#5~\'%5~\'%%e5~\'% 5~\'% 7~'׶{% 6= 'ߩ% @9d' cD~)% @[m\'A~)% 6w`'%@u'I~)%dB'%.y^~9 ^~9^~4?y .S ?^~#5 2%5 3% 5/ 4%%e6KX 6%Ui :*% Yl ;N% |9.y 4aEy L##5ɀ O%a 5 U%a \ &t5  ]%a \ | &t5( c%a \ g5K l%a \ | gW%a%e9y4Ky p##5a r%W`%%em4_Qy ##5 %_ x{ &t5 %_ x{ | &t5& %_ x{ g5I %_ x{ | gW%_%e4Wy ##bgr_ *~#50E % G~5ł0E % ;~ \ &t50E % ;~ \ | &tW/E%%ee4%I 8W«%64I # #/ ̕#̓ S#6wd S~)% 6m\ ОQ~)% 52 % S5ʃ2 %52 % 6 ?%6` B%67$_ nV%@Y$_ /V%% e@v` %D` ]%% eS %9%9S9%4؄ yD1idD2#(V UkUl#1HUoe#)7Up#valUqe#eeg e@@%@f xf !4yg$U eg)U >h* e$i exi\ exi >xjkit  zxiF Lxk CZkׅ jwin zxl@kr $xk;c %Dkb *xkU +]jgr3 ,}xjgr2 4}xk] <xdk =jgr1 >}xkݏ Kjgr0 L}Ќxk< fxkw gkk mxk n m 'nnojnnmznpy q &nnnp rչ$@,@'ns);w@@ 'nQnFrfw@@ _nqrw@@ Rp rZ@@ n|pp. net@@ 's@Ș@ 'nu@Ș@CpQ mΈ` .n noAn nonѶnƶm% .n;n0oN@jndnYmdwnpt vF&nnnpU rչ@@'ns;@@ .nQnFrf@@ _nqr@@ RnrZ@@ n|ppx net@!@ .sL)@1@ .nu)@1@Cp m 0n no0An no`nѶnƶmNJ% 0n;n0oNjndnYm+w0np v `&nnnpy rչ@@'ns; @E@ 0nQnFrf @*@ _nqr @*@ RnrZ@*@ n|pp netE@M@ 0sU@]@ 0nuU@]@Cp m\ 2n noAn nonѶnƶm%0 2n;n0oNjndnYmwnp vԌ&nnnprչڛ@@'ns~;8@q@ 2nQnFrf8@V@ _nqr8@V@ RnrZB@V@ n|ppnetq@y@ 2sڍ@@ 2nu@@Cpsf;@Ҝ@ 3nQnFrf@@ _nqr@@ RnrZ@@ n|ppnetҜ@ڜ@ 3mǎ@ 6n nopAn nonѶnƶm% 6n;n0oN jndnYm]wp npv? &nnnprչg@o@'ns;ŝ@@ 6nQnFrfŝ@@ _nqrŝ@@ RnrZϝ@@ n|ppnet@@ 6sE@@ 6nu@@Cp*m 8n no An no@ nѶnƶm%p 8n;n0oN jndnYm$w npMv@ &nnnprչ@@'ns;@*@ 8nQnFrf@@ _nqr@@ Rp+rZ@@ n|ppnet*@2@ 8s:@B@ 8nu:@B@CpmY @n no An no nѶnƶm% @n;n0oN` jndnYmw npvђ &nnnprչ@@'ns{;Z@@ @nQnFrfZ@x@ _nqrZ@x@ RnrZd@x@ n|ppnet@@ @sד@@ @nu@@Cpm Bn noP An no nѶnƶmR% Bn;n0oNjndnYmwPnpv&nnnprչ(@0@'nsB;@@ BnQnFrf@@ _nqr@@ RnrZ@@ n|ppnet@ǡ@ Bsϡ@ס@ Bnuϡ@ס@Cpm Dn noAn no nѶnƶm%P Dn;n0oNjndnYm}wnp(v_ &nnnprչT@\@'ns ;@@ DnQnFrf@Т@ _nqr@Т@ RnrZ@Т@ n|ppnet@@ Dse@@ Dnu@@Cp<m` Fn noAn nonѶnƶm% Fn;n0oNPjndnYmDwnp_v&&nnnprչ@@'nsԘ;ޣ@@ FnQnFrfޣ@@ _nqrޣ@@ Rp=rZ@@ n|ppnet@@ Fs0'@/@ Fnu'@/@Cpl0wi Nek Oeak Pexi Yxm \nnojnnm np_qP&nnnprչS@[@'ns;@@ \nQnFrf@ʥ@ _nqr@ʥ@ RprZ@ʥ@ n|pp'net@@ \u@@ \nu@@CpJs;p@@ hnQnFrfp@@ _nqrp@@ RnrZy@@ n|ppmnet@@ hs);@@ inQnFrf@@ _nqr@@ RnrZ@@ n|ppnet@%@ isќ;_@@ jnQnFrf_@|@ _nqr_@|@ RprZh@|@ n|ppnet@@ jm{ pnnojnnm\npq@&nnnprչ-@5@'ns ;@@ pnQnFrf@@ _nqr@@ RprZ@@ n|ppnet@@ psgɨ@Ѩ@ pnuɨ@Ѩ@CpsK@@ |n0p%r@K@p@ ]nKrWK@p@ PpbvrZ`@p@ p|ppnet@@ |ts@@ |sǟ3@s@ n0p%+r@3@X@ ]nKrW3@X@ PpbtrZH@X@ p|ppnets@{@ ts@@ s;@Q@ nQpF)rf@6@ _nqr@6@ RprrZ"@6@ n|ppnetQ@Y@ tsa@j@ mN nnonnm/&n<p1q0&nnnprչa@i@'nspN@@ nptǬ@Ϭ@ s̡Ϭ@׬@ nuϬ@׬@Cp'7s@@ nu@@Cp'Zt֭@@ psl@@ pnu@@Cp}s@"@ \nu@"@Cpt7@G@ \tG@S@ jtf@u@ iv.p'nr@@Wp t@@ ts@@ t8@D@ tsL@U@ t@@ |ts@@ |tү@@ t@ @ 3t @@ FyH-@{@'nr-@{@Wp y{@@'nr{@@Wp / y̤@y@'nr@y@Wp R yy@ٱ@'nry@ٱ@Wp u yPٱ@@'nrٱ@@Wp y@4@'nr@4@Wp yԥ4@@'nr4@@Wp r@%@'nr@%@Wp !4y^:#[n#S^= #5KSwB%y5dSwG%y 8}^L% 4^N#[n#S^j#5¦T%X5ۦY%X 7}^_%^ F8}^f%^ iz: . .R#e .l# F%FL L:d 9L4^(Se#S(i#5O% i6ΧJX\9Dn%X_Ci% On io oN{^ ##o#.F%{ F .e%{ i d}^% 4!I#t#52%! t v6!rr%! ' ~)6 sBájrr%! 2 ~)W1%!%e9- ^98 ^9C <4^[#[n#S^^Ʃ#5'c%̩5'h%̩ ƩX}^n+e%ҩ =Ʃe <Hة HN^#p#@}^F.~)% =.*9%.D9% @f= % [8%%e$2? % X ݩݩ99ݩN(^C#ݩ#.ު:j~%(.:j%( '.jU%( XW_%(%e4R -c#?H#D-da#wn9[n4^<#wn#"#7}^%R%5%5̫% XW%%e dd4^@#n#"d#05/k%% X5Hk)% 5bj-%%e6}\7Q {dupJ' 9 4۬^^7ɬc P oEm{n94_^(<#wn#"#7}^7%_50%j5I%j ۬W%j%ee 4^X#n#"#05k%% ۬5ŭk)% 5߭j-%%e6\7~ {dupJ p9 p4X%^^7Fc  oEmJn9ة4^<#wn#"H#6}^e%5%5ʮ% X+Se% =W%%e ^^4+^@#n#"^#05Jk%% X5ck)% 5}j-%%e6\7i {dupJC 9 41^~6S*~) o =ETn4z7^6<4ko#52G g%z 5Kyb% X5db% X:?b% Dn9/p4=^6<4k4p#5G g% 5Ұyb% X5b% X:?b% Dn9p42C^J8bPo X 298 4bI^J8bP1 X 24O^J8bP X 9 4U^J8bP X 4ܱ[^J8bWӌ Dn 24a^J8bW!" Dn  e2 |I !#} #SP\  #~o= s~% 5 #%5 '%  = +#%%em =%#% %m ?#% % %6q E)#% 6RA G%%%µ6nsv L)%%6? M7~)%6t/ O%%0³end Q6l%%6޳t/ T I%µ0end VI%µ6v YAII%62d [JI%6Nv ^I%µ6jd ` I%µ61 ce%µ6< h%µ6ô5p m9%µ 07۴F =%7 V%7 B z%6'rz u %6Crz G%µi /_#%µCu v%%µV^M }%%µ9 .y9##9 #gn1@)6 ^ K)6 G  y1)61hƩ ̩ U 8)6U 6)6 Ҏ S ¦)6Y X޶)6޶@O i')6B0F {7n9)67 RSd)6S {)6{n ҩ =Χ)6  X 282)6Pb X)6^Pg z 9I 9 > X 2hK)6Pbh Xn X )6Pb X)6^Pg    X 4Ұ)6Pb4 X]ñPW]^PWb Dn 2d)6Pb Dn)6˹0)6˹eй j ۬o)6repo #pF')6'e, Xɬ[)6[e`  Xgp)6tUn pPW^PW Dn )6Pb Dnv)6r  w>f)6>r  yxy0@?@$!obj9C\!yy@@O@!obj9x!yyP@_@"obj98",`@g@w)6,n"r<`@g@nG kp@y@wrepco"3fʮ)6[S =ͯ@@"repo"a_1"#3qkPnnvqXTnnnc =P^@@w^PPUeUT 2 X9^@@w^PE#@h# 2 Z _@س@#g^P#ge#+{` Ze)6 @ @w)6 $vcp ,$u@@n _/@@wrepcoO$3f)_ @"@w^PUeT 2 X9KE_0@9@w^PKr$@P$ 2 b_@@X@$g^P$ge%+{` ~_`@b@w^PUeT X/_p@y@w^P/6%@4Y% Z_@@|%g^P%ge%+{`  ZNp)6repo p̫<)6'r 2b@˴@%gD72&ۆ9r@@) V`@@w^P Va)@ [) ۬ a@@w^P)@) ~(a@ص@)g^P%*geH*+{`  ~4 ^`@s@k*g[ <* U@@wX J@˒@*i e&+j eo+h e+h e+u@@h. e9, В@"@w. e0@@q,g #-g\ \-g)U >-g$U e.f IP.c e.i e.str Q/{ |l {>? wFd@@/opt w? 0gv- wC0io wIy0i ye؄z V Ya@1@0g* Ye0<)6[r }@ @i1gD71ۆ9r@@ ! XI1)6e%I X})6}:j0~) ! ' )6}r C)6r  9]y :: !U;V3EHWonWq^NS2Z2faL &  6 +x ." /Y 0e 1e] 2e 3eR 4e FIZc I^ !U;V3EHWonWq^ NS k]2Z2faL &   a a a a a a a aI 9 gAn؄ @a'V9DC.s{'0+D s{ww*h/?wdHI?w~?x?(x333333?=xHգp= ?RxS?'Ƨ 4 ''%A"nb[E @W['y)P[*$y)[)W['y)P[(Bhy)[+rg)W[` y)P[aԤy)[dm)BK  z<'pvL?+,z<'LDGj'M8LP>;BK Nz<'pvL?nz<'LDF2Fj FFkZ FFlB FFmN FFn V FsLFo  HanF* #A  HFc8" H2FF8EHF:{8EH Fg8EHF|8EHFo8EHmLF8EHDF}CE  \@mdec\1n\;hex\ \^O\; oct\ɏ@G\3f\ yq\ >>\$Zj\' I\*E x\- cs\12@^\47x \7e=Jm\: "\L\Z!\Od!=\T!Yn\W|! in\vEvout\yCKv cur\T!]3YT]4U ]54*]6 *]7hP ]8* :m]9>E@4]:E# FdQ];tF]<$]p]= ;t^x;^;I@^ VEF;^ +;^y);^Ay);^Sy);^Zy);^y3y);^yy);^y }y);^y^y)RBEnz< HG_Y}F,j+ y)F,j+]y)F,j+&yy)F,j+W}y)F,j+y)F,j+y)F,j+Wy)F,j+ny)F,j+y)F,j+*y)dm vdZ+; 0`z5Cez7s,eint̰lll`z/lK!l> /=M!M[zǰ'Ke l std 6 7% X Z ]? _[ bs i j n< o[ pz q r t v w y |< }Y ~      / Q s        : W ճ o ב  d' e< gG ha ix j k l m n o s8 t_ v w x z { | } 3 P g ~       / Q t    : ;Y gI u`s^u ms VNkmsԙI0]o b NVn"=i  N1 f Q  S"< T-< \C< e_< h{< i<HjP | P # ea j  `~-/0]O#/1>#~-/3OO 6 4 Zt F $x AQ!.!/4!+>e&ke?-o%%[ Ȩsme6+Ce%c fde#!remee#k fll#!remml# w fx#!remy#"{" ( #< eT ܃xeT Z $s as   ae al ' %% % div!ee& h[ 0< Y/#llY 4je%{ v%{ % } ne{ %& f%% ' te SY%& tE) \XHs ) Q  Ml) es ƍS0) e (e mz% %   2hqe : Ԯ( absf( div!   $ f W X/*o ! }) e  ) e cX] ) 4 c ) & e' 5ed.2 )ad  e#ך#=#v## =#(;@#0"#8#@u]#HGU#P$#X#`  #he"e#pb&e#tts(s#x5,>#-L#".#)2&#xs;~#D#E#F#G#H%#Je#{L,#N>2 " cEbpM*EP+Q +aR 0Ne# *jS"# `s# n#7D k E# E# ! #  #,-K _# /p # ae#2 <Xb&[=[' xbe[Ge[)e[7e[e[e[<e[8ɵ[_ia%%%[[[(e[lee[<Tl[e[-S)e&3 Pee[gSqBee~qee&y[&-[O2e[e%-[k/=Yee[K5"eKttee%.ee[KeKtie%KeKYgL`5 8# k9# '?# E# &F# G#( kH#0 'I#8 "J#@ NK#H ebL#P ibM#Q 5MO#R 7Q#S [gS#T U#U @\#V P]#W 1M`#X 7b#Y Wgd#Z f#[ @m#\ On#]uP}e-,/.tm8 e# $e# ce# )e# 'e# ie# x e# Se# e# \l#( #0J/-@bJs yȑy""yMy5r%%_X& epH pR&{ { ep  pe p_fepe snep .+7ep .CH p'j sEV%%s5B4%{ %sZ].e5a%{ %s  p  B&Eye{ % .`Xe  .}I  psep K6ep K%Ee{ % K Xe  K'e KDoe Kfn8% sLq{ {  te  !e  \u{ {  f%  8%{ % 0B% Qe{ {  %rhe  %j{ {  %I*g%%s %  (s  { 7  ={ {  _,l e<00 e<%{  %'*e I, e  %̮{ {  % 4{ {  %B_R{ {  %[ste .t8e .s{   {   w1{    {   5+{   %#=8<  EE8 egk  e0S @1 0320A20C20He30KS30Nɉ3*r0SS04Lr0]T03hsv0a %40gG5\0kI66o6o1 YL1o#2#31a 2 #31c & 7O1i e6, 6 ~_J}I!e123~L88BF  239F# V X: DFt73: DFB3: JFؒH373: !p/F gR! 73:(!\F$!h! 73;B!+@F(UB3:j!9hF/y%730;! F7I7300:!F?ч%7300:!'fFG%6 73;"FP.0;$"FY70;G" Fb0;j"3FuD4! ! ;"3Fy' ' ;"3F};;"3F;"GB3000;#<GѪB3<MtF=N3&>#FB32W#GB3& 2p#GB3T32#GB3T3002#GB3T300& 2#GB30& 2#GB3& 2$GB30& &:$FB3e=\$= FZ3B3T3=~$= FGZ3B3=$= F"Z3B3=$t/FA! B3=$t/F%' 73>$endF!! B3>%endF"k' 73=1%v F+cuB3=N%v F4"73=k%dF=.dB3=%dFF 73=%AFN%73=%/FTJB%73=%svFY9%73?&GmZmB30? &FtgB30==&F|B%73?[&GyB30?t&BFEB3=&?F*G6 73=&5pF*730=&5pF׈B30>&atFKg730>'atF%mB30=9'0FZ3B3T3=['0FcZ3B3=}'0FZ3B3='6GIpZ3B3T3='6GZZ3B3T300='6G.^/Z3B30=(6F3HZ3B3=;(6GZ3B30?Y(<FVCMB33z( GWZ3B3T3=( FtSZ3B3T300=( GZ3B30=( FXZ3B3=) FZ3B30?>)3mFB3! 0=e)3mFb]Z3B30T3=)3mFfZ3B30T300=)3mGlZ3B300=)3mFMZ3B30=*3mF2fZ3B300=<*3mFCt! B3! =c*mF[Z3B300=*mFk~! B3! =*mFjX! B3! ! =*"F!Z3B300T3=+"FZ3B300T300=?+"G!Z3B3000=k+"F1Z3B300=+"F Z3B3000=+"FMZ3B3! ! T3=+"FqTZ3B3! ! 0=%,"F+/Z3B3! ! =V,"F@Z3B3! ! 0=,"Fd0Z3B3! ! =,"FoZ3B3! ! =,"FyZ3B3! ! ! ! =-"FZ3B3! ! ' ' :L-*GZ3B3000:~-G0Z3B3000@-G0& =-GS%7300?-GeB3Z3= .27FO73=(.DF<73=E.'F=Z73=q."G)%7300=."Fk%73T30=."F(\%730=."GS%730= /"FF/1%73T30=9/"G%7300=`/"FbK%730=/"G(%730=/OF%73T30=/OG!%7300=0OF %730=(0OFua%730=O08F3%73T30={08G(^%7300=08FZ%730=08Fv%730=0BF"[%73T30=1BG=p%7300=C1BFr%730=j1BGI{%730=1iF59H%73T30=1iGT(%7300=1iFR%730= 2iGi#%730=22`Fr&JS 7300=T2uFY\e73T3=2uG}Ife7300T3=2uGӡe7300T300=2uGe73=3uGZe7300AuG&e73000%=3S S  6 6=36S 13 F /F%# F%# qFB #1X5 F`3#pvG?+,23GDGjM8GPX5BMtFwN33 4;F`6 h53(4<F6 h54@4>FH34X4F\H34u4RF7H3034/F.UH334$FnH3& & =4.G%H300& 44 FaH3& ?5\GH3& 345BtF H3AG]:H3& 0h5%n531n8HDC&HizC2HjCHkZCHlBCHmNCHn VCsLHo DallHq? 9Hn8#EH![n8EtH$Bn8EanH* #t8ETH9 .6+MEHc89Fid26PH|826PH8826PH826PH88e2 7PH888e2:7KH8e3[7= HƯ888L98>9K;6(H9qHB #9H;#9IH%#9H;#9H) # E2HF;EH:{;E Hg;EH|;EHo;EmLH;EDH};;E:aH.n8;_:Hyhn8H:H n8<%H:H n8%H:H n8%H:Hn8eH:Hn8<;;= Hn8<:.;Hd6 n8;R;onH!n8<e;v;dH$Pn8<<;; MH'L'n8<C9;;H*Xn8C9;JܥH2Yn8;%;;q6;C9N<<N <C96<I9<B0#8<><Z_<e "<{<*  -<<,-<<"<K<$P 8I@P V<8P +A P "..K>! Mz9rM|#&4=M>&N=M>>=k= MQ>==`M=>==$_MmS>>==$_MBS=>e==`MZ>>=>`MY=>e=(>5pM>>=J>0M >>>=l> M&=>>=>`Mm>>>=>% MG=>>AMpF>>=6>>=6=6>1?H/K ]/L?# /M?#4;?/P(??4]?W/TX???4u?/WE?4?{/Z??5y/]^?>6>B#>sB(E #{')X'+l',e#'-?'10m'2Eъ'H|'R'@-@O8@@>@?"e'O@){@d'N'?#['?#?@A"?"6@@@!6@ e@ @# @!?# W@"{@#(?/@@#@@@ A?1"΍${?C??D/A Jw?E@A Iw ?HQAB ?J \@?KB# z)?LB# ?MB# ox?NB# ;d?OB# %?PB#( ^#?QB#0 G?RB#8 F?TB#@ ?WC#H h?XB#P 0?Y2C#X <?ZGC#` ??\]C#h -#?dC#p ?eT #x ?f'@# T?gT # d?iC# ?j'@# v?lC#PBABOBBB#B?BBPB$ABOBBBOBBBB#C?BBCC@B#,C,C@5AC#GC@,C8CO]C,C@MCOC@@???@@CC@cCOC@@C#C?@@C#="C #C#C?@#jS"D-D"jS% DS&@# `S'-D#CR>D RODE`R' _R)@# R*E# 1R,E# ;#R-@# u^R/E# oR1?#( R2@#, dR3@#0 igR5-D#8 R7E#@ `R8E#H R:@#P R;@#XRETER?!refR@'@# ARA'@#!getREF#R _EE0RK TRM.F# BRend/U/V>_Rend/^NV=|Rv /gV=Rv /pV=Rd/y|xV=Rd/*V=R?/`j6 V= SA/%V=*Ssv/ %V4LS2i`V0K=iS1/|gMV=S1/ mMV=S</Q2gMV=S</dwmMV?S,/ 9VmM?SF/8V?T</sVmM?.T/ DV3TT3m2UCVmM?|T3m/&V0mM3Tm2_V=Tm/gV?T/xKVV?TB/%bV?Ue/FVV?FUe/9GVV?sUe/#VV4Uq2q{VmM4U@2OV4U{2 \VV?U/|+V4Ug2+VSV2D|V0mM;BVub/cj#V0mM;kVT/lyV;V0m/qVmMJm/yVP6VP6PV1tWG)3T)MP#Tru)N6 #4W>)9DtWK41Wk)>btW4IWB)B tW2]W[)DtW7[)ItWeV1nXFH)iT$)tW#2W/)jnX2W/)lnXtX3W= )nXnXtX2W/)pnXe4X )}/XK4]k.K9^e3Z]?.P#A6 P^3v]=.UÖ6 P^3]_.Z @6 P^3]5@.a6 9^6 3]3@.f6 9^4]!.ijm9^3^u.n6 9^3^{B.saX$.vfE9^\\6E^\6\E^6\^jH6g^^H1^wG   # > F#  F#1_}G $T 3_#2^sZ &__3^2j )\U= 6U__#_G^6^6)_^1X`G E^#TP mX`#2l_ Gc`e4_/ J:c`4_W O^.GY_ Xc`_X`@_~ _\c`\6 @ ` j '\c`\6 @9`cM rK\c`F\6 U= u5i`c`o`^`l^._6._6u`._KDapHZ#?`}^^HDa&`MOa&`MOaUa=`= Y[aOaUaZaLOae&-aOa+rOasJaz`z`6Ja6z`Ka^HCz`#&a:jca&a:jlaa^&aOOia+rZa_aeiasaa[Gdk4= bGtk,& 'b9~   T 3Zb9D{D{3ubd9w{w{ 3b9{{3bU95v5v 3bD9 | |\9bbbc5&]64^v65c*h/?^N66cdHI?^M67c~?^68c?^69c333333?^06:cHգp= ?^g6;cS?s 07[Atk8.cFWF-+s   6cFG1dvHyX#T^d#2d9i26d9id3\d}^ 6 idcW}^6 iic_di#el##d6 dFGd`iL(+#G'b# Y+'e#( +(e#, ۸+)s #0 +*e#8 ++e#< +,e#@ +-e#D +.e#H k+/s #P +0s #X j+1s #` +2s #h G+P/v#p P+Q/v#x +R/v# и+S5v#T+Vo#T+W;v#TP+ZAv#TO+[Av#T+\e#T+]Gv#TZ+^Xv#TY+_Xv#T+`hv#T+ae#T+be#T+c\#T+e6 #T+fe#T+ge#ZfLdexvi&fL%dexva$gKddexv4# D/dK#X6kX1)qH(<X# "wj#3p}^6 )q2p4q2p4q~pqS6 )qcV4qe/qpp1q HXX# "p#02vqk%q~p2qk)qq2qj-qe3q\75cdupJ:q6q:q1+rH~3ru6 YcBX6Nn1rH(<X# "m#4lr}^7r2rr2rr+rVrer1r1r1bsHXX# "1r#02rk%bs+r2sk)bshs2/sj-bse3Js\7~cdupJr6nsr1sH^4sc YBmJX6Op1,tH(<X# "o#4s}^0,t2s7t2t7tsV7te2tss1t!HXX# "s#02ytk%ts2tk)tt2tj-te3t\7FcdupJ=t6t=t1%u'H^4ucYBmX1nu-H6 <4kZ#2XuG gnutu7?buxtX%u6_Z1u3H6 <4kdZ#2uG guu7?bytXzu6Z1u9HJ5bWӌtXu6u%u1$v?HJ5bW!"tX$v6*vzu-b3bccXvSdhvs  xvc~vvevX*@f)6vpgvdf)6vhdigvjf)6vh@Ovfjigwjf)6wiB0(di(djgBw.mf)6BwhY~mmgtwmf)6twiB0di~mBngwnf)6whYnogwaof)6wh@Owo,ogwof)6wiB0oinCpexX3f)6xxpg+xCjf)6+xljgExof)6ExogkxuhPWkxh^PWpxtXuugxXuf)6xhPbxjuxtXgxzof)6Exgx?uf)6xh^Pgxnutugysf)6yhe y7tsg/y Zf)6/ykrepYSZlugOy'jf)6+xgoyrf)6oyhetyr+rlsgypf)6yhey4q~plrgyZf)6yktXZgy vhPWyh^PWyjtX$v*vg'zuf)6'zhPb,zmjytXgQzuf)6Qzh^PgVzuun}z`f)6}zfrOanzkf)6zfrkgzGklhs%sFGkrhs%sFGgzHiB0XdiXdmozjjg{%lf)6{i{Ul~pnD{?lCf)6{fr9bpw{?b@@5qobj9D{5'bp{Zb @/@6qobj9w{Q6ubp{{b0@?@6qobj9{6p |b@@O@6qobj95v-7bp=|bP@_@c7qobj9 |7g]|pf)6]|h[Sb|)qcg|jf)6|i:|jjcp,}q`@@7qrepY 8qa_1,},8r3qs }=|tQ|tG|ug|Tt{|vq|O8wxl@p@;t xcgG},nf)6G}jHnx}Tr@ @wy)6}r8s}1} v;}8wx@@t xrx}s@@wqrepcY8r3fbsg~-pf)6~jIpxg~s@@wy)6g~8sH~}Pv}8w0x@@t:x,tx~t@@wqrepcY!9r3ftg~9Zf)6~ktXYZxgH@#@wz^PgD9zelg9{{x@#@txtx{Jx@#@dt_xtTx{~@#@Xt~t~utX6oxH@@wz^Pw9z@w9uqxI@@w|^P 9|@ :us62txF0I@ @w|^PF):|@KL:upMI@(@o:z^P:ze:}+{%u`tu6rjxiI0@8@wz^Pw:z@w;ux,I@@I@w|^P ,3;|@ 1V;u+r6rxyIP@Y@w|^Pyy;|@~;u6ṕI`@x@;z^Ṕ;zeҁ<}+{%u`tu6xI0@9@w|^PL=<|@L`<u~p6/qxaI@@I@w|^Pa<|@f<upJP@h@<z^P=ze$=}+{%u`tux`1J@@wz^P`G=zeej={z@@tztz{y@@dtyty{y@@Xtyty$vtXxMJp@x@wz^Pw=z@w=$vqxiJ@@w|^P =|@  >$vsx3J@@w|^P3,>|@8O>$vpJ@@r>z^P>ze>}+{zu`ux̄J@@wz^Pw̄>z@wф?$vxJ@@w|^P 6?|@ Y?$v+rxZJ@@w|^PZ|?|@_?$v6pK@ص@?z^P?ze@}+{zu`u6g؅~Zf)6؅krepYZer<f)6oyfrpS/s@;@@@zD7x@rۆ9bs{ @$@@tw[z6@>@Cvhzf4 &t tGwP&Atgwt[wv&tvtvh!&t5t+L'jt`tVͥrP'tv| gs'&tttvg{y@@'t#y@@t̕@$@N$@,@tw[z$@,@Cvhzg<'tPtFb(jtvtl8@C@t%tww8@C@Atwtwww8@C@vwhtwY`(tvhs;(&tttvi{y@@'t#y|@@t̕@@ڧ@@tw[z@@Cvhzi<(tPtFb )jtvtl*@5@t%tww*@5@Atwtwww*@5@vwitwp)tvnjsǨ)&tttvk{y@@'t#y@@t̕@@f@@tw[z@@Cvhz9k)t tGw*Atgwt[wv@*tvtv!p*t5t+L*jt`tVKr+tv|\ks-@+&tttvk{y|@@'t#yn@@t̕@@w@@tw[z@@Cvhzl̕,@9@&9@A@tw[z9@A@Cvhz$liÎY@o@'t͎{Y@g@WvGlÎ@@'t͎{@@Wv}lÎ@@'t͎{@@Wvl2Î@J@'t͎{@J@WvluÎJ@@'t͎{J@@Wvl{Î@@'t͎{@@Wvm =:: >3EaL & H?oFAn?q?C2D2϶3s 3s >3EaL & H?oFAn?q?8@CG2D2 a. abc*h/?cdHI?.c~?Cc?Xc333333?mcHգp= ?cS?Ƨ&4@g AQnbEE@WE'1 PE*$1 E= WE'1 PE(Bh1 E+rg= WE` 1 PEaԤ1 Edm= BF  23pvG?+,23GDGjM8GPX58BF N23pvG?n23GD C2HjCHkZCHlBCHmNCHn VCsLHo EanH* #t89)EHc8Q)E2HF;EH:{;E Hg;EH|;EHo;EmLH;EDH}; N@m۰decN1۰nN;۰hexN ۰N^۰ON;۰ octNɏ۰@GN3f۰N y۰qN >۰>N$Z۰jN' ۰IN*E ۰xN-۰ csN12۰@^N47۰x N7e=۰JmN:۰"NL\ZPNOdP=NTPYnNW|PfinNvEoutNyCKcurNT!ѲO3YTO4U O54*O6 *O7hP O8* :mO9>E@4O:E# CdQO;tCO<$]pO= 8tPx8P8I@P V<8P +8P1 8PA1 8PS1 8PZ1 8Py31 8Py1 8Py }1 8Py^1 BQn23TEEG%YC,j( 1 C,j(*1 C,j(*1 C,j(h1 C,j(W}1 C,j(1 C,j(1 C,j([1 C,j(*1 i~>-A@vdZ+;8`z5Cez7s ,mint̰l t t`z/ tK! t>ed .ad  m#ך #= #v # # = #(;@ #0" #8 #@u] #HGU #P$ #X #` #he "m#pb &m#tts ({#x5 ,F# -T#" .#) 2#xs ;# D# E# F# G# H-# Jm#{ L#N > cM ._1M ._2P Q aR 0Nm# *jS# 1._3 `{# n#71D kM# M# !# #- K _ # /p # a m# XFmtn std6 7-X Z ] _ b i! jJ n o p/ qG r_ t v w y | } ~= _      (@ms ͤΕиѰ\:؀ d e g h i j k1 lH m` n o s t v  w+ xS zk { | }     # 7 P w       < c:;<C D EGHIJK%LGMjNOH!>[x)Ls(Jq 'C_{Ie¥ +Ceɇʩ5Qm   E$(B bPWU2P#2#WU2$oePn 8C7HkL Gn>gI u`s^u ms VCkmsԙI0]o b CVn"=i C1 fQS;T;\;e;h <i!<P jE | E #Ɵ, Aw! ."/ #4+$ &km11$ -o-1-$  Ȱ1% mm$ 6+C m- &J  c f dm#'rem em#s  k f lt#'rem mt# % w f x #'rem y #ǰ /=M!M[z'0m {   ( m  % ܃ xm  )%( a ( 1%G  a m1%_ a t1% '   -- * div !! mm+ h [% 0 1% Y/ #J tt% 4 jm1-%0  v-0 1-6 }%_  nm0 1-+ f -- , t m% S Y-+ t M% \X H( 1 % Mt1 m%(ƍ S81 m%@( m1%bm z-b-h6 %2h qm6 !Ԯ-absf  -div!s    $%X/ *s   %!  1%: } 1 m%\  1 m%ycX ]y1 4% c1 + m%5   += $b m%G m%1) m$H7 m%` m%} m}% m$ɵ 11%i a---$  11%+( mtm%H mHN%kT t% m.S)m% + 1% mm$SqBmm$q m1$# m11+7y +P -%wO 2mm-. $k %= Ymm$5"m1B%t em-1/%e m1%< m1%ct im-1% m11gL`5 8# k9# '?# E# &F# G#( kH#0 'I#8 "J#@ NK#H ebL#P ibM#Q 5MO#R 7Q#S [gS#T U#U @\#V P]#W 1M`#X 7b#Y Wgd#Z f#[ @m#\ On#]$P}m1.,  tm8 m# $m# cm# )m# 'm# im# x m# Sm# m# \t#( 1#0// .@ $J(   $ȑ® $  $<"<B%_"_e $_$M_$r--1<_%&m%H%!R&0 0 m%>6 %[mb%x_fmm%snmb/%7mb/%H,j%EV-1-%)B4-0 1-%AZ].mAG%sa-0 <-%6 %6 %&Eym0 -b/%Xmbb/%I%(smb%J6mb%q%Em0 -b%Xmbb%mb%omb%n8-6 $ Lq0 0 b$'tmbb$C!mbb$_\u0 0 b${f-bb%8-0 -b<$B-b$e0 0 b-$hmbb-$j0 0 b-%CI*g-C-b$e-bb%(( b0 %7yb$0 0 b%,tbm% <08bm$+<-0 b-%C'*m%eI, mbb-%̮0 0 b-%40 0 b-%_R0 0 6 -%stmb/%8mb/$s0 b6 $50 bb$Qw10 b6 $m 0 bb%5+0 b6 -%=8<b%E8 bm%k  bm0[@1-3323A9213C9?2K3H9m3l3KSJ-33Nɉ1J33r3SS98 4r3]T983sv3a -J43gG935\3kI96676EE1a11#2y#34a2#34c7O4imP6P~g6J}.!m12188B2  292#VX:: D2t2:] D22:{ J2ؒ22: p/2 gR2: \2$!h2; +@2(U2: 9h2/y-281;"! 27I2881:J!2?ч-288:m!'f2G%21;!2P.18;!2Y718;! 2b8;!32uD4;"32y;?"32};;b"3211;"52888;"<5Ѫ2<Mt2=2+"222"522"5222"#522882J#522882m#52182#5212#528+#22m=#= 2222= $= 2G221=/$= 2"22=L$t/2A2=i$t/2%2>$end2!2>$end2"k2=$v 2+cu2=$v 24"2=$d2=.d2=%d2F 2=4%A2N-2=Q%/2TJB-2=n%sv2Y9-2?%5mZm28?%2tg28=%2|B-2?%5y28?&B2E2= &?2*G2=B&5p2*328=d&5p2׈-28>&at2Kg328>&at2%m-28=&02222=&02c221= '0222=.'65Ip222=Z'65Z22288='65.^/2218='623H221='65228?'<2VCM23 ( 5W222=5( 2tS22288=\( 52218=~( 2X221=( 2228?(3m228=(3m2b]2282=%)3m2f228288=Q)3m5l22818=x)3m2M2281=)3m22f2288=)3m2Ct2=)m2[2288=*m2k~2=;*m2jX2=g*"2!22882=*"22288288=*"5!228818=*"2122881=++"2 22888=W+"2M222=+"2qT2218=+"2+/221=+"2@228=,"2d022=G,"2o2211=x,"2y22=,"222:,*522888: -50228818@3-58=_-5S-288?}-5e22=-272O12=-D2<12=-'2=ZP2=."5)-2188='."2k-228=N."2(\-218=u."5S-28=."2F/1-228=."5-2188=."2bK-218=/"5(-28==/O2-228=i/O5!-2188=/O2 -218=/O2ua-28=/823-228= 085(^-2188=1082Z-218=X082v-28=0B2"[-228=0B5=p-2188=0B2r-218=0B5I{-28= 1i259H-228=L1i5T(-2188=s1i2R-218=1i5i#-28=1`2r&J288=1u2Y\m22=2u5}Ifm2882=E2u5ӡm288288=g2u5m21=2u5Zm2881Au5&m28818-2 6 6261&3 2 /2-# 2-# q2#14 22# pv5?+,2 5DGj7 M85P4BMt2w233;2`433<2443>22432\244R27283 4/2.U23F4$2n2=l4.5%28844 2a2?4\5234Bt2 2A5]:284-4&317-DC&-izC2-jC-kZC-lBC-mNC-n VCsL-o Dall-q?9-7#E-![7Et-$B7Ean-* #8ET-9 6+ME-c8yFid276P-|82P6P-882i6P-8126P-881m26P-888m26K-8m36= -Ư8881<37-ތ6$8327d-t$883S7m\-$88=o7t-58G-)8H7P-=87I-@Ie -C:7$-FmmJs-I888m588156858K86-9a--#E]-%K;y8= -S 88L8id-88M8id-8A{-1B-8*868*88Kn;5(-9q-#9-n;#9I--#9-n;#9- # E2-F;E-:{;E -g;E-|;E-o;EmL-;ED-};;9a-.7;9-yh7H:- 7;-H.:- 71-HI:- 7-He:-7mH:-7;;:= -7;::-d7;:on-!7;m;;d-$P7;;;); M-'L'7;8;M;-*X78t;Jܥ-2Y7t;-t;z;6;8N;;N;86;8;B8#;;b$;m;$ <*;$!<,;1$8<;1K<, E 8I@E V<8E +1A E "6 6 KY>6z9r6|#+<6Y>+<6Y>_>=< 6Q-j>==`6=j>=4=$_6mSu>Y>=V=$_6BS<Y>m=s=`6Zu>Y>==`6Y<Y>m==5p6-j>{>==06 u>Y>{>== 6&<j>{>=>`6mu>Y>{>=?>% 6G<j>{>A6pF_>j><6e>p><6<6> 61* T*#Fs*(M#{)X+t,m#->t0F18m2MъH|R??O'??-?> e>?j?dN>#[>#>?@">"6???!6? e? v?# ?!># W?"j?#(>/??(???@=>1"΍${>C>>D@Jw>E/@Iw >H@@xA >J \@>KA# z)>LA# >MA# ox>NA# ;d>OA# %>PA#( ^#>QA#0 G>RA#8 F>TA#@ >WB#H h>XA#P 0>Y!B#X <>Z6B#` ?>\LB#h -#>dB#p >e #x >f?# T>g # d>iB# >j?# v>lB#P}A@xAOA}AA(A>}AAPA@AOAAAOAA}AA(B>A}AB2?A(BB ?$@ B(6B?B'BOLBB?>>??BB?RBOB??B(B>??B#<"B#B(B>?#jH"BC"jH% DH&?# `H'C#BG-CG>CD`G' _G)?# G*D# 1G,D# ;#G-># u^G/D# oG1>#( G2>#, dG3>#0 igG5C#8 G7D#@ `G8D#H G:?#P G;?#XG DCDG?'refG@?# AGA?#'getGED#G NDD0GK TGME# DE>E(2E>D#E(QE>DD?8EObEDWE7>B@C+\>+cEE+p ++ryE#a+eEEa+u D+wE#EQ>;:EF;K *;LE# ;#;OE# Y;PsE#!FseFڧ8khD4rpk0cpG#Eh#UZ Ƨ4?1sYeF,RB,n29?j,r6#2FG,sY2GG,sYm20GG,sYyY=RG= ,mYsYyY?pG,sYY+GG, sYY+GG,sYyY--+GG,sY1-+GG,sY1+HG,#sY-hE+%HG,)sY-=GH= ,5YsYY=iH= ,65qYsY1=H= ,7)YsYhE=H= ,8)YsY=H ,:}YsYyY=H ,;mYsYyY--="I ,<qYsY1-=DI ,=BYsY1=kI ,>JYsY-hE=I ,?JYsY-=I0,FMYsYyY=I0,GVYsY1=I0,HYsYhE=J0,ITYsY?8J<,JEsYhE?VJ<,K(sY=xJ6,MYsYyY=J6,Np.YsYyY--=J6,O˯YsY1-=J6,Pn$YsY1=K6,QϑYsY-hE=;K6,RYsY-=bK3m,YYsY-yY=K3m,ZIYsY-yY--=K3m,[xyYsY-1-=K3m,\@pYsY-1=L3m,]=YsY--hE=>L3m,^=YsY--=eL3m,`h<kFsYkFhE=L3m,a<kFsYkF?L3m,b4sYkF-hE?L3m,c܅sYkF-=M",j|uYsY--yY=>M",kڐYsY--yY--=oM",l[qYsY--1-=M",m_YsY--1=M",nqYsY---hE=M",oqYsY---=)N",qYsYkFkFyY=ZN",rYsYkFkF1-=N",suYsYkFkF1=N",tjYsYkFkF-hE=N",u YsYkFkF-?OB,|+|sY=(Om,} YsY--=EOm,~&>YsY=gOm,V,kFsYkF=Om, =kFsYkFkF=Ou,mmYyY=Ou,emY1=Ou,ڎmY--yY=4Pu,mY--yY--=ePu,mY--1-=Pu,mY--1=P,B6Y=P,r6Y=P5p,MhEY->Qat,UhEY-=5Q`,ޮFY--=RQt/,1}kFsY>oQend, UkFsY=Qt/,^qFY>Qend,.qFY=Qv ,P sY=Qd,P sY=Rv ,AuV Y=Rd,'CV Y=DR",t-YyY-=pR",$-Y1--=R",_-Y1-=R",f-YhE-=R",!c-Y-= S",0O-YyY-=8S",t-Y1--=_S",-Y1-=S",-YhE-=S",-Y-=SO,b8-YyY-=TO,v-Y1--='TO,E-Y1-=NTO,O-YhE-=uTO,qM-Y-=T8,-YyY-=T8,B1-Y1--=T8,P-Y1-=U8,-YhE-==U8,-Y-=dUB,{q-YyY-=UB,T-Y1--=UB,$-Y1-=UB, -YhE-=VB,-Y-=,Vi,x-YyY-=XVi,\`-Y1--=Vi,u-Y1-=Vi,1-YhE-=Vi,z/-Y-=V?,aY=WA,d-Y=$W/,_-Y=AW,&-Y?dW,)sY-hE?W,)sY-=W,h!-Y=Wsv, C-Y?W,AsY-=Wڋ,66Y>Xraw,|vYY=6XD,w1Y=SX27,1Y=X,-Y--=X,%%0Y=X,(sYY=X,+wYY=XO,3!Y=YR`,65aFY(F=,Z+Y?>,ZZ3 Z ,phhEZ3)Z$_,rLYZ3JZ$_,sWKZZm3fZ`,tRYZ3Z`,uzRZZm+Z?>,Z<A, <ZY6ZYZ>!ZQ,#![ &T!4Uv!5[*h/?UN!6[dHI?UM!7[~?U!8[?U!9[333333?U0!:[Hգp= ?Ug!;[S?( #0"VAtk#.(A[[('x(>#'y(># (># (># }(\\F\| )+ ),>#'red)-># ^).># V)/>#+(bQ\*r\g:1 :2E#ɡ(hW\[F\r\9,\]89 P9 ]#9 \#[9 >#9 [#59\#(09>#0]9o #dw_Em  ի M d "$; K]{$t !}=$jMiMg v!ϵ"U#^Gdk$=FGC8̡g1:`]=(S=<[#B=.yE2\^=1:`2u^=3:`@`3^=6K`:`3^=9@`Q`2^=C:`mmmm3^=E\`:`b`3_=F\`:`b`3=_=GB\`:`b`>3Y_=IQ`3u_P=KmQ`4_=L:`3_V=M$mQ`4_=N6:`3_=OmQ`4`=P2:`3 `=QXmQ`5=R6:`^F`[[W`^6^6W`1c]'0S'M}\#B'6yE2`':c}\2`'<cc3`= '=dcc2a'?cm4#a'Aycd3?a'D}\c3[a'Gzdd3wa,'J}\d2a'Wc2a'_cyY4a'dc>4a'ec( 4b'lc>>>4,b'sc( ( ( 4Sb'u6c( ( ( 4zb'vc( ( ( -bset'cyY3b 'cyY3b<'>d3bZ'}>d3cR'>d4-cl'c>4Jc' c>4gc'c>4cP'scd3c'f>d3c'( d3cD'( dWq'3( dh`6ch`6h`d[c6dF6*dFAdGtk%|\1eF4S=e#2vd\e2d\em2d\ee2d\ee4dee3e= eee="ed ee=Dem\ee3`e`ee=}eu)eXB7e^Gd6eGd6GdeYtg&Ff &1'x&1( #'y&1( #'w&1( #'h&1( #:d#S&(h`#S\&)h`# S*&+#(S&,m#0S&-Qm#4S&.m#S&0Gd#S&1am#Zfqmmwmm2fqmmwm1[foeqmmwm\gsetuhqm1],g|Rqm^VgeqmAd_eqm1hF4S=h#2g\h2g\hm2g\hh2g\hd4 hhh3-h= <hhd=Ohd hd=qhm\hd3h`hh=hu&hXBh ^tg6tgd1$jF4S=$j#2i\*j2!i\*jm2:i\*j$j2Si\*j$d4pi׽*j0j3i= ߩ0j*j$d=id 6j$d=im\_6j$d3i`$j6j=juX6jXBJ*j^h6h*d1kF4S=k#2kj\k2j\km2j\kk2j\kk4j kk3j= ?kkk=kd ekk=9km\Pkk3Uk`kk=rkuk?kB[k7k$d^o5@n>q>7Mw2A2_waL & H>o5@n>q>'?7MwdwZ2A2_wZ[*h/?[dHI?-[~?B[?W[333333?l[Hգp= ?[S? Ƨ4? AwnbBE@WB'PB*$BWB'PB(BhB+rgWB` PBaԤBdmB2  2 pv5?+,2 5DGj7 M85P48B2 N2 pv5?n2 5DhC2-jC-kZC-lBC-mNC-n VCsL-o Ean-* #8yyE-c8yyE2-F;E-:{;E -g;E-|;E-o;EmL-;ED-}; C@mzdecC1znC;zhexC zC^zOC;z octCɏz@GC3fzC yzqC >z>C$ZzjC' zIC*E zxC-z csC12z@^C47zx C7e=zJmC:z "CL\Z{COd{=CT{YnCW|{n inCvEM|outCyCKM| curCT!y|D3YTD4U D54*D6 *D7hP D8* :mD9>E@4D:E# CdQD;tCD<$]pD= 8tEx18E18I@E V<8E +18E8EA8ES8EZ8Ey38Ey8Ey }8Ey^RB,n2CDEGFYT~ޚ7q/A0AvdZ+;8`z5Cez7s,mint̰ltt`z/tK!t>ed .ad  m#ך #= #v # # = #(;@ #0" #8 #@u] #HGU #P$ #X #` #he "m#pb &m#tts ({#x5 ,F# -T#" .#) 2#xs ;# D# E# F# G# H-# Jm#{ L#N > cM ._1M ._2P Q aR 0Nm# *jS# 1._3 `{# n#71D kM# M# !# #- K _ # /p # a m# XFm4t| std67-X Z ] _ b  i/  jX  n  o  p6  qN  rf  t  v  w  y  |  }  ~D  f        / G t ˁ  ͤ Μ и ѷ   c  A ؀ d e g h i j k1 lH m` n o s t v  w+ xS zk { | }     # 7 P w       < c:;<C D EGHIJK%LGMjNOH!>[x)Ls(Jq 'C_{Ie¥ +Ceɇʩ5Qm   E$(F bPWU5P#5#WU5$oeP| 8G7HkL Gn>gI u`s^u ms VGkmsԙI0]o b GVn"=i G1 fQS;T;\;e;h <i!<^ jI | I #Ɵ, An! ."/ #4+$ &km11$ -o-1-$  Ȱ1% mm$( 6+C( m-. &X  c f dm#'rem em#  k f lt#'rem mt#  w f x #'rem y #ǰ /=M!M[z'3m {   ( m( ( % ܃ xm  )%6 a 1%N  a m1%f a t1% ' ( ( -- * div !/ mm+ h [% 0 1% Y/ #X tt% 4 jm1-%7  v-7 1-= }%f  nm7 1-+ f -- , t m% S Y-+ t M% \X H1 %  Mt1 m%/ƍ S81 m%G( m1%im z-i-o= %2h qm= !Ԯ -abs f  -div !    $%X/ *   %!  1%A } 1 m%c  1 m%cX ] 1 % c1 + m%5   += $b m%G m%1) m$H7 m%` m%} m}% m$ɵ 11%i a---$  11%+( mtm%H mHN%kT t% m.S)m% + 1% mm$SqBmm$q m1$# m11+7y +P -%wO 2mm-. $k %= Ymm$5"m1B%t em-1/%e m1%< m1%ct im-1% m11gL`5 8# k9# '?# E# &F# G#( kH#0 'I#8 "J#@ NK#H ebL#P ibM#Q 5MO#R 7Q#S [gS#T U#U @\#V P]#W 1M`#X 7b#Y Wgd#Z f#[ @m#\ On#]$P}m1.,  tm8 m# $m# cm# )m# 'm# im# x m# Sm# m# \t#( 1#02/ .@ $J  $ȑ¼ $  $<"<B%_"_e $_$M_$r--1<_%&m%H%!R&7 7 m%>= %[mi%x_fmm%snmi/%7mi/%H,j%EV-1-%)B4-7 1-%AZ].mAG%sa-7 <-%= %= %&Eym7 -i/%Xmii/%I%(smi%J6mi%q%Em7 -i%Xmii%mi%omi%n8-= $ Lq7 7 i$'tmii$C!mii$_\u7 7 i${f-ii%8-7 -i<$B-i$e7 7 i-$hmii-$j7 7 i-%CI*g-C-i$e-ii%(i7 %7 i$7 7 i%,tim% <08im$+<-7 i-%C'*m%eI, mii-%̮7 7 i-%47 7 i-%_R7 7 = -%stmi/%8mi/$s7 i= $57 ii$Qw17 i= $m 7 ii%5+7 i= -%=8<i%E8 im%k  im0i@1-6326A9216C9?2K6H9m3l6KSJ-36Nɉ1J33r6SS98( 4r6]T983sv6a -J46gG935\6kI96676EE1o41#2y#37a2#37c7O7imP6P~u6J}1!m12488B5  295#VX:: D5t2:] D52:{ J5ؒ22: p/5 gR2: \5$!h2; +@5(U2: 9h5/y-281;"! 57I2881:J!5?ч-288:m!'f5G%21;!5P.18;!5Y718;! 5b8;!35uD4;"35y;?"35};;b"3511;"82888;"<8Ѫ2<Mt5=2+"522"822"8222"#822882J#822882m#82182#8212#828+#52m=#= 5222= $= 5G221=/$= 5"22=L$t/5A2=i$t/5%2>$end5!2>$end5"k2=$v 5+cu2=$v 54"2=$d5=.d2=%d5F 2=4%A5N-2=Q%/5TJB-2=n%sv5Y9-2?%8mZm28?%5tg28=%5|B-2?%8y28?&B5E2= &?5*G2=B&5p5*328=d&5p5׈-28>&at5Kg328>&at5%m-28=&05222=&05c221= '0522=.'68Ip222=Z'68Z22288='68.^/2218='653H221='68228?'<5VCM23 ( 8W222=5( 5tS22288=\( 82218=~( 5X221=( 5228?(3m528=(3m5b]2282=%)3m5f228288=Q)3m8l22818=x)3m5M2281=)3m52f2288=)3m5Ct2=)m5[2288=*m5k~2=;*m5jX2=g*"5!22882=*"52288288=*"8!228818=*"5122881=++"5 22888=W+"5M222=+"5qT2218=+"5+/221=+"5@228=,"5d022=G,"5o2211=x,"5y22=,"522:,*822888: -80228818@3-88=_-8S-288?}-8e22=-275O12=-D5<12=-'5=ZP2=."8)-2188='."5k-228=N."5(\-218=u."8S-28=."5F/1-228=."8-2188=."5bK-218=/"8(-28==/O5-228=i/O8!-2188=/O5 -218=/O5ua-28=/853-228= 088(^-2188=1085Z-218=X085v-28=0B5"[-228=0B8=p-2188=0B5r-218=0B8I{-28= 1i559H-228=L1i8T(-2188=s1i5R-218=1i8i#-28=1`5r&J288=1u5Y\m22=2u8}Ifm2882=E2u8ӡm288288=g2u8m21=2u8Zm2881Au8&m28818-2 6 6261&3 5 /5-# 5-# q5#14 52# pv8?+,2 8DGj7 M88P4BMt5w233;5`433<5443>52435\244R57283 4/5.U23F4$5n2=l4.8%28844 5a2?4\8234Bt5 2A8]:284-4&3170DC&0izC20jC0kZC0lBC0mNC0n VCsL0o Dall0q?907#E0![7Et0$B7Ean0* #8ET09 6+ME0c8VFid276P0|82P6P0882i6P08126P0881m26P0888m26K08m36= 0Ư8884<370ތ6$8327d0t$883S7m\0$88=o7t058G0)8H7P0=87I0@Ie 0C:7$0FmmJs0I888m588156858K8609a0-#E]0%K;y8= 0S 88L8id088M8id08A{01B-8*868*88Kn;5(09q0#90n;#9I0-#90n;#90 # E20F;E0:{;E 0g;E0|;E0o;EmL0;ED0};;9a0.7;90yh7H:0 7;-H.:0 71-HI:0 7-He:07mH:07;;:= 07;::0d7;:on0!7;m;;d0$P7;;;); M0'L'7;8;M;0*X78t;Jܥ02Y7t;-t;z;6;8N;;N;86;8;B8#;;b$;m;$ <*;$!<,;1$8<;1K<: I 8I@I V<8I +1A I "D D KY>9z9r9|#+<9Y>+<9Y>_>=< 9Q-j>==`9=j>=4=$_9mSu>Y>=V=$_9BS<Y>m=s=`9Zu>Y>==`9Y<Y>m==5p9-j>{>==09 u>Y>{>== 9&<j>{>=>`9mu>Y>{>=?>% 9G<j>{>A9pF_>j><6e>p><6<6>61- T-#Fs-(M#{)X+t,m#->t0F18m2M,5ъH|R!?'?O2? ?8?> eI?u?dN>#[>#> ?D">"6C??!6C eC ?# C!># WC"u?#(B/??(? ? ?@ B1"΍${BC>BD)@JwBE:@Iw BHK@A BJ \@BKA# z)BLA# BMA# oxBNA# ;dBOA# %BPA#( ^#BQA#0 GBRA#8 FBTA#@ BWB#H hBXA#P 0BY,B#X <BZAB#` ?B\WB#h -#BdB#p Be #x Bf!?# TBg # dBiB# Bj!?# vBlB#PA@AOAAA(A>AAPA@AOAAAOAAAA( B>AA B=?A(&B&B?/@B(AB ?&B2BOWB&B ?GBOB? ?>>>? ?BB?]BOB ??B(B> ? ?B#?"B#B(B> ?#jL"B'C"jL% DL& ?# `L''C#BK8CKIC D`K' _K) ?# K*D# 1K,D# ;#K-># u^K/D# oK1>#( K2>#, dK3>#0 igK5'C#8 K7D#@ `K8D#H K: ?#P K; ?#XKDNDK?'refK@!?# AKA!?#'getKED#K YDD0KK TKM(E# COD ?DD{?DDKH ("E>D"E>E(=E>D.E(\E>DD ?CEOmEDbE:>B@C.\>.cEE.p +.rE#a.eEEa.u D.wE#EQ>>:E(F>K *>LE# ;#>OE# Y>P~E#!FspFڧ;khD4rpk0cpG#Eh#UZh Ƨ4 ?1YpF/RB/n29?j/r6#2GG/Y2.GG/Ym2GGG/YY=iG= /mYYY?G/YY+GG/ YY+GG/YY--+GG/Y1-+GG/Y1+HG/#Y-sE+JYY-sE=I /?JYY-=I0/FMYYY=I0/GVYY1=J0/HYYsE=1J0/ITYY?OJ</JEYsE?mJ</K(Y=J6/MYYY=J6/Np.YYY--=J6/O˯YY1-=K6/Pn$YY1=+K6/QϑYY-sE=RK6/RYY-=yK3m/YYY-Y=K3m/ZIYY-Y--=K3m/[xyYY-1-=K3m/\@pYY-1=)L3m/]=YY--sE=UL3m/^=YY--=|L3m/`h<vFYvFsE=L3m/a<vFYvF?L3m/b4YvF-sE?L3m/c܅YvF-=M"/j|uYY--Y=UM"/kڐYY--Y--=M"/l[qYY--1-=M"/m_YY--1=M"/nqYY---sE=N"/oqYY---=@N"/qYYvFvFY=qN"/rYYvFvF1-=N"/suYYvFvF1=N"/tjYYvFvF-sE=N"/u YYvFvF-?OB/|+|Y=?Om/} YY--=\Om/~&>YY=~Om/V,vFYvF=Om/ =vFYvFvF=Ou/mmYY=Ou/emY1=Pu/ڎmY--Y=KPu/mY--Y--=|Pu/mY--1-=Pu/mY--1=P/B6Y=P/r6Y=Q5p/MsEY->%Qat/UsEY-=LQ`/ޮFY--=iQt//1}vFY>Qend/ UvFY=Qt//^|FY>Qend/.|FY=Qv /^ Y=Qd/^ Y=Rv /Aud Y=4Rd/'Cd Y=[R"/t-YY-=R"/$-Y1--=R"/_-Y1-=R"/f-YsE-=R"/!c-Y-=#S"/0O-YY-=OS"/t-Y1--=vS"/-Y1-=S"/-YsE-=S"/-Y-=SO/b8-YY-=TO/v-Y1--=>TO/E-Y1-=eTO/O-YsE-=TO/qM-Y-=T8/-YY-=T8/B1-Y1--=U8/P-Y1-=-U8/-YsE-=TU8/-Y-={UB/{q-YY-=UB/T-Y1--=UB/$-Y1-=UB/ -YsE-=VB/-Y-=CVi/x-YY-=oVi/\`-Y1--=Vi/u-Y1-=Vi/1-YsE-=Vi/z/-Y-=W?/aY=WA/d-Y=;W//_-Y=XW/&-Y?{W/)Y-sE?W/)Y-=W/h!-Y=Wsv/ C-Y?W/AY-=Xڋ/66Y>0Xraw/|vYY=MXD/w1Y=jX27/1Y=X/-Y--=X/%%0Y=X/(YY=X/+wYY=YO/3!Y=6YR`/65aFY3F=SYcs/C FY=pYհ/J/FYAA/QFYF6YF6F6Y6Y6vF6|F1ZvF/eSQn/{<#+Y?>/Z+Z?>/ZZ3$Z /phsEZ3@Z$_/rLYZ3aZ$_/sWKZZm3}Z`/tRYZ3Z`/uzRZZm+Z?>/Z<A/ <ZY6ZYZ>![Q,# (& [M[(T'x(Um#'y(Vm# (Wm# (Xm# !\!&XT"4Uv"5H^*h/?UN"6H^dHI?UM"7H^~?U"8H^?U"9H^333333?U0":H^Hգp= ?Ug";H^S?1 ^X[)S[#25\4 ^2]\5 ^mmmm2v\6 ^&^4\; ^m4\@ ^m4\EH ^m4\J ^m3]POm1^3"]VTm1^3>]Ym1^3Z]^m1^3v]e m1^3]l4m1^3]svm1^3]z;m1^3]}`1^<^3^tB^ ^V&^1^\,^[7^\67^[#0#WAtk$.+Af^^+'x+>#'y+># +># +># }+\^^| ,+ ,,>#'red,-># ^,.># V,/>#++b_*#_g=1 =2E#ɡ+h__+tG w[6x X Z~^^#_@)_`@R X@S># @T._#(@*`I`'@X'use@Y#a#'min@Z?#'max@[?#@+T``H@_ @`E# @cu?# @d`# @ea#$ =@f>#( @h>#, @i`a#0 @k>#8 @lfa#@a@6#a@>.`a@E{`_<,waa8< P< b#< _#[< >#< [^#5<_#(0<>#0s<0abrP<1P<2b#<3_#[<4>#<5>#Xx<6?#Xy<7?# <8c#(n<9>#0N<:>#4<;c#8<<?#@<<?#Hc3eAIf3ePAKmf4 fALf3'fVAM$mf4DfAN6f3`fAOmf4}fAP2f3fAQXmf5AR6fdf[^[^fd6d6f1jjc*0S*M_#B*6E2+g*:jj_2Dg*<jjpj3eg= *={jjjpj2g*?jjm4g*Ayjj{j3g*D_jj3g*Gzjj3g,*J_j2h*Wjj2h*_jjY4:h*djj>4Wh*ejj4~h*ljj>>>4h*sjj4h*u6jj4h*vjj-iset*jjY35i *jjY3Qi<*>j3miZ*}>j3iR*>j4il*jj>4i* jj>4i*jj>4iP*sjjj3j*f>j35j*j3QjD*jVq*3jf6vjf6fj^vj6jF6jFjGtk'|alaZmp)Fj#S):#[x0);m#[y0);m# [h);m#$S)#@SZ)?w#HSY)@w#S)Af#Sp)Bf#SB)Cf#S>)Df#S)Ef#S~)Ff#Sl)Gf#SH)Hm#\lxm xx27l/xm x]\lLjxm x3}lbOmx3lVmxm4lUwx4lxm?l]x?mcx?(m_rx^SmC^jxj^~mMLjxj_mA\x`x1nF4S=n#2m\n2m\nm2n\nn2(n\no4Enno3fn= ono=nd oo=nm\oo3n`no=nu)oaB7nedm6 om6m o1hpF4S=hp#2Ko\np2eo\npm2~o\nphp2o\npj4onptp3o= <tpnpj=od zpj=pm\zpj35p`hpzp=Rpu&zpaBnpjdo6oj1qF4S=q#2p\q2p\qm2p\qq2p\qj4q׽qq39q= ߩqqj=[qd qj=}qm\_qj3q`qq=quXqaBJqpdp6pj1IsF4S=Is#2r\Os2-r\Osm2Fr\OsIs2_r\OsUs4|r Os`s3r= ?`sOsUs=rd efsUs=rm\PfsUs3r`Isfs=sufs?3sB[Os7Osjvdq6[sq6q[s1tF4S=t#2s\t2s\tm2s\tt2s\tt4tMtt3%t= ߸ttt=Gtd |tt=itm\tt3t`dtt=tuft?tBt7totedls6tls6lst1EvF4S=Ev#2(u\Kv2Bu\Kvm2[u\KvEv2tu\KvQv4uCKv\v3u= ߉\vKvQv=ud 1bvQv=um\bvQv3v`Evbv=/vubvaBKv^[t6Wvt6tWv1wF4S=w#2v\w2v\wm2v\ww2v\ww4w,ww3!w= www=Cwd ww=ewm\/ww3w`Mww=wu0w?wBw7hwQvw^[hv6whv6hvwx jxx&6xjb8x^c)68x1^bRx}qc)6Rxqblxnc)6lxobxuc)6xbvbx(nc)6xd׻xe1xnonbxnc)6lxbx>]c)68xbyZ]c)68xfby"]c)68xgUy}l0AwAwh)6Uy$xiposVmZxxgy\lAA}xh)6Uyxj\Oxbymc)6xcrby7lc)6Uycrcy xkzyAoA6ylyymy,LnykRzypAAylyRzmy,LnykzyA?AzlyzlyD{my-Lnybzpc)6zcrqg-{m@A$ A{h)6Uy{o{P-pvdqzAAzqz A$ Azr{l0 A Awh)6Uy7|j!wZ|eUysldfysizmezmg|l Ag A|h)6Uy}o{-phd@qz) A? AnqzF Ag AnrA|lp Ay Awh)6Uy`}tn]}g|Sm A A}h)6Uy~up0Mj<~vxOmdvyOm`r|l AH Awh)6Uyr~j-m~b|mc)6xb|pc)6|zpb}Koc)6}crnpbD}|dwlhs&^cwrhs&^cbm}lc)6Uycrcm} xk|~D}P A_A*lN}x}|= AH A/l|$y| A A;y|0 AE Ay|eAzA?y|AA@y|A3A@zy3APAInykD}`AA^lN}lb}Xx~|5A@A/l|ǁy|AA;y|A3Ay|PAeA?y|AA@y|AA@zyA;AInyb3sc)6wsrc˴OsjbEnc)6xwsrce1m{|xobnc)6xwsrcob4rc)6crbTtc)6TwsrcYtob}sc)6Tcrgz~m AAh)6Uy}x^mZ}y^m}x1^m}x2^mt~win`p~x`AzAcnnxAAcnn|x^AAnxxAAnxxyyAAyyAAcx؁AAcn4-fnHn>mWx-naxx%^kAAfnhQ4.pnHn>mWx@.naxxr^?AYApnh4p.snHn>mWx.naxx^AAsnhyzAAtyyAAcxA'Acn$^.snhyz7ATAtx\^TArAfnhz^AApnhbwc)6wsrc˟wQvbÃvc)6crb(uc)6crKvgmA/A,h)6Uy݅}im}km8}xm}ymȈ}x2m~str~eёёx}zm}nmtzty~winpyo/pyx A*AnnxGAAnn|xQGA\Anx{x\AoAnxxyyoAAyyAAx˅AAnyzAA4@/nHn>mWx/naxx0^AAnh\4/nHn>mWx0naxx}^6ASAnho00;\y†40nHn>mWx0naxx^AAnhx zAAnn540nHn>mWx01naxKx`1nxxl^WAtAnhxtAAnxzAAnn߇41nHn>mWx1naxx^ A< Anhx!< AY AnM42nHn>mWx02naxxn^ A!Anhxz!A"Ann4`2nHn>mWx2naxֈx2nxx^"A"Anhx"A"An@z"A#Annm43nHn>mWx@3nax^o#A#Anh#A#An݉4p3 nHn>mWx3nax^($AE$A nh-43 nHn>mWx 4naxP^$A$A nhoP4p;\y44nHn>mWx5nax^G%Ad%Anh4@5nHn>mWxp5nax ^%A%Anh1zf&A&Annv4&A&AnHn>zWx&A&Anax^&A'Anh'A'Anz0'AR'A$nn)4R'Aw'A$nHn>zWxR'AZ'AnaxL^'A'A$nho'A'A$nz(A(A1nnČ451nHn>mWx5naxیx61nx^E)Ab)A1nh!b)A)A1nIz)A)A8nnv4P68nHn>mWx6nax^ *A**A8nh**AG*A8nqzg*A*A<qÃ*A*A<qÃ*A*A<qz*A+A<qÃ+A-+A<qÃ-+AR+A<xj^R+Ab+Anh68nx^w+A+AnhxÎ+A+Anyz+A+A^+A,A8nh ^9,AY,A1nhCY,At,A1nxd^t,A,Anhx,A,Anx^,A,AnhxǏ,A,Anx^,A,Anh -A*-An.^*-AC-AnhQ^C-A\-Anht^\-Au-A nh^u-A-A nh^-A-Anhݐ-A-An^.A2.A$nh#2.AM.A$nF^M.Av.Anhxg^v.A.Anhx.A.Anx^.A.Anhyy.A/Aёcg(m /Aq/AWh)6Uyt[CjŌ::aL & HBo@@nBq>:$2E27϶)) "l#l $l%l'<0)̓aL & HBo@@nBq>2?:$<Z2E27϶))|1  `a a  a aϒ aܓ1ݒ ad[r[*h/?[dHI?[~?[?[333333?[Hգp= ?[S? Ƨ4 ? AnnbFE@WF'PF*$FWF'PF(BhF+rgWF` PFaԤFdmB5  2 pv8?+,2 8DGj7 M88P48B5 N2 pv8?n2 8DoC20jC0kZC0lBC0mNC0n VCsL0o Ean0* #8VFE0c8nFE20F;E0:{;E 0g;E0|;E0o;EmL0;ED0}; G@mdecG1nG;hexG G^OG; octGɏ@GG3fG yqG >>G$ZjG' IG*E xG- csG12@^G47x G7e=JmG: "GL\ZmGOdm=GTmYnGW|m| inGvE˜outGyCK˜ curGT!H3YTH4U H54*H6 *H7hP H8* :mH9>E@4H:E# CdQH;tCH<$]pH= 8tIx18I18I@I V<8I +18I8IA8IS8IZ8Iy38Iy8Iy }8Iy^RB/n2NDEGJYɚA#F]A/AvdZ+;8`z5Cez7s,mint̰ltt`z/tK!t>ed .ad  m#ך#=#v## =#(;@#0"#8#@u]#HGU#P$#X#` #he"m#pb&m#tts({#x5,F#-T#".#)2#xs;#D#E#F#G#H-#Jm#{L#N > cM ._1M ._2P Q aR 0Nm# *jS# 1._3 `{# n#7??HBD kM# M# !# #-K _# /p# am# XFm4t std6+7-X Z ] _ b  i@  ji  n  o/  pG  q_  rw  t  v  w  y  |  }&  ~U  w        @ X  ˒  ͵ έ     t 0 R ؑ d e g h i j* kB lY mq n o s t v w< xd z| { | }     4 H a       0 M t:;<C D E"GHIJK6LXM{NOH2Ol:]9[8Tp -Zv¶<Tvɘʺ*Fb~   E$(F bPWU6a#6#WU6$oeP 8G7HkL Gn>gI u`s^u ms VGkmsԙI0]o b GVn"=i G1 fQS;T;\;e;h<i2<o jI | I #Ɵ, A! ."/ #4+$ & kmBB$ - o-B-$  ȰB% m m$9 6+ C9 m-? &i  c f dm#'rem em#  k f lt#'rem mt#  w f x #'rem y #ǰ /=M!M[z'4m {   ( m9 9 %( ܃ xm( . )%G a $B%_  a mB%w a tB% ' 9 9 -- * div !@ mm+ h [% 0 B% Y/ #i tt%& 4 jmB-%H  v-H B-N }%w  nmH B-+ f -- , t m% S Y-+ t M% \X H$B % MtB m%@ƍ S8B m%X( mB%zm z-z-N %2h qmN !Ԯ -abs f  -div !    $%X/ *   %0!  B%R } B m%t  B m%cX ]B % cB + m%5   += $b m%*G m%B) m$Y7 m%q m% m% m$ɵ BB%i a---$ BB%<( mtm%Y mY_%|T t% m.S)m% + B% mm$SqBmm$q mB$4 mBB+Hy +a -%O 2mm-. $k %= Ymm$5"mBS%t em-B/%0e mB%M mB%tt im-B% mBBgL`5 8# k9# '?# E# &F# G#( kH#0 'I#8 "J#@ NK#H ebL#P ibM#Q 5MO#R 7Q#S [gS#T U#U @\#V P]#W 1M`#X 7b#Y Wgd#Z f#[ @m#\ On#]$P}mB., tm8 m# $m# cm# )m# 'm# im# x m# Sm# m# \t#( B#03/ .@ $J$  $ȑ "$0 0 $M"MS"%p"pv $p$Mp$r--BM_%&m% H %2R&H H m %ON  %lmz %_fm m%snm z/%7m z/%H ,j% EV-B- %:B4-H B- %RZ].mRX%a-H M- %N  %N %&EymH -z/%Xmzz/%I %9sm z%[6m z%%EmH -z%Xmzz%mz%omz%n8-N  $LqH H z$8tmzz$T!mzz$p\uH H z$f-zz%8-H -zM$B-z$eH H z-$ hmzz-$-jH H z-%TI*g-T- z$v-zz%($zH %7z$H H z%,tzm%<08zm$<<-H z-%T'*m%vI, mzz-%̮H H z-%4H H z-%_RH H N -%stmz/%8mz/$*sH zN $FH zz$bw1H zN $~ H zz%5+H zN -%=8<z%E8 zm%k  zm0z@1>732)7AJ2B7CJP2\7HJm3}7KS[>37NɉB[D3r7SSJ89 4r7]TJ83sv7a -[4$7gGJD5\7kIJ66H 6V V151 #2#38a2#38c7O8ima6a~6J}2!m12588B6  296#VX:K D6t2:n D62: J6ؒ22: p/6 gR2: \6$!h2; +@6(U2: !9h6/y-28B;3! 67I288B:[!6?ч-288:~!'f6G%2B;!6P.B8;!6Y7B8;! 6b8; "36uD4;-"36y;P"36};;s"36BB;"92888;"<9Ѫ2<Mt6=2+"622"922#92223#922882[#922882~#92B82#92B2#928+#62m=#= 6222=$= 6G22B=@$= 6"22=]$t/6A2=z$t/6%2>$end6!2>$end6"k2=$v 6+cu2=$v 64"2= %d6=.d2=(%d6F 2=E%A6N-2=b%/6TJB-2=%sv6Y9-2?%9mZm28?%6tg28=%6|B-2?%9y28?&B6E2=1&?6*G2=S&5p6*D28=u&5p6׈>28>&at6KgD28>&at6%m>28=&06222=&06c22B='0622=?'69Ip222=k'69Z22288='69.^/22B8='663H22B='69228?'<6VCM23( 9W222=F( 6tS22288=m( 922B8=( 6X22B=( 6228?(3m628=)3m6b]2282=6)3m6f228288=b)3m9l228B8=)3m6M228B=)3m62f2288=)3m6Ct2=*m6[2288=%*m6k~2=L*m6jX2=x*"6!22882=*"62288288=*"9!2288B8= +"612288B=<+"6 22888=h+"6M222=+"6qT22B8=+"6+/22B=+"6@228=',"6d022=X,"6o22BB=,"6y22=,"622:,*922888:-902288B8@D-98=p-9S-288?-9e22=-276OB2=-D6<B2=-'6=Za2=."9)-2B88=8."6k-228=_."6(\-2B8=."9S-28=."6F/1-228=."9-2B88=/"6bK-2B8='/"9(-28=N/O6-228=z/O9!-2B88=/O6 -2B8=/O6ua-28=/863-228=089(^-2B88=B086Z-2B8=i086v-28=0B6"[-228=0B9=p-2B88=0B6r-2B8= 1B9I{-28=11i659H-228=]1i9T(-2B88=1i6R-2B8=1i9i#-28=1`6r&J288=1u6Y\m22= 2u9}Ifm2882=V2u9ӡm288288=x2u9m2B=2u9Zm288BAu9&m288B8-2' 6' 626173! 6 /6-# 6-# q6#14' 63# pv9?+,2 9DGjH M89P4BMt6w233;6`533<6543>62436\244R6728314/6.U23W4$6n2=}4.9%28844 6a2?4\9234Bt6 2A9]:285-573181DC&1izC21jC1kZC1lBC1mNC1n VCsL1o Dall1q?918#E1![8Et1$B8Ean1* #8ET19 /6+ME1c8Fid2H6P1|$82a6P1$8*82z6P1$8B26P1$8*8Bm26P1$8*8*8m26K1$8m36= 1Ư*8$8*85<3"71ތ6583C7d1t58*83d7m\158*8=7t15*8G1)*8H7P1=$88I1@Ie 1C:7$1FmmJs1I$8*8*8m588B5608508K8/619a1-#E]1%K;8= 1S 88L8id188M8id18A{11B-8;868;88K;5(19q1#91;#9I1-#91;#91 # E21F;E1:{;E 1g;E1|;E1o;EmL1;ED1};;9a1.8;91yh8H:1 8;-H?:1 8B-HZ:1 8-Hv:18mH:18;;:= 18;::1d8;:on1!8;m;;d1$P8;;;:; M1'L'8;8;^;1*X88;Jܥ12Y8;-;;6;8N;;N;86;8;B8#;;b$;m;$<*;$2<,;B$I<;BK<K I 8I@I V<8I +BA I "U U Kj>:z9r:|#+<:j>+<:j>p>= = :Q>{>=(=`:={>=E=$_:mS>j>=g=$_:BS<j>m==`:Z>j>==`:Y<j>m==5p:>{>>==0: >j>>= > :&<{>>=.>`:m>j>>=P>% :G<{>>A:pFp>{><6v>><6<6>+61+ T+!?+#Fs+(M#{)X+t,m#->t0F18m2MъH|R2?8?OC??I?> eZ??dN>#[>#*#??*- D*.?#'len*/?#>>?D">"6C?@!6C eC ?# C!># WC"?#(B/$@*@(9@??^@ B1"΍${BC>BDt@JwBE@Iw BH@A BJ \@BKA# z)BLA# BMA# oxBNA# ;dBOA# %BPB#( ^#BQ!B#0 GBR!B#8 FBT7B#@ BW\B#H hBX!B#P 0BYwB#X <BZB#` ?B\B#h -#BdB#p Be( #x Bf2?# TBg( # dBiB# Bj2?# vBlC#PA^@AOAAA(A>AAP Bi@BO!B BBO7B BA'B(VB> BAVBN?=B(qBqB'?z@bB(B?qB}BOBqB?BOB@??>>9@?BB?BOB?9@B(C>??B#@"#C#/C(>C>?#jL"ICrC"jL% DL&?# `L'rC#>CKCKCWD`K' _K)?# K*E# 1K,E# ;#K-?# u^K/E# oK1>#( K2?#, dK3?#0 igK5rC#8 K7"E#@ `K8"E#H K:?#P K;?#XKbDDK?'refK@2?# AKA2?#'getKEHE#K DE0KK TKMsE# "EmE>YE(E>"EyE(E>"EE?EOE"EE;>C@C/\?/cEF/p +/rE#a/e F&Fa/u D/w&F#EQ??:JYY-E=I 0?JYY-=J00FMYYY=8J00GVYYB=ZJ00HYYE=|J00ITYY?J<0JEYE?J<0K(Y=J60MYYY=K60Np.YYY--=-K60O˯YYB-=OK60Pn$YYB=vK60QϑYY-E=K60RYY-=K3m0YYY-Y=K3m0ZIYY-Y--=!L3m0[xyYY-B-=HL3m0\@pYY-B=tL3m0]=YY--E=L3m0^=YY--=L3m0`h<FYFE=L3m0a<FYF?M3m0b4YF-E?>M3m0c܅YF-=jM"0j|uYY--Y=M"0kڐYY--Y--=M"0l[qYY--B-=M"0m_YY--B=.N"0nqYY---E=_N"0oqYY---=N"0qYYFFY=N"0rYYFFB-=N"0suYYFFB=O"0tjYYFF-E=JO"0u YYFF-?cOB0|+|Y=Om0} YY--=Om0~&>YY=Om0V,FYF=Om0 =FYFF=Pu0mmYY=4Pu0emYB=`Pu0ڎmY--Y=Pu0mY--Y--=Pu0mY--B-=Pu0mY--B=Q0B6Y=-Q0r6Y=OQ5p0MEY->pQat0UEY-=Q`0ޮGY--=Qt/01}FY>Qend0 UFY=Qt/0^FY> Rend0.FY=(Rv 0o Y=ERd0o Y=bRv 0Auu Y=Rd0'Cu Y=R"0t-YY-=R"0$-YB--=R"0_-YB-= S"0f-YE-=GS"0!c-Y-=nS"00O-YY-=S"0t-YB--=S"0-YB-=S"0-YE-=T"0-Y-=6TO0b8-YY-=bTO0v-YB--=TO0E-YB-=TO0O-YE-=TO0qM-Y-=T80-YY-=*U80B1-YB--=QU80P-YB-=xU80-YE-=U80-Y-=UB0{q-YY-=UB0T-YB--=VB0$-YB-=@VB0 -YE-=gVB0-Y-=Vi0x-YY-=Vi0\`-YB--=Vi0u-YB-=Wi01-YE-=/Wi0z/-Y-=LW?0aY=iWA0d-Y=W/0_-Y=W0&-Y?W0)Y-E?W0)Y-=X0h!-Y=#Xsv0 C-Y?AX0AY-=^Xڋ066Y>{Xraw0|vYY=XD0wBY=X270BY=X0-Y--=X0%%0Y= Y0(YY=BY0+wYZ=_YO03!Y=YR`065aGY~F=Ycs0C GY=Yհ0J/GYAA0QGYG6YG6G6Y6Y6F6F1[F0eSQn0{<#+9Z?>0[+SZ?>0[#[3oZ 0phE.[3Z$_0rLY[3Z$_0sWK)[[m3Z`0tRY[3Z`0uzR)[[m+[?>0[<A0 <.[ Z6)[ Z)[>!L[Q, #!(&W[[(T'x(Um#'y(Vm# (Wm# (Xm# !Q\"&XT#4Uv#5^*h/?UN#6^dHI?UM#7^~?U#8^?U#9^333333?U0#:^Hգp= ?Ug#;^S?1k^[)SL[#2\4k^2\5k^mmmm2\6k^q^4\;k^m4\@k^m4]EHk^m45]Jk^m3Q]POm|^3m]VTm|^3]Ym|^3]^m|^3]e m|^3]l4m|^3]svm|^3^z;m|^36^}`|^^3R^t^k^Vq^|^Q\w^L[^Q\6^L[$#0$WAtk%.-A^^-'x->#'y-># -># -># }-\^B_| .+ .,>#'red.-># ^..># V./>#+-bM_*n_g>1 >21F#ɡ-hS_^B_n_=,__8= P= _#= _#[= >#= ^#5=_#(0=>#0`=o #dw_Em  ի M d "$; K]{$t !}=$jMiMg v!ϵ"U#aGdk&=FGC8̡g16c`A(SA<^#BA.E2XaA16c2qaA36c3UbAIMc3qbPAKmMc4bAL6c3bVAM$mMc4bAN66c3bAOmMc4cAP26c3cAQXmMc5AR66caBc^^Sca6a6Sc1f`,0S,My_#B,6E2c,:fy_2c,<ff3c= ,=fff2d,?fm4d,Ayff3;d,Dy_f3Wd,Gzgg3sd,,Jy_g2d,Wf2d,_fY4d,df>4d,ef$4e,lf>>>4(e,sf$$$4Oe,u6f$$$4ve,vf$$$-eset,fY3e ,fY3e<,>g3eZ,}>g3 fR,>g4)fl,f>4Ff, f>4cf,f>4fP,sfg3f,f?g3f,$g3fD,$gVq,3$gdc6fdc6dc g^f6gF6&gF=gGtk'|_XkF)Fkg)2YU86g#S)4u#S=)5u# SY)6m#(S)7$#0Ss)8m#8S8)8m#<Sg)8m#@S )8m#DS3)9$#HSH):k#PS);dc#XS)dc#pS)?dc#xS~)@dc#S)Adc#S)BSg#S)Cm#S)Dm#S)Em#S")Fm#S)Gm#S.)Hm#S#)Im#S )Jm#S!)K$#Z9iFumuu2YiF+umu[~iEACgumu3iF)+$u4i7u1m?i7uvm?iQu$?j-lu$?9jKum=Vj$u?oj u?j/u\j}fCgu=g]jCgu^ju^ku;!k;u^:k Fu^Sknu^lku_MOu9 m1lF4S=l#2k\l2k\lm2k\ll2l\ll4$lll3El= lll=gld ll=lm\ll3l`ll=lu)l`B7lak6lk6kl1GnF4S=Gn#2*m\Mn2Dm\Mnm2]m\MnGn2vm\Mng4mMnSn3m= <SnMng=md Yng=mm\Yng3n`GnYn=1nu&Yn`BMnal6lg1oF4S=o#2n\o2n\om2n\oo2n\o g4n׽oo3o= ߩoo g=:od o g=\om\_o g3xo`oo=ouXo`BJo a_n6_n&g1(qF4S=(q#2o\.q2 p\.qm2%p\.q(q2>p\.q4q4[p .q?q3|p= ??q.q4q=pd eEq4q=pm\PEq4q3p`(qEq=puEq?qB[.q7.q gao6:qo6o:q1rG4S=r#2zq\r2q\rm2q\rr2q\rr4qMrr3r= ߸rrr=&rd |rr=Hrm\rr3dr`drr=rufr?rBr7rlraKq6rKq6Kqr1$tF4S=$t#2s\*t2!s\*tm2:s\*t$t2Ss\*t0t4psC*t;t3s= ߉;t*t0t=sd 1At0t=sm\At0t3s`$tAt=tuAt`B*t[r66tr6r6t1uF4S=u#2vt\u2t\um2t\uu2t\uu4t,uu3u= uuu="ud uu=Dum\/uu3`u`Muu=}uu0u?uBu7hu0tu[Gt6uGt6Gtu[?Cguu&6uCgu v[a$vR^b)6$v|^cDvAbs7mdx7maYv\ob)6Yvoasvlb)6svlavsb)6vAtavlb)6vevf1vlllavlb)6svav]b)6$vga wm]b)6$vh\w!k/AF1Awi)6\wUjiHmf^I<kxJujulx:kP1AZ5Aƍi)6\wUjt1qmjt2qm[jA1qmjA2qm_jtcqmjiqmPk9qmkxruf^s<m'x)v1A1Azn:vmHx)v1A1A|n:vmix)vS3A_3An:vo)v3A3An:vlxSk`5Ar5Ap)6\wQhx9j5A5Awi)6\wUl&ylk5A5Ap)6\wғqptr9 r<m>aEykb)6vbranyYib)6\wbrbnyusyEy5A7AttOyԔmy&yf6A6ADn0yo&y6A7ADn0ysFzEy7A8AtOy}tcyƕm(z&y 8A#8ADn0yo&y|8A8ADn0yszEy8A:AtOyomz&yf9A9ADn0yo&y9A:ADn0yaznb)6zbrol{j:A ;A˖p)6\wuz6vz:A ;Aa?{qb)6?{dsrcD{.q ga{{$lb)6vdsrc{{f1kwxvla{kb)6vdsrc{la{ob)6?{bra{rb)6{dsrc{rla |zqb)6{brl7j ;A?A_p)6\wjim˘yx1myx2mjy1mjy2mcf^<zxu~m|{b;A};An3{n){mB}I{;A;An]{nS{xh{m}{;A;An{m*}v;A;Anv{v|&y;A;A|&y;A;Amz}{;A;An{|z;AA>A}~{07n{|&y?A?Am~{?A=?An{|z=?AU?A|zv?A?Ao{?A?An{aWub)6Wdsrc\u0tavtb)6Wbrasb)6br*tlk?A'KAp)6\w~i=$8~j=$Ɯ~di>$T~dj>$ɝ~dim?$Wstr@~Omߞer|y{`7Un{n{^v7nhvvzAABAU{BA"BAUn{{7^n{n{^v7nhvvzCADA^{DA$DA^n{i 8;pQ\|f{`8ln{n{^v8nhvvz"FA7FAl{7FATFAln{78xnKnA{8xn{n{^v 9nhvv!GA(GAxnwvzGAGAxI{GAHAxn{aHA!HAxnkvOHAdHAy{HAHADn3{n){8I{HA-IADn]{nS{xh{m{HAIAn{m vIAIAnv{v|&yIA-IAv&y-IABIADs{BIA_IADn{vz_IA~IADvzIAIAUƃ{IAIAUn{݃{P9^n{u9yvzIAIAx${IAIAxn{GaIAJAxnkvzEJA]JAl{]JAtJAln{vzJAJA^vzJAJADՄ{JA KADn{v&y KA'KADclvoj0KALAbp)6\wß]93avzKAKA7vzKALA7lVj LALA p)6\wmԅ9%a@vzLALA+vzLALA+h)iLALAwp)6\w7$٠hejMA MAwp)6\wmhiMAMAwp)6\wBf$eli MAzMAp)6\wsv&m?l3iMAMAp)6\wqs1r&m?aHkb)6va]mb)6]Yna*mb)6brMna9ib)6\wbrbusՈMA_SAt9m3MNAUNA+t=|bOA.OA/|b{OAOA0|bOAOA1|bMPAbPA2|bPAPA3|bQA0QA4|bQAQA5|b RA%RA5o&ycRARA>n0ys`SAwXAtmtm*3SASA+=}|bwTATA/|bTATA0|bAUAVUA1|bUAUA2|bVA$VA3|bvVAVA4|bVAVA5m&yQWAnWA>n0y|bWAWA5l jXA\A%p)6\w֦k2m2kmht1m~t2m~}{:n{n{o^vXAXAnhv|z>YATYAmڊ{TYAnYAn{m{YAYAn{n{o^vYAYAnhv|zYAZAmU{ZA"ZAn{m{jZAZAn{n{o^vjZAqZAnhv|zZAZAmЋ{ZA[An{m{*[AK[An{n{o^v*[A1[Anhv|z[A[AmK{[A[An{ml{[A[An{}{@:n{|z\A\A|z*\AC\AmЌ{C\AT\An{|zT\Am\Am{m\A\An{|z\A\Al]j\A]Ap)6\w֧[}=g ::aL & HBo@nBq>;2E2aL & HBo@nBq>C?; 4[2E2[[*h/?[dHI?[~?[?\333333?&\Hգp= ?;\S? Ƨ4? AnbFE@WF'PF*$FWF'PF(BhF+rgWF` PFaԤFdmB6  2 pv9?+,2 9DGjH M89P48B6 N2 pv9?n2 9DC21jC1kZC1lBC1mNC1n VCsL1o Ean1* #8zE1c8zE21F;E1:{;E 1g;E1|;E1o;EmL1;ED1}; G@m,decG1,nG;,hexG ,G^,OG;, octGɏ,@GG3f,G y,qG >,>G$Z,jG' ,IG*E ,xG-, csG12,@^G47,x G7e=,JmG:, "GL\ZGOd=GTYnGW| inGvEoutGyCK curGT!"H3YTH4U H54*H6 *H7hP H8* :mH9>E@4H:E# CdQH;tCH<$]pH= 8tIxB8IB8I@I V<8I +B8I8IA8IS8IZ8Iy38Iy8Iy }8Iy^RB0n2DEGJY+SubA`]AZint5ez`z/^q̰+;&K1 7 != #Cs (D`z>),-1Km2D4ъH;g"7f" D(7# len)# l%d%d # "d#"u#j""j" D&# `'# { Y j@C\cc +r#aeae Dw#  :.e: *L# ;#O# YP#<.[ {Z pSad#. $ -# ך$S# =$S# v$S# $S# =$S#( ;@$S#0 "$S#8 $S#@ u]$S#H GU$S#P $$S#X $#` $ #h e$"-#p b$&-#t ts$(=#x 5$,# $-# "$.# )$2# xs$;H# $D;# $E;# $F;# $G;# $Hk# $J-# {$L#-$K$ _$# /p$# a$-# Z  S A A x # y # # # } \_| \  ,# red -# ^ .# V /#5 ]j48 ]  C## A F# G$# J*#( L#0 _ _ P3 # 4# 5#/ ` k.0 ` ## # # # w#$  #(P cvUOP c K## PM # N# |O# aP#$ Q#( *S#, T#0 U#4 W#8 X#< }Y#@ [#D \#H U]#Lpg e 2##= fU gUɡ hU j0 j ,##.# 0 # 1 # x3 # R44# mD p  k%2;$  !+R!+ P!s # !A# [!v#s !p #dw_Em  ի M d "$; K]{$t !}=$jMiMg v!ϵ"U#D!   { _  0 ,#p/ p  R 4y7}; u! J u Ue# \#2U \ 2 G## fgK # bgL #T M # |N # midO # P # Q # R # T# U# V# nX# oY# [# \# ]# 3^# _# `# a# Jb# Vc # d # f# !j# l# m # n # o# r%# t# u+# v#5g Q 5 :## >7# ?i# @#H By#P fgC #d bgD # E # F # nH# oI# L+# nO# Q#S#A\  `A  # # n#" ## 7#( 1#0 щ#8 ս#@ A#P / 7#X %  \  J Q ^1-U86=y7^ # #/ G" 1W!p 1 6Q # ! 87#` :#h =#h > #h ? #h @ #h-bx- 2# '47#pr.q. bin3W# 5A#x Z77# 9#;#K<#e=#;>#o?#@#mA#BB#QC# ?8? 1## 3# 4# 5#( 7#0 /H/ H## J# K# M#( N#0 P#8 _R#@U#D_W#Da'` ' .## 0#)  9;   +A+`]AbABׅ,7{ ,7,7N,7 -7@-7z/ 072 G3 47UQ57x5757]79~ *:Mj% bAPbApN$D$˫PbAubAw7&eIDlS5" a AgA- @AB-W  A2z7 aaL#&#e-Wp:/build/buildd/glibc-2.5/build-tree/amd64-libc/csu/crtn.S/build/buildd/glibc-2.5/build-tree/glibc-2.5/csuGNU AS 2.17.50% $ > $ > 4: ; I?  &IU%R% : ; I$ > $ >   II!I/ < &  I &I: ;I : ; : ;I8  : ;  : ; I8 I : ; ( I : ;  : ; I8 5I : ;  : ; I: ; 9: ; : ;  : ;!< " : ; #I8 2 $.? : ;< %I4 & : ;'4: ; @I? < (9: ; ):: ; *9: ; +.? : ; I< ,.? : ;I< -.? : ;I< ..? : ;< /.? : ;I< 0.? : ; @I< 1.? : ; I< 23G : ; 4G : ; 5.? : ; < 6.? : ; @I< 7.? : ; @< 8.? : ; @< 9 I:.? : ; < ;4: ;@I? < < : ;I8 2 =.? : ;@I2 < >.? : ;@2 < ?.? : ;@I2 < @.? : ;@I< A.? : ;@I< B.? : ;@< C.? : ; @I2 < D.? : ;@I< E.? : ; @I< F4: ; @I? <  G4: ; @I? <  H4: ;@I? 2 < I< J.? : ;@I< K.? : ;2 < L.? : ;@2 < M.? : ;@2 < NG : ;O.? : ;2 < P.? : ;< Q!R4: ; @I? <  S : ; I8 2 T.? : ;I< U.? : ; @2 < V.? : ; @I2 < W.? 4 < X.? : ; @I< Y.? : ; @2 < Z.? : ; 2 < [.? 4 < \4: ; I< ]4: ; I<  ^9: ; _ : ; `< a9: ; b : ; I8 2 c.? : ; @2 < d.? : ;@< e.? : ; I@f:: ;g: ; Ih4: ; Ii4: ;I j4: ;I k4: ;Il Um1UX Yn1o1UX Yp1q1UX Y r1X Y s1X Yt1X Yu1X Yv1UX Y w4: ;Ix Uy1X Y z : ;{.? : ; @I< |G : ; } I8 4 ~.? @I4 < .? : ; L < .? : ; @IL M < .? : ; @L M < .? : ; @IL M 2 < .G: ; I4 .G : ; I: ;I : ; I.G  .G: ; .G@: ; I.G@ I4 4: ; I: ; I : ;I4: ; I .: ; I@.? : ; @@ .? : ; @@4: ; I .? : ; @I@!I/4: ; I 4: ; I? < 4: ; I< 4: ; I< 4G 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < R% : ; I$ > $ >   II!I/ 9: ; : ;  : ; <  : ; ( <  : ; I8 2  : ;I8 .? : ;< I4 I : ;4: ; @I? < 9: ; :: ; 9: ; &I.? : ; I< .? : ;I< & : ; : ; I8 ! : ; I8 ": ;I#I$%.? : ;I< &.? : ;< '.? : ;I< (.? : ; @I< ) : ;* : ; + : ; I,: ; -.? : ; I< ./ : ; 0G : ; 1G : ; 2.? : ; < 3.? : ; @I< 4.? : ; @< 5.? : ; @< 6 I7.? : ; < 84: ;@I? < 9 : ;I8 2 :.? : ;@I2 < ;.? : ;@2 < <.? : ;@I2 < =.? : ;@I< >.? : ;@I< ?.? : ;@< @.? : ; @I2 < A.? : ;@I< B.? : ; @I< C4: ; @I? <  D4: ; @I? <  E4: ;@I? 2 < F< G.? : ;@I< H.? : ;2 < I.? : ;@2 < J.? : ;@2 < KG : ;L.? : ;2 < M.? : ;< N!OPIQ5IR.? : ;I< S.? : ; @2 < T : ; I8 2 U.? : ; @I2 < V.? 4 < W.? : ; @I< X.? : ; @2 < Y.? : ; 2 < Z.? 4 < [9: ; \.? : ; I< ]4: ; I< ^4: ; I<  _ : ;` : ; a.? : ;L < b.? : ;@< c.? : ; @I< d!I/e.G: ; fI4 g.G h: ; Ii: ;Ij k: ; Il.G m n.G: ; o p.G@q: ; Ir4: ; Is1UX Y t1u1UX Y v1w1X Yx.G@ yI4 z: ; I{1X Y |: ;I}4: ; I ~.1@4: ; I.? : ; I 4: ;I4: ;I4: ;I4: ;I4: ;I  U1X Y1X Y 1UX Y1UX Y  441X Y4: ; I? < 4G 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < 4: ; @I? <  % : ; I$ > $ >   I : ; : ;I8 : ;I  : ;  : ; : ; I : ; I8 I!I/ &I : ; : ; 9: ; : ; : ;<  : ; ( <  : ; I8 2 .? : ;< I4 I : ; 4: ; @I? < !9: ; ":: ; #9: ; $.? : ; I< %.? : ;I< &&' : ; I8 (I)*.? : ;I< +.? : ;< ,.? : ;I< -.? : ; @I< ..? : ; I< /0G : ; 1G : ; 2.? : ; < 3.? : ; @I< 4.? : ; @< 5.? : ; @< 6 I7.? : ; < 84: ;@I? < 9 : ;I8 2 :.? : ;@I2 < ;.? : ;@2 < <.? : ;@I2 < =.? : ;@I< >.? : ;@I< ?.? : ;@< @.? : ; @I2 < A.? : ;@I< B.? : ; @I< C4: ; @I? <  D4: ; @I? <  E4: ;@I? 2 < F< G.? : ;@I< H.? : ;2 < I.? : ;@2 < J.? : ;@2 < KG : ;L.? : ;2 < M.? : ;< N!OPIQ5IR4: ; @I? <  S : ; I8 2 T4: ; I< U4: ; I<  V9: ; W.? : ; @I< X.? : ;@< Y : ; Z.? 4 < [.? : ; L < \.? : ; @< ].? : ; @2 < ^.? : ; @IL M 2 < _.? : ; @L M 2 < `.G aI4 b: ; Ic4: ; Id.G@eI4 f1UX Y g1X Y h.1@i1j1X Y k1l Um4: ; I n.G@ o: ; Ip q4: ; Ir: ; Is1X Y t u4v w41x: ; Iy4: ; Iz4: ; I{4: ; I |41}1UX Y ~1UX Y 4: ; I? < 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < % : ; I$ > $ >   I : ; : ;I8 : ;I  : ;  : ; : ; I : ; I8 I!I/ &I : ; : ; 9: ; : ; : ;<  : ; ( <  : ; I8 2 .? : ;< I4 I : ; 4: ; @I? < !9: ; ":: ; #9: ; $.? : ; I< %.? : ;I< &&' : ; I8 (I)*.? : ;I< +.? : ;< ,.? : ;I< -.? : ; @I< ..? : ; I< /0G : ; 1G : ; 2.? : ; < 3.? : ; @I< 4.? : ; @< 5.? : ; @< 6 I7.? : ; < 84: ;@I? < 9 : ;I8 2 :.? : ;@I2 < ;.? : ;@2 < <.? : ;@I2 < =.? : ;@I< >.? : ;@I< ?.? : ;@< @.? : ; @I2 < A.? : ;@I< B.? : ; @I< C4: ; @I? <  D4: ; @I? <  E4: ;@I? 2 < F< G.? : ;@I< H.? : ;2 < I.? : ;@2 < J.? : ;@2 < KG : ;L.? : ;2 < M.? : ;< N!OPIQ5IR4: ; @I? <  S : ; I8 2 T4: ; I< U4: ; I<  V.? : ; @I< W9: ; X : ;I8 Y.? : ; I< Z : ; [ : ; I8 2 \.? 4 < ].? : ; L < ^.? : ;@IL M 2 < _.? : ; @2 < `.? : ; @2 < a.? : ;@< b.G cI4 d: ; Ie4: ; If g.G@hI4 i: ; Ij: ; Ik.1@l1m1UX Y n1o Up4: ;I q1X Yr.G@ s4: ; It: ;Iu: ;Iv4: ;I w: ; Ix1X Y y1X Y z1X Y { |41}4: ; I~4: ; I 411UX Y 4: ; I 1X Y1UX Y1X Y4: ; I? < 4G 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < % : ; I$ > $ >   I : ; : ;I8 : ;I  : ;  : ; : ; I : ; I8 I!I/ &I : ; : ; 9: ; : ; : ;<  : ; ( <  : ; I8 2 .? : ;< I4 I : ; 4: ; @I? < !9: ; ":: ; #9: ; $.? : ; I< %.? : ;I< &&' : ; I8 (I)*.? : ;I< +.? : ;< ,.? : ;I< -.? : ; @I< ..? : ; I< /0G : ; 1G : ; 2.? : ; < 3.? : ; @I< 4.? : ; @< 5.? : ; @< 6 I7.? : ; < 84: ;@I? < 9 : ;I8 2 :.? : ;@I2 < ;.? : ;@2 < <.? : ;@I2 < =.? : ;@I< >.? : ;@I< ?.? : ;@< @.? : ; @I2 < A.? : ;@I< B.? : ; @I< C4: ; @I? <  D4: ; @I? <  E4: ;@I? 2 < F< G.? : ;@I< H.? : ;2 < I.? : ;@2 < J.? : ;@2 < KG : ;L.? : ;2 < M.? : ;< N!OPIQ5IR4: ; @I? <  S : ; I8 2 T4: ; I< U4: ; I<  V.? : ; @I< W9: ; X : ; Y( Z.? 4 < [.? : ; L < \.? : ;@IL M 2 < ].? : ;@L M 2 < ^.? : ; @2 < _.? : ; @2 < `.? : ;@< a.G bI4 c.? : ; I d: ; Ie: ; If4: ; Ig h.G@ iI4  j4: ; Ik4: ; Il.G@m1X Y n1o1X Y pI4 q: ; Ir: ; Is.1@t1u1UX Yv1X Yw x41y4: ; Iz4: ; I {41|1X Y }1UX Y ~4: ;I4: ;I 4: ;I4: ;I 1UX Y1UX Y 1X Y U1X Y: ;I: ;I1 4: ; I 4: ; I? < 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < % $ > $ >  : ;I< : ; I : ; : ; I8 : ; I8  I 5I : ;I8 : ; I!I/  : ;  : ; I 8  : ; ( .? : ; ' @4: ; I.: ; ' @: ; I.: ; ' I@: ; I4: ; I !I/&I4: ; I? < U%# init.cO /build/buildd/glibc-2.5/build-tree/amd64-libc/csucrti.S ̐@ Ku=/0K }@K XcA$h /usr/include/gtkmm-2.4/gtkmm/usr/include/sigc++-2.0/sigc++/adaptors/usr/include/sigc++-2.0/sigc++/functors/usr/include/sigc++-2.0/sigc++/usr/include/glibmm-2.4/glibmm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/usr/include/gtk-2.0/gdk/usr/include/glib-2.0/gobject/usr/lib/glib-2.0/include/usr/include/pangomm-1.4/pangomm/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/gdkmm-2.4/gdkmm/usr/include/asm-genericobject.hadaptor_trait.hptr_fun.hslot.hvisit_each.hmem_fun.hlimit_reference.hslot_base.hmain.cchelperlist.hcontainers.hmenushell.hmenu_elems.haccelkey.hsignalproxy.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h _G_config.hwchar.hstdio.h clocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.h refptr.hcontainerhandle_shared.hmarkup.hgtypes.h type_traits.htrackable.hstl_list.h new_allocator.h allocator.h list.tcc functor_trait.hgdkevents.hgdktypes.hgdkdrawable.hgobject.hgtype.hgdataset.h glibconfig.hdeduce_result_type.hfontdescription.hfont.henums.hcomponent.htypes.hstockid.hmenuitem.hbox.htable.hbutton.hstock.hustring.hlocale_classes.h atomic_word.h gthr-default.h pthreadtypes.h stringfwd.h basic_string.h basic_string.tcc stl_iterator.h gunicode.h unicode.hradiobuttongroup.hgslist.h glist.h gclosure.hconnection.hgetopt.hioctl.hgthread.h gerror.h gquark.h gstrfuncs.h limitsios_base.h ctype_base.h locale_facets.h main.hgmain.h 0@:: >= @@:: >= P@:: >= `@ p@  @ktfJ< @ @  @PJ<<J  @ sJ~J J @   @ 0@  @@PJ<<J  `@ p@  @PJ<<J  @6OHJ д@ @  @PJ<<J  @A 0@ @@  P@  `@PJ<<J  @<  @ @  @  @PJ<<J  `@LZVfzt4&MKU vktut/sKx_%uuniu XuX fhLZKuZrXXwG@T?g:Ls1y%I_X\N8$Yg",?--ULiX.iJXwXrJ Xqqqq.lJ<$ZZs%h!K//1""}RK}~:tX ~ ~ ~ 8 <   "=~}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <    ~ 8 <  ~}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <   "=~}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1   ~ 8 <   'g=}RK}~:tX   ~# 8 <   "= ~% 8 < m  ~- 8 < m  ~2 8 < m "}RK}~:tX   ~ 8 <  6 V ~z =J  o } M ~z =J  o } M ~x 8 < m } $=">|RK|~:tX  ~X #~ Z"'-  ~ ~ 6  ~J~  }. }u J}  u, }  }2 }  }= } ~# G#J ~f @6OHJ @6OHJ @@#UM]X#JCVK)JW<)<VJK"X* @#UM]X#JCW<)JW)<V(J"X-u з@#UM]X#JCVK)JW<)<VJK"X* /usr/include/gtkmm-2.4/gtkmm/usr/include/sigc++-2.0/sigc++/functors/usr/include/sigc++-2.0/sigc++/usr/include/sigc++-2.0/sigc++/adaptors/usr/include/glibmm-2.4/glibmm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/usr/include/gdkmm-2.4/gdkmm/usr/include/pangomm-1.4/pangomm/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/glib-2.0/gobject/usr/include/asm-generic/usr/lib/glib-2.0/includeobject.hslot.hmem_fun.hlimit_reference.hadaptor_trait.hvisit_each.hslot_base.hguitune.ccresources.hsignalproxy.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h _G_config.hwchar.hstdio.h clocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.h refptr.hcontainerhandle_shared.hmarkup.hmain.hcontainers.hgtypes.h type_traits.htrackable.hfunctor_trait.hguitune.hmain.hosziview.hconnection.hstl_list.h new_allocator.h allocator.h list.tcc deduce_result_type.htypes.hfontdescription.hfont.henums.hcomponent.henums.hgclosure.hgobject.hgtype.hgdataset.h ioctl.hgthread.h gerror.h gquark.h glibconfig.hgunicode.h gstrfuncs.h limitsbasic_string.h basic_string.tcc locale_classes.h atomic_word.h gthr-default.h pthreadtypes.h stringfwd.h stl_iterator.h ios_base.h ctype_base.h locale_facets.h ustring.hgmain.h gslist.h @:: >=  @:: >= 0@:: >= @@:: >= P@:: >= `@ JrJ\J Jr Jr< @ sJ~J J @  @ sJ~J J @  @A @ @  @  @PJ<<J  0@ @@  P@  `@PJ<<J  0@  @@  P@PJ<<J  @<  p@ @  @  @PJ<<J  @ @  @  @PJ<<J  @6OHJ @  @  @PJ<<J  p@ >YfYYX#Y}bv ?vXko > >0]vvyzzzruuytruuytruut .wtr򒖉1ci9ii:h-u*_撓YY+0jgKǑ(Y@  )v |'g" |/<Rgs&v%x}t0,vL;gj1Zuu~J~Xu~tt|R.JS-XtXX~B~KrJ[gYYYYY\u[K@uh=sKYgYN|.u~.< ?>E >:>Zt/s;lʟu{7uuY.Yk!   R DD>DD5HH"H>LHA0}t}XJ}R.JS-tXmXm }X# }}t}XJ}R.JS-tXnXn }X# }}t}XJ}R.JS-tX1o o }X# } t}X}R.JS-tX1qq }X# } t}X}R.JS-tX1rr }X# }}t}XJ}R.JS-tX1t  t }X# } }+}4u}u q$wl0r/;u@ʟu{7uuY.Yk!   R DD>DD5HH"H>LHA0}t}XJ}R.JS-tXmXm }X# }}t}XJ}R.JS-tXnXn }X# }}t}XJ}R.JS-tX1o o }X# } t}X}R.JS-tX1qq }X# } t}X}R.JS-tX1rr }X# }}t}XJ}R.JS-tX1t  t }X# } }.}tu}u )q$wl0r @@6OHJ p@6OHJ @#UM]X#JCW<)JW)<V(J"X-u @#UM]X#JCW<)JW)<V(J"X-u @#UM]X#JCW<)JW)<V(J"X-u|  /usr/include/glibmm-2.4/glibmm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/include/sigc++-2.0/sigc++/usr/include/pangomm-1.4/pangomm/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/gdkmm-2.4/gdkmm/usr/include/gtkmm-2.4/gtkmm/usr/include/gtk-2.0/gdk/usr/lib/glib-2.0/include/usr/include/glib-2.0/gobject/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/extlcdview.ccrefptr.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h_G_config.hwchar.hstdio.hclocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.hcontainerhandle_shared.hmarkup.hcontainers.hgtypes.htype_traits.htrackable.hfontdescription.h font.h enums.h component.h types.h stockid.h lcdview.hcolor.h gdktypes.hgdkcolor.hglibconfig.hgtype.hustring.hlocale_classes.hatomic_word.hgthr-default.hpthreadtypes.hstringfwd.hbasic_string.hnew_allocator.hallocator.hbasic_string.tccstl_iterator.hgunicode.hunicode.hgdkevents.hgdkdrawable.hgobject.hgdataset.hrectangle.h gthread.hgerror.hgquark.hgstrfuncs.hlimitsios_base.hctype_base.hlocale_facets.hmain.hgmain.hgslist.h @ZYxF߃ֻֻXֻ p x=WY/N+YV)tD"<t"=~wu׮IY~IY~סvuxxquouztuvuwsvvvvvvuurtuvvzvvvw-wA)X.u'J+|Z>"; :/E)YuXtYYf.Yg.YY` Xv YgI;KY4/WgYI~fa~wu׮IY~IY~סvuxxquouztuvuwsvvvvvvuurtuvvzvvvw-wA)X.u#1" /usr/include/glibmm-2.4/glibmm/usr/include/pangomm-1.4/pangomm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/include/sigc++-2.0/sigc++/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/gdkmm-2.4/gdkmm/usr/include/gtkmm-2.4/gtkmm/usr/include/pango-1.0/pango/usr/include/gtk-2.0/gdk/usr/lib/glib-2.0/include/usr/include/glib-2.0/gobject/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/extlogview.ccrefptr.hrectangle.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h_G_config.hwchar.hstdio.hclocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.hcontainerhandle_shared.hmarkup.hcontainers.hgtypes.htype_traits.h trackable.h fontdescription.hfont.henums.h component.h types.h window.h stockid.h pango-types.hlogview.hcolor.h gdktypes.hgdkcolor.hglibconfig.hgtype.hustring.hlocale_classes.hatomic_word.hgthr-default.hpthreadtypes.hstringfwd.hbasic_string.hnew_allocator.hallocator.hbasic_string.tccstl_iterator.hgunicode.hunicode.hgdkevents.hgdkdrawable.hgobject.hgdataset.hgdkinput.hrectangle.h gthread.hgerror.hgquark.hgstrfuncs.hlimitsios_base.hctype_base.hlocale_facets.hmain.hgmain.hgslist.h 0A:>/Wv.iBWKyttYtYtJtt<J/W/gg~֑~tJ%WY-0 x=WY/N~Y~t"Km=WYw~ zXwX rXL ȯ Xu JtX_sLw:o@YMYRYRYRYRY+w_oX twXNO8uuvt]@YMYOYRYRYRY,wC8Z:Z/rLus7JX6J,<:Z/44<MX3<,<:Z/?YBz  YslL6xXx|%=?E#&t:/ZYXtYYY"ƅ9ZY=eY*WuzJ f,[%X[%<}CYxgs&XZ&<:/yf6*VhVdQ/X>OX1<a:/[%&w#Z:/S9XGX9<sf:/JfS.o Z:/SXX<kf:/K*6?XX?t,<:/D=7<6xXR4V8ZJZ:/SXX<Vt:/)~t<~JXWR Z:/S.XX<Nf:/1->X!X<If:/6X<H:/7XX<B<:BJ/>'X<,<:/$5VVrZ:/S,:/7 Z:/S,:/"A4VZ:/SX~Xt<<:/~t<~<<< Z:/SX~X<<:/~-d<IIJU*III-s/ J++&w/ v2J/I@JCf>Y>  /usr/include/glibmm-2.4/glibmm/usr/include/pangomm-1.4/pangomm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/include/sigc++-2.0/sigc++/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/gdkmm-2.4/gdkmm/usr/include/gtkmm-2.4/gtkmm/usr/include/pango-1.0/pango/usr/lib/glib-2.0/include/usr/include/gtk-2.0/gdk/usr/include/glib-2.0/gobject/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/extosziview.ccresources.hrefptr.hrectangle.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h_G_config.hwchar.hstdio.hclocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.hcontainerhandle_shared.hmarkup.hcontainers.hgtypes.htype_traits.h trackable.h fontdescription.hfont.henums.h component.h types.h stockid.h pango-types.hosziview.hgarray.hglibconfig.hcolor.h gdktypes.hgdkcolor.hgtype.hustring.hlocale_classes.hatomic_word.hgthr-default.hpthreadtypes.hstringfwd.hbasic_string.hnew_allocator.hallocator.hbasic_string.tccstl_iterator.hgunicode.hunicode.hgdkevents.hgdkdrawable.hgobject.hgdataset.hrectangle.h gthread.hgerror.hgquark.hgstrfuncs.hlimitsios_base.hctype_base.hlocale_facets.hmain.hgmain.hgslist.h /AcM:u/\eg#zt :g/H\eq(  J vf'M<[<ͤYeIKIz-gCL*vhgƻLw XR<g<[<1X[IKIYH( w JgׁN,uuq vLSm5X >Y=.TZH>,>YKu~J"VExtVLEY["VExZ~Yt~~J~ .wJ  UMG[g :Z/p:YKXJYYY0_,t:Z/tkNYzV,t:Z/^]Y!;eKAw'@[JYee<6?=uKh:L<~'X~X,<:/~Y<g;Y9~'X~X,<:/~Y9;6~iX~X,<:/~oYׁ~<~/~0X}Xt,<:/~Y~.YR)xt:/~YYXXYYX~XY~f~.IW/K~֑~t" x=WY/NYt"rv:Z:vZ;0==sh0Z;0==W~tO~nZVLHY~MY~VY~RYRYRYRY򟟪MU+>wv~ZVLHY~MY~SY~RYRYRYRY򟟪MUXXwC3E#>;uFX:Jr<:Z/ K-K;RY.;uD,t:Z/K-K;PY1Y[;,t:Z/uW=;W=EY;;,t:Z/g=;W=CY=BJs)X>[uU /usr/include/gtk-2.0/gtk/usr/include/glib-2.0/gobject/usr/include/glib-2.0/glib/usr/lib/glib-2.0/include/usr/include/gtk-2.0/gdk/usr/include/pango-1.0/pango/usr/include/gtk-2.0/gdk-pixbuf/usr/include/cairo/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/includeaboutbox.cgtkstyle.hgtkwidget.hgtktypeutils.hgtkobject.hgobject.hgtype.hgtypes.hgdataset.hglibconfig.hgdktypes.hgdkcolor.hpango-font.hgdkgc.hgdkvisual.hgdkdrawable.hgdkfont.hgtkrc.hgarray.hgslist.hgdk-pixbuf-core.hgtktextiter.hgtktextbuffer.hgtktexttag.hgtktexttagtable.hghash.hgdkscreen.hcairo.hgtkicontheme.hgtkbutton.hgtkbin.hgtkcontainer.hgdkevents.hFB_logo.xpmstdio.h libio.h types.h stddef.h `]A*"$Z[U?#Y;Y0U?BWY-=(e=&Ce=u!"%%#&u"=&6=KvXK {O /build/buildd/glibc-2.5/build-tree/amd64-libc/csucrtn.S }@K acAKx 0@D@@DP@D`@p@ @G@@ @D @+@  @0@ @@D `@p@ @D @+D д@@ @D @0@@@ P@ `@D @@@ @ @D `@D@$@;AAF0В@R<0@BEB B(D0A8G$@BNG @D@+D @+D $@@JQ0$@JQ0$з@JQ0<@@BBB B(A0A8Gx P@DP @DP0@DP@@DPP@DP`@7DP@+P@ P@+P@ P@P@P@ P@ P@D P0@P@@ PP@ P`@D P0@ P@@ PP@D P@Pp@P@ P@ P@D P@P@ P@ P@D P@+D P@ P@ P@D Pp@,A$P@AAG $P`@AAG $P @JL P@P@ AP@ P@ P @ P0@APP@APp@ P@ P@ P@ P@ P@P@P@P @P0@PP@P`@.P@.P@.P@@+D Pp@+D ,P@BHA G`$P@JQ0,P@BDA D(PPP@APp@.A$P@JQ0$P@JQ0<P@IBIB B(A0G8G<P@BSB B(A0D8Mx  @JG0$ @AAG $ @AAG $ @JL $ @ADDP @N< @bBFE B(A0H8J< `@BBB I(A0A8G< @@BIB B(A0D8Jx H0AGN HAZAG0$HAAAG $HpAAAG $HA?BAD $H@AADD`H0 Al$H AADDPHp A $H AmBDG0H AX<HP ABIB B(A0G8G<H`ABFB B(A0D8M<H ArBBB B(A0G8G<HA~BGB B(A0A8G H /AQJG x /A$P1A AG`5AA5A$5ATJL $5AAFG $7AUBAD $8AAFG :AJG0< ;ABFB B(A0D8G<?Aw BBB B(D0A8G$0KAADD`$ LAADDPLA MA MA $ MAZEJJ MARJG <MABIB B(A0G8G<`SABFB B(A0D8M<XA,BFB B(A0A8J$\AfJL x $`]Ab bA0DPbA%Dinit.cshort intGNU C 4.1.2 (Ubuntu 4.1.2-0ubuntu4)unsigned charshort unsigned int/build/buildd/glibc-2.5/build-tree/glibc-2.5/csu_IO_stdin_used_S_app_ZNK4Glib7ustring12find_last_ofEcmgcharconfv~new_allocator_M_remove_referencedestroy__ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1_signal_namemod_List_Iterator_Base_ZN4Glib7ustring6insertEmRKS0__ZNK4Glib7ustring12find_last_ofERKS0_mmain.cc_ZNSt8ios_base7showposEoptions_triggerg_ascii_table_A_targetdifftime_ZNSs6assignERKSsmmGDK_WINDOW_STATE_ZNK4Glib7ustring16find_last_not_ofERKS0_m_ZN4Glib7ustring6appendERKS0__ZNK4sigc12mem_functor0Iv10MainWidgetEclERS1__ZN4Glib7ustring4rendEv_ZNK4Glib7ustring12find_last_ofEjm_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4rendEvGDK_DROP_FINISHED~AccelKeytm_sec_M_facets_Ios_Iostatepunctpop_backupperbasic_string,std::allocator >address_ZNSt17moneypunct_bynameIcLb1EE4intlE_ZNK4sigc8internal8slot_rep3dupEvtyped_slot_rep >_ZN4Glib7ustring6appendEmcNORMALIZE_DEFAULT_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5eraseES8_S8__ZNSt10money_base8_S_atomsEvfunc_table__ZN4Glib7ustringpLEcfreadvisit_each, MainWidget, true>_ZNSt15_List_node_base4hookEPS__ZNK3Gtk8AccelKey10get_abbrevEv_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE7addressERS5_set_option_defaultsfputwcfputwsBuiltinStockID_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKcmSCALE_MEDIUM_GdkEventAny_M_init__gnu_debug_def_ZN4sigc8internal23trackable_callback_list12add_callbackEPvPFS2_S2_E_ZNK4Glib7ustring5rfindEjmoptions_audiodev_GSourceCallbackFuncsfgetcfgets_S_scientific_ZN4sigc8internal17with_type_pointerILb0ENS_16pointer_functor0IvEENS0_20limit_derived_targetIPNS_9trackableENS0_14slot_do_unbindEEEE8execute_ERKS3_RKS8_connect_callback_funcs_ZNSs12_S_constructEmcRKSaIcE_ZNSt14numeric_limitsIfE10has_denormE_S_construct_S_atoms_vptr.HelperList_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5beginEvrbeginSignalProxy1_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mc_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5frontEvGDK_UNMAP_ZNSt8ios_base6skipwsEblocked__S_initialize_oncetm_wdaystrtokstrtol_ZNSt14numeric_limitsIeE12has_infinityEint_n_sep_by_space_ZNSs7replaceEmmmcperror_M_dispose_ZNSs4_Rep10_M_refcopyEv_M_assignoperator*operator+operator-emission_stopoperator=limit_derived_target_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7call_itEPNS0_8slot_repE_ZNSt6locale2idaSERKS0_wcstoullGDK_PROXIMITY_IN_ZNKSs4rendEv_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEE4baseEvptr_fun_Ios_Seekdir_ZN4sigc8internal23trackable_callback_list5clearEvset_parentmenu_input_rec_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE7destroyEPS5__GThreadFunctions_ZNSt6locale7_S_onceE_ZN4Glib7ustring5eraseEmmGDK_NOTHING_ZNK9__gnu_cxx13new_allocatorIcE8max_sizeEv_M_mutate_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE6removeERKS2__ZNK4sigc8internal14slot_do_unbindclEPKNS_9trackableEmbstate_t_M_cachesmbstowcschild_on_delete_event_ZNSs4nposE_M_node_ZNKSs13find_first_ofEPKcm_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE7addressERKS5_~_Impl_ZN4sigc5slot1IbP12_GdkEventAnyEaSERKS3_vscanf_S_eofbittmpfile_M_copy_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_iputwchar_ZN4Glib7ustring9push_backEc_ZN4Glib7ustring9push_backEj_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZNK4Glib7ustring9uppercaseEvpointer_functor1~slot1_ZNK4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEdeEvwctype_tbound_mem_functor0_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4sizeEv_ZNK4Glib7ustring8casefoldEv_ZNSt8ios_base7unitbufEinvoke_ZNK4sigc12mem_functor0Iv10MainWidgetEclEPS1__ZNSt15_List_node_base7reverseEvqsortfilename_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKc_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_16pointer_functor1IP12_GdkEventAnyiEEE5valueE_S_copy_charsRadioMenuItem_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6uniqueEvgint_GSourceFuncsPango_ZN4Glib6RefPtrIN3Gtk8MenuItemEEaSERKS3_slot0 >connect_notify__ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5__ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE10deallocateEPS5_mlong double_M_fill_assigng_utf8_skip_ZNSt6locale8messagesEmon_decimal_point_S_beg_ZNSt6locale3allE_ZNKSs4findEPKcmm_ZNSt8ios_base4leftEdenorm_present_ZNK4Glib7ustring6lengthEv~slot_baselimit_reference_GObjectthread_self_ZNK4Glib7ustring7compareEmmPKc~StockMenuElem_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5eraseES8_._27call_it_M_capacityGDK_EXPOSE_ZN4Glib6RefPtrIN3Gtk8MenuItemEE5clearEvTable_Helpers_ZN4sigc8internal17with_type_pointerILb0ENS_16pointer_functor1IP12_GdkEventAnyiEENS0_20limit_derived_targetIPNS_9trackableENS0_14slot_do_unbindEEEE8execute_ERKS5_RKSA__Exit_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6insertESt14_List_iteratorIS2_EmRKS2__ZNK4sigc18bound_mem_functor0Iv10MainWidgetEclEvslot0bsearchhead_vprintf_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE9pop_frontEv._89gunicharslotclosure_marshalcallback_list_typed_rep._90_ZNKSs8capacityEvthread_exit_ZN3Gtk16RadioButtonGroup3addERNS_15RadioToolButtonE_S_id_time_ZNSt6locale21_S_normalize_categoryEi_ZNK4sigc15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEclEv~SignalProxyNormalvisit_each, MainWidget, true>_ZNSspLERKSs_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE8max_sizeEvtm_zonedenorm_indeterminatenew_allocatorNORMALIZE_ALL_ZN4Glib7ustring6assignEPKc_ZN4Glib17SignalProxyNormal19slot0_void_callbackEP8_GObjectPv_ZNKSs4sizeEvreg_save_area_ZNSs6insertEmPKcm_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_RKS0__ZNSt10ctype_base5spaceE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6insertESt14_List_iteratorIS2_ERKS2__ZNK4sigc16pointer_functor0IvEclEvparent_instance_ZNSs6appendEmc_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6rbeginEv_ZNK4Glib7ustring4findEPKcmm_ZNK4Glib6RefPtrIN3Gtk8MenuItemEEneERKS3_tmpnam__in_chrgGDestroyNotifyswap_A_func_ZNK4Glib7ustring17find_first_not_ofEcm__invalid_size_argument_for_IOC_vtable_offset_ZNK3Gtk8AccelKey7is_nullEv_S_id_collate_ZN4Glib7ustring6rbeginEv_ZNKSs12find_last_ofERKSsmtv_sec_Z10destroy_cbvvfscanfstrerrorSCALE_XX_SMALLGDK_SELECTION_NOTIFYvisited__normal_iterator_ZN4sigc19is_base_and_derivedINS_9trackableENS_16pointer_functor1IP12_GdkEventAnyiEEE5valueEreserved1reserved2_ZNKSs11_M_disjunctEPKcGDK_DRAG_STATUSlocaltimeslot0_void_callback~connectionwith_type_pointer,sigc::internal::limit_derived_target >_ZNSt10ctype_base5digitE_ZNK4Glib7ustring17find_first_not_ofEjmadaptor_functor >_S_basefield_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4rendEvtm_isdst_M_put_nodeoptarg_ZNKSs13find_first_ofEPKcmm_ZNK3Gtk7StockID5equalERKS0___time_t_ZNSt8ios_base3curE_ZNK4Glib7ustring8capacityEv_ZNK4Glib7ustring8is_asciiEvGDK_PROXIMITY_OUTwcscoll_ZN9__gnu_cxx3divExxdisconnect_ZNSs7replaceEmmRKSs_ZNSs3endEvatollasctime~_List_base_shortbuf_ZN4sigc8internal17with_type_pointerILb1ENS_9trackableENS0_20limit_derived_targetIPS2_NS0_14slot_do_unbindEEEE8execute_ERKS2_RKS6_functor__ZNKSs6rbeginEv_ZNSsaSEcpositive_signrfindRadioToolButton_S_badbitG_THREAD_PRIORITY_LOW_ZNSt6locale13_S_categoriesEdup_thread_createref_count_ZNSt10ctype_base5graphEcond_signal_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE14_M_fill_insertESt14_List_iteratorIS2_EmRKS2_wctrans_t_GData_ZN4sigc8internal8slot_rep7destroyEv_IO_save_endGDK_DROP_STARTGDK_MAP_ZNSt14numeric_limitsIfE13has_quiet_NaNE_ZN4sigc9slot_baseaSERKS0__ZN4Glib7ustring6appendEPKc_ZNK4Glib7ustring17find_first_not_ofEPKcm_M_grabtm_minset_slotGDK_SELECTION_REQUEST_S_normalize_category__normal_iterator, std::allocator > >_ZN3Gtk6manageINS_7MenuBarEEEPT_S3__ZNSs4_Rep9_S_createEmmRKSaIcE_ZNKSs5beginEvcond_new_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4sizeEvslot >fgetws_ZNK4sigc9slot_base30remove_destroy_notify_callbackEPvstdoutcurrency_symbol_ZNKSs7compareEmmPKcm_ZNK4Glib7ustring5bytesEvnone_ZNK9__gnu_cxx17__normal_iteratorIPcSsEplERKl_ZN4Glib17SignalProxyNormal15connect_notify_ERKN4sigc9slot_baseEb_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idEmon_groupingtm_mon_ZNSt14numeric_limitsIfE12has_infinityEpthread_once_t_ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE3dupEPv_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1_invoked_ZNKSs5rfindEcmGThreadFuncfseekfloat_denorm_stylesystempointer_functor0with_type_pointer >mutex_locktm_mday_ZN4Glib7ustringaSEc_ZN4Glib7ustringaSEj_ZNSt6locale7classicEvgroup_ferror_ZN4Glib7ustring6resizeEmc_ZN4Glib7ustring6resizeEmj_ZN3Gtk12Menu_Helpers7Element9set_childEPNS_8MenuItemEwcsrtombs_ZN4sigc8internal10slot_call1INS_16pointer_functor1IP12_GdkEventAnyiEEbS4_E7call_itEPNS0_8slot_repERKS4_act_option_M_replace_auxxdigit_ZNKSsixEmg_type_instance_ZN4sigc19is_base_and_derivedINS_9trackableES1_E5valueEQUITwmemchrGSourceFunc_ZN3Gtk16RadioButtonGroup3addERNS_13RadioMenuItemE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE7reverseEv_ZN4sigc9trackable16notify_callbacksEvg_type_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4sortEv_ZNSs4_Rep11_S_max_sizeE._88wmemcmpsigc_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEElimit_referencelocaleconvreverse_iterator, std::allocator > > > >appname_List_implstrxfrm_IO_lock_t_ZN3Gtk16RadioButtonGroup3addERNS_11RadioButtonElimit_derived_targetload_config_ZNSt6locale5_Impl16_M_add_referenceEv_ZNK4sigc5slot1IbP12_GdkEventAnyEclERKS2__ZN4Glib7ustring6appendERKS0_mm_ZNK4Glib7ustring3endEvList_ConstIterator >_ZN3Gtk5Stock5ABOUTE__clock_t_M_length_ZNK4sigc9trackable27add_destroy_notify_callbackEPvPFS1_S1_Elldiv_ZNSs6appendEPKcm_M_ibegin_ZNK4Glib7ustring16find_last_not_ofEcm_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE3endEv_ZNK4Glib7ustring9lowercaseEv~trackableCairoSCALE_X_LARGEfinalize_ZNK4Glib7ustring8validateEv_A_obj_S_in_ZNK3Gtk8AccelKey7get_modEvNORMALIZE_ALL_COMPOSE_ZNSs15_M_replace_safeEmmPKcm__countprivate_new_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1_operator+=after_S_cur_ZNK4Glib7ustring16find_last_not_ofEjm_ZNKSs5rfindERKSsm_ZNK4Glib7ustring12find_last_ofEPKcmmslot_do_unbindwcsrchr_ZNSt8ios_base3decEObjectBasesource_funcs_ZN4sigc8internal17with_type_pointerILb0ENS_16pointer_functor1IP12_GdkEventAnyiEENS0_20limit_derived_targetIPNS_9trackableENS0_12slot_do_bindEEEE8execute_ERKS5_RKSA__ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4backEv_ZNK9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE7addressERS3__S_id_ctypeList_Cpp_Iterator_ZNSt8ios_base9uppercaseE_M_get_Tp_allocatorvisit_each, void, MainWidget>with_type_pointer,sigc::internal::limit_derived_target >action__ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2_slot_call0,void>mblengraph_List_iteratorfloat_ZNSt10ctype_base5alphaE_ZN4Glib17SignalProxyNormalaSERKS0__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EEllabs_ZNK9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE7addressERKS3__GErrorthis_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1_get_stringlist >flagget_c_strvisit_each, sigc::bound_mem_functor0 >fflush_ZNSs7_M_moveEPcPKcmint_p_sep_by_space_ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEclEvwcstoldwcstoll_S_empty_rep_storage_ZNK4Glib7ustring13find_first_ofERKS0_m_ZNSt6locale5facet9_S_c_nameEkey__Ios_Fmtflags_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE9pop_frontEvfind_last_of_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE10push_frontERKS2_ABOUT_ZNK4sigc15limit_referenceI10MainWidgetLb1EE5visitEv_ZNKSs8max_sizeEv_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEEixEm_ZN4Glib17SignalProxyNormal13emission_stopEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN4sigc8internal8slot_rep6notifyEPv_ZNSt8ios_base5fixedEdata_size_t_ZNK4sigc9slot_base7blockedEv_ZN4sigc8internal8slot_rep10set_parentEPvPFS2_S2_E_ZNKSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE19_M_get_Tp_allocatorEv_ZNSs13_S_copy_charsEPcS_S__M_is_leaked_ZNKSs4dataEv_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEc_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEj_M_is_sharedprivate_getpush_backmenu_options_M_leak_hardwcstoulclearerr_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6__ZNSt8ios_base9basefieldE~HelperListungetc_IO_read_end_ZNK9__gnu_cxx17__normal_iteratorIPcSsEptEvconnected_S_failbit_ZN4Glib7ustring6insertEmmc_ZN4Glib7ustring6insertEmmj_M_set_leaked_ZN4Glib7ustring5eraseEvustring_Iteratorvisit_each, sigc::pointer_functor1 >_S_showpointadd_callback_ZNSt8ios_base8showbaseEempty_ZNK3Gtk8AccelKey7get_keyEvslot1 >_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE9constructEPS3_RKS3_slot_call1,bool,_GdkEventAny*>clock_ZNK4sigc10connection7blockedEv_M_leakunblock_IO_write_end_S_default_patternmutex_new_ZNK4sigc9slot_basecvbEvuniqueint_p_sign_posn_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1_casefold_ZNK4sigc10connection5emptyEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0_call___ZN4Glib7ustring7reserveEm_ZNSs5beginEvnpos_ZNSt6locale9_S_globalEfind_first_not_of_ZNKSt6locale2id5_M_idEv_ZNKSs6lengthEv_ZN3Gtk8AccelKeyaSERKS0_connect_notify_M_clear_ZNK4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEptEvmbrtowc_ZNSt6locale7collateE_ZNK4Glib7ustring11collate_keyEv_ZNK4Glib7ustring8max_sizeEv_ZNK4Glib7ustring4rendEvGTypewith_type_pointer,sigc::internal::limit_derived_target >_ZNK4sigc15limit_referenceI10MainWidgetLb1EE6invokeEv_M_data_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE8pop_backEv_ZNK4Glib6RefPtrIN3Gtk8MenuItemEEeqERKS3_g_class_S_facet_categoriesNORMALIZE_DEFAULT_COMPOSE_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5beginEv_ZNSs5clearEv_ZNSt8ios_base2inEvswprintf~RadioMenuElem_ZNSt10ctype_base5printE_M_create_node_ZN4sigc10connection8set_slotEPNS_9slot_baseE_ZNK4Glib7ustring13find_first_ofEPKcmGDK_3BUTTON_PRESS_ZN3Gtk12Menu_Helpers8MenuList9push_backERKNS0_7ElementEpop_frontm_widcond_waitreverse_iterator >_ZNK9__gnu_cxx17__normal_iteratorIPcSsE4baseEv_ZNSt6locale5_Impl11_S_id_ctypeE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6spliceESt14_List_iteratorIS2_ERS4_cond_broadcast_ZNKSs5emptyEv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6spliceESt14_List_iteratorIS2_ERS4_S6__ZNSsaSEPKc~ustring_S_rightfeof_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE7gparentEvhas_arg_ZNKSs16find_last_not_ofERKSsm._117_ZNK4sigc5slot0IvEclEv_ZN3Gtk16RadioButtonGroup3addERKN4Glib6RefPtrINS_11RadioActionEEEfgetwc_S_dec_ZNSs6appendEPKcg_thread_functions_for_glib_useptr_fun_ZN9__gnu_cxx13new_allocatorIcE7destroyEPc_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE6rbeginEvungetwc_ZNK4Glib6RefPtrIN3Gtk8MenuItemEEcvbEv_S_skipws_ZNKSs15_M_check_lengthEmmPKcget_key_Z11setRecInputv_ZNKSs6substrEmm_ZNKSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE13get_allocatorEv_M_repvisit_ZN4Glib7ustring6assignEmc_ZN4Glib7ustring6assignEmj_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7addressEv~locale_ZNSt6locale2id11_S_refcountE_ZNSt8ios_base3outE_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEiwith_type_pointer >_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEvstdinlconv_S_id_messages_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EEGDK_FOCUS_CHANGE_M_replace_facetint_p_cs_precedes_ZNSs9push_backEcget_pathend_connect_impl__ZNK4Glib7ustring13find_first_ofEcmGDK_CLIENT_EVENTGDK_NO_EXPOSE_ZNK4Glib7ustringixEm_ZN4Glib7ustringpLERKS0__ZNSs6insertEmPKc_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE10deallocateEPS3_mSCALE_X_SMALL_ZN3Gtk12Menu_Helpers7Element13set_accel_keyERKNS_8AccelKeyE_ZNSt6locale4timeEnegative_sign_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE3endEv_ZNK4Glib7ustring5rfindERKS0_mslot >is_ascii_ZNKSs5c_strEv~allocatorsetvbuf_ZNK4sigc9slot_base10set_parentEPvPFS1_S1_E_ZNK4Glib7ustring13find_first_ofEjmint_n_sign_posn_ZN4sigc8internal10slot_call0INS_16pointer_functor0IvEEvE7call_itEPNS0_8slot_repE_A_action_ZNSt10ctype_base6xdigitEsetlocaleinfo__ZNK4Glib7ustring12find_last_ofEPKcmMain_A_typenotify_callbackshas_quiet_NaN_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE_ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE7destroyEPvcntrl_ZN4sigc9slot_base5blockEbRefPtr_ZNK4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEneERKS4__ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEvoptions_adaptive_scale_ZNK4sigc15adaptor_functorINS_16pointer_functor0IvEEEclEvwmemset_ZNKSs9_M_ibeginEv_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEi_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEvrealloctm_yday_ZNK9__gnu_cxx13new_allocatorIcE7addressERc_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEi_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEv_ZNKSs4findEcm_ZNKSs4copyEPcmm_ZNSt10moneypunctIwLb1EE4intlE_ZNK4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEeqERKS4__ZN4sigc8internal10slot_call1INS_16pointer_functor1IP12_GdkEventAnyiEEbS4_E7addressEv_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcmftell_ZN9__gnu_cxx13new_allocatorIcE10deallocateEPcm_ZNK4Glib7ustring17find_first_not_ofEPKcmm_ZN4Glib7ustring3endEvargcargv_ZNSs4_Rep10_M_refdataEv_IO_backup_base_Alloc_hiderdup__slot >GDK_GRAB_BROKENlist_tuning_ZN4Glib15SignalProxyBaseaSERKS0__ZNSt10ctype_base5lowerE_ZNK4Glib7ustring2atEm_ZNSt6locale8monetaryEprocess_option_ZN4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEppEi_ZN4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEppEv_Ios_Openmodeslot__Rep_base_ZNSt10money_base18_S_default_patternE_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE8pop_backEv_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1__ZN4sigc19is_base_and_derivedINS_12functor_baseENS_16pointer_functor1IP12_GdkEventAnyiEEE5valueEstrtodstrtof_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2__RepsetRecInput_ZNK3Gtk7StockID9get_c_strEvget_childglong_ZNSs6assignEPKcvswscanf_ZNSt15_List_node_base8transferEPS_S0_qdata_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN4Glib6Source12vfunc_table_Eoptions_sampnr_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEi_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEv_ZNKSs13get_allocatorEvMarkup_ZNSt8ios_base6badbitESignalProxyBase_ZNSt6locale7numericE_ZNSt8ios_base9showpointE/home/floh/gtkguitune_ZNKSs7compareEmmPKc_ZNKSs12find_last_ofEPKcm_ZNSt10moneypunctIwLb0EE4intlEsend_event_ZNKSs17find_first_not_ofERKSsm_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EE~trackable_callback_listtm_gmtoff_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5mergeERS4_gparent__ZNKSs7compareERKSsoperator!=_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE14_M_create_nodeERKS2__M_destroy~RefPtr_ZNKSs4findEPKcm_ZNSs4_Rep15_M_set_sharableEv_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_16pointer_functor0IvEEE5valueEmbsinit_ZNSs6insertEmRKSs_IO_save_baseoptions_width_ZN4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEmmEiBox_Helpers_S_refcountmenu_scale_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1_contextoperator()_S_adjustfield_ZNK4Glib7ustring5beginEv_ZNSt17moneypunct_bynameIwLb1EE4intlE_ZNKSs12find_last_ofEPKcmmfunc_ptr__ZNSt15_List_node_base6unhookEvblockedoperator++_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5glistEv_ZN4Glib7ustring7replaceEmmPKcfwidemanage~slotHelperList >normalize_ZNK4Glib7ustring16find_last_not_ofEPKcmmoperator--operator-=operator->_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6resizeEmS2__ZNKSs4_Rep12_M_is_leakedEvatofatoiatol_ZN4sigc10connection6notifyEPv_ZNK4Glib7ustring9normalizeENS_13NormalizeModeE_List_node_base_ZNKSs13find_first_ofEcm_GTypeInstance_ZNK4Glib7ustring5emptyEv__wchb_M_indexVBox_M_add_reference_ZNSs4_Rep10_M_disposeERKSaIcE_ZN4sigc8internal8slot_rep10disconnectEv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5clearEvint_frac_digits_M_fill_insertfclosedenorm_absentexecute__S_ios_openmode_end._281mem_fun_ZN4sigc8internal23trackable_callback_list15remove_callbackEPv_ZNK4Glib7ustring4findEcmlist_file_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE9constructEPS5_RKS5_visit_each, sigc::trackable>rendGDK_DELETE_ZNSs4rendEvmutex_free_Z10print_helpP6optionPKcP8_IO_FILE._282._283GNU C++ 4.1.2 (Ubuntu 4.1.2-0ubuntu4)_ZNK4Glib7ustring4sizeEvrep__ZNSt8ios_base6eofbitEGDK_CONFIGUREoperator==source_id_M_replace_categorywcsncat_filenoreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZN3Gtk16RadioButtonGroupaSERKS0_splice__delta_ZNSs4swapERSs_A_functor_ZNK4Glib7ustring7compareEPKcquot_ZNK4Glib7ustring4findEjm_S_end_M_disjunct_ZNSt8ios_base5rightE_ZNKSs7compareEmmRKSs_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E_ZNSs6insertEmRKSsmm_ZNSs6insertEmmc_ZN9__gnu_cxx3absEx_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE8allocateEmPKv_ZNKSs2atEmint_n_cs_precedespoll_fds_ZNSt14numeric_limitsIdE10has_denormE_GdkDrawable_ZNSs6resizeEm_ZNSt6locale5_Impl13_S_id_collateESCALE_XX_LARGE_ZN3Gtk12Menu_Helpers8MenuList10push_frontERKNS0_7ElementE_ZNKSs7_M_iendEvwctomb_M_check_ZNSt14numeric_limitsIdE13has_quiet_NaNENORMALIZE_NFD_ZNSt6locale5_Impl19_M_remove_referenceEv_ZNK4sigc9slot_base27add_destroy_notify_callbackEPvPFS1_S1_Ewcsncmpcond_free_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEdeEv_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE13get_allocatorEv_S_ios_iostate_endfind_last_not_oftm_year_ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE7destroyEPvmoney_basegetwcharwcsncpy_GSList__valuedata_to_slotstring__ZNSs4_Rep11_S_terminalE_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5emptyEv_ZN4Glib12SignalProxy1IbP12_GdkEventAnyE14connect_notifyERKN4sigc4slotIvS2_NS4_3nilES6_S6_S6_S6_S6_EEb_ZNKSs3endEvmenu_help_ZNKSs4findERKSsmvisit_each_type > >gp_offsetmon_thousands_sepremove_callbackslot_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE3endEv_ZNK9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE8max_sizeEvset_accel_key_ZNK4Glib7ustring7compareERKS0__ZNSs2atEm_M_insertprint_ZNSt8ios_base9boolalphaE_ZNSs6resizeEmc_ZN4sigc10connection10disconnectEv_ZN4Glib7ustringaSERKS0_GDK_KEY_PRESS_M_eraseguint_ZN4Glib7ustring6assignERKS0_mm_S_floatfield_ZN9__gnu_cxx17__normal_iteratorIPcSsEmIERKl_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeEpos__S_goodbit_S_categories_M_replace_categories_ZN4sigc19is_base_and_derivedINS_9trackableENS_16pointer_functor0IvEEE5valueE__state_ZNSs4_Rep7_M_grabERKSaIcES2_g_threads_got_initializedvwscanf_S_truncreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >visit_each_type > >_sbufoperator[]_ZN4Glib7ustring6insertEmPKcalnumNORMALIZE_NFKCNORMALIZE_NFKD_ZNKSs17find_first_not_ofEPKcmm_ZNSs6appendERKSs_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKT0__ZN4Glib7ustringaSEPKcwcscatputchar_ZN4Glib7ustring7replaceEmmPKcm_ZNK4Glib7ustring17find_first_not_ofERKS0_m_M_refcount_ZN4Glib7ustring7replaceEmmmc_ZN4Glib7ustring7replaceEmmmjremove_ZN4Glib7ustring6assignEPKcmvisit_each, sigc::trackable>strftimedeallocate_ZNKSs17find_first_not_ofEPKcm_M_current_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE_S_uppercase_S_ate_old_offset_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE9push_backERKS2_Glibwcschr_M_coalescevfwprintf_ZN3Gtk16RadioButtonGroupnwEmsrand_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc_M_refcopy_S_empty_rep_List_const_iteratorvsnprintf_S_global_S_atoms_out_ZNK4Glib7ustring4findERKS0_m_ZNKSt6localeeqERKS_wcscmp~StockIDadaptor_baseadaptor_functor >_ZNK4Glib7ustring6rbeginEvwcscpy_ZNSs6rbeginEvclearing__ZN4Glib7ustring7replaceEmmRKS0_comparebegin__ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE11_M_get_nodeEv_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE7gparentEv_S_max_size_ZNK4Glib7ustring3rawEv_ZNK4Glib7ustring13find_first_ofEPKcmm_ZNKSs12find_last_ofEcm_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE6begin_Ev_GPrivatepointer_functor0_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4backEvGDK_DESTROY_ZNK4Glib7ustring4dataEv_ZNK4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPKcSsEEEEreverse_iterator >mutex_unlock_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4rendEv_ZNSt10__num_base12_S_atoms_outEtyped_slot_rep >_ZNSt8ios_base10scientificE_ZN4sigc19is_base_and_derivedINS_12functor_baseENS_16pointer_functor0IvEEE5valueE_ZN4Glib7ustring6insertEmPKcm_M_get_noderewind_ZNKSs8_M_checkEmPKcoperator() >_ZNSs7reserveEm_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE11_M_transferESt14_List_iteratorIS2_ES6_S6_long long unsigned intgparentMenu_Helpers_ZNSt6locale4noneE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEES3_EEvRKT_RKT0__unused2__compar_fn_t_M_id_GMutexlimited_action_ZNSt6locale5_Impl13_S_id_numericEGDK_SELECTION_CLEAR_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6removeERKS2__ZN4Glib6RefPtrIN3Gtk8MenuItemEE4swapERS3_merge_ZN4sigc8internal10slot_call0INS_16pointer_functor0IvEEvE7addressEv_ZN4Glib7ustring5clearEv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE14_M_fill_assignEmRKS2__ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5frontEv_ZNSt8ios_base7goodbitE_ZNSt6locale5_Impl10_S_id_timeE_ZNSt17moneypunct_bynameIwLb0EE4intlE_ZN4Glib7ustring5beginEv_Atomic_word_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_18bound_mem_functor0Iv10MainWidgetEEE5valueEwchar_t_ZN4Glib7ustring6assignERKS0_get_modGDK_DRAG_ENTER_ZNSt6locale5_Impl19_S_facet_categoriesE_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE7destroyEPv_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEEaSERKS9_with_type_pointer,sigc::internal::limit_derived_target >_S_ios_fmtflags_end_ZN4Glib12SignalProxy1IbP12_GdkEventAnyE7connectERKN4sigc4slotIbS2_NS4_3nilES6_S6_S6_S6_S6_EEb_ZN4Glib7ustringpLEjintl_M_dataplusvisit_each_type > >_S_c_name_List_base >slot_call0,void>RefPtrwcslen_ZN4Glib7ustring6insertEmRKS0_mm~typed_slot_rep_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5clearEvreversethread_yieldGDK_DRAG_LEAVE_ZNSs6assignEmcreplacetowctranswmemmove_ZNSs12_S_empty_repEvgetchartv_usec_ZNSspLEPKc_ZN4sigc8internal17with_type_pointerILb0ENS_16pointer_functor0IvEENS0_20limit_derived_targetIPNS_9trackableENS0_12slot_do_bindEEEE8execute_ERKS3_RKS8_casefold_collate_key_ZNKSt6localeneERKS_getenv_ZNSs4_Rep26_M_set_length_and_sharableEmsubstr_S_showpos_ZNK4Glib7ustring20casefold_collate_keyEv_ZNSs5eraseEmmhead_ZN4sigc10connectionaSERKS0_node_MenuListatexitList_ConstIterator > >func_destroy_notifymanagevisit_each, void, MainWidget>_ZNKSs7compareEPKcsetbuf_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE6rbeginEv_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE8allocateEmPKvvbox_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmc_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmjpath_a_repremove_destroy_notify_callback_ZNK4Glib7ustring7compareEmmRKS0_mmself__ZSt7nothrow_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE9_M_insertESt14_List_iteratorIS2_ERKS2__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKT0__ZNKSs8_M_limitEmmgulong_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE3endEv_ZNSt8ios_base8internalE_ZNSs4_Rep12_S_empty_repEvmixer_fd_ZNSt6locale18_S_initialize_onceEv_ZNSt10ctype_base5alnumE_ZNSsixEm_ZNSs7_M_dataEPcSCALE_LARGE_ZNK4Glib6RefPtrIN3Gtk8MenuItemEEptEv_ZNSt10ctype_base5punctEpCppObject__ZNK3Gtk8AccelKey8get_pathEvwcscspn_ZN4Glib7ustring4nposE_ZN4sigc10connection7unblockEvModifierTypereservestrtoldstrtoll_ZNK9__gnu_cxx13new_allocatorIcE7addressERKcfpos_t_GTypeClass_M_check_lengthList_ReverseIterator >domain__off_t_ZNKSs7_M_dataEvtrackable_callback_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mcgpointerList_Cpp_Iterator<_GtkMenuItem,Gtk::MenuItem>_M_clonevsscanf_S_id_numericwctob_ZN3Gtk7StockIDaSERKS0_nothrow_tfind_first_of_M_next_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5frontEvoperator std::string_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5beginEvlong_optionsRadioButtonGroup_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE3dupEPv_ZN4sigc8internal17with_type_pointerILb1ENS_9trackableENS0_20limit_derived_targetIPS2_NS0_12slot_do_bindEEEE8execute_ERKS2_RKS6__S_onceconfc_flags2_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mjstrtoulG_THREAD_PRIORITY_HIGH_M_pmbtowc_S_internal__wchptrdiff_t_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE8max_sizeEvis_null_GList~SeparatorElem_ZNSt6locale5_Impl14_S_id_monetaryE_M_set_sharable_ZNKSs16find_last_not_ofEPKcm_ZNSt6locale6globalERKS__ZNK4Glib7ustring7compareEmmRKS0_Menuguint16_S_construct_patternslotguint32allstrmutex_trylockcleanup__M_check_same_name_ZN4sigc9slot_base7unblockEv_ZNSt8ios_base3octElist_input_rec_ZN4sigc9trackableaSERKS0__ZNSs4_Rep10_M_destroyERKSaIcEstrcoll_ZNSs7_M_copyEPcPKcm_ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE3dupEPv_Z19set_option_defaultsv_ZNK3Gtk12Menu_Helpers7Element9get_childEv_ZN4Glib7ustring7replaceEmmRKS0_mm_M_limit_S_boolalpha_ZN4Glib7ustringaSERKSs_ZNK4sigc16pointer_functor1IP12_GdkEventAnyiEclERKS2__Z14process_optioni_S_unitbuf_ZNKSs13find_first_ofERKSsm_ZNSs9_M_mutateEmmmfp_offset_S_initializemktime_ZN4Glib7ustring6appendEmjSignalProxyInfowcspbrk_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4backEvthread_equal_ZNSs6appendERKSsmmoptions_sampfreq_M_replace_safeoperator()_ZNKSs6_M_repEvG_THREAD_PRIORITY_URGENT__pfn_ZN4Glib17SignalProxyNormal8connect_ERKN4sigc9slot_baseEb_ZNSt10moneypunctIcLb0EE4intlE_List_nodegmtime_ZN4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEE_ZNK4sigc8internal12slot_do_bindclEPKNS_9trackableEgbooleanpush_front_ZNSt8ios_base11adjustfieldEprepare_M_iendthread_set_priorityfunc__ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE8_M_eraseESt14_List_iteratorIS2_Estrtoull__normal_iterator, std::allocator > >__int32_t_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4end_Evfreopen_IO_buf_endoperator() >wcsxfrm__va_list_tag_M_set_length_and_sharable_ZNSt14numeric_limitsIeE10has_denormEiswctype_ZNKSs5rfindEPKcmm_ZNSt6localeaSERKS__ZNK4sigc10connection9connectedEvStockglistwcsspnvisit_each, sigc::bound_mem_functor0 >thread_join__gthread_once_tGDK_KEY_RELEASEobj_stderr_ZNSt14numeric_limitsImE6digitsEfunctor_base_S_id_monetary_ZN4sigc10connectioncvbEv_ZNSt6locale13_S_initializeEv_ZNK4Glib7ustringcvSsEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0_~adaptor_functorappname_strputcGDK_2BUTTON_PRESScallbacks_wcsstrget_allocator_cur_columnunref_ZN9__gnu_cxx13new_allocatorIcE9constructEPcRKclist_optint_curr_symbolGDK_ENTER_NOTIFYGCallbackvwprintf_ZNSt10__num_base11_S_atoms_inE_S_binvisit_each, sigc::pointer_functor0 >_ZNSt6locale10_S_classicE_ZNK4Glib7ustring16find_last_not_ofEPKcm_ZN4sigc9slot_base10disconnectEv_ZNSt8ios_base7failbitE_IO_read_ptr_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2__ZNSs7replaceEmmPKcmvfwscanfoperator()_A_arg1tm_hour_S_fixed_ZNK4Glib7ustring5rfindEPKcmmlist_scale_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE8_M_clearEv_GSourcerename_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEES3_EEvRKT_RKT0_~slot_rep_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZNSs14_M_replace_auxEmmmc_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6spliceESt14_List_iteratorIS2_ERS4_S6_S6_G_THREAD_PRIORITY_NORMAL_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE7destroyEPS3_mbsrtowcs_ZN4sigc10connection5blockEb_ZNSs4_Rep20_S_empty_rep_storageEappend_IO_write_ptr_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4swapERS4_visit_each, sigc::pointer_functor0 >_M_install_facet_ZN9__gnu_cxx17__normal_iteratorIPcSsEpLERKlSCALE_SMALL_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm_ZNKSt6locale4nameEv_M_prevwcsftime_ZNSt6locale5ctypeEreverse_iterator, std::allocator > > > >GDK_MOTION_NOTIFYvisit_each, sigc::pointer_functor1 >_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE_ZN3Gtk6manageINS_4MenuEEEPT_S3_lower_ZNK3Gtk7StockID10get_stringEvunhook_S_terminal_ZNKSs4_Rep12_M_is_sharedEv_ZNK4Glib7ustring7compareEmmPKcmGdkWindow_ZNKSs7compareEmmRKSsmmmenubarset_childget_abbrev_Z11load_configPPPcPiS0_i_ZNSt10money_base20_S_construct_patternEccc__FILE_ZNSs7_M_leakEvbound_mem_functor0visit_each_type > >_ZNSs13_S_copy_charsEPcPKcS1__S_createclosure_callback_M_facets_size_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE_S_ios_seekdir_end_S_octfsetposGDK_BUTTON_RELEASE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EEaSERKS4_cond_timed_waitdestroy___IO_buf_base_M_refdata_ZNSs4_Rep8_M_cloneERKSaIcEmmessage_ZNK4Glib7ustring4findEPKcm_ZNKSs17find_first_not_ofEcm_ZNK4Glib7ustring5c_strEvoption_index_ZNSs9_M_assignEPcmc_ZNSt14numeric_limitsIeE13has_quiet_NaNE_ZNSs7replaceEmmRKSsmmhas_denorm_ZN4Glib15SignalProxyBase12data_to_slotEPv_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4rendEv_ZNSt10moneypunctIcLb1EE4intlE_M_install_cache_ZN4sigc19is_base_and_derivedINS_12functor_baseENS_18bound_mem_functor0Iv10MainWidgetEEE5valueERadioButton_ZN4sigc5slot0IvEaSERKS1_manageGDK_DRAG_MOTIONustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >slot_do_bind_ZNKSs16find_last_not_ofEPKcmm_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiERKloperator bool_M_imploptions_heightGDK_BUTTON_PRESS_ZNSt6locale5_ImplaSERKS0_glibmm_null_pointerNormalizeMode_S_atoms_in_ZNSt8ios_base3hexENORMALIZE_NFC_ZNK4Glib7ustring5rfindEcm~SignalProxy1slot1dispatchmenu_tuning_S_showbasecall_GDK_SCROLL_ZNSsaSERKSs_GCondrecmaskoperator new_ZN3Gtk6manageINS_4VBoxEEEPT_S3_visit_each_type > >_ZNSbIwSt11char_traitsIwESaIwEE4nposE_ZNSt10ctype_base5cntrlE_ZN4Glib7ustring4swapERS0_ustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZNSt15_List_node_base4swapERS_S0__ZNKSs5rfindEPKcm_S_out_ZNSt6locale5_Impl18_M_check_same_nameEvfgetpostyped_slot_rep >_ZNSs12_M_leak_hardEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZNSt8ios_base10floatfieldE~basic_stringwint_tList_Iterator_BaseGDK_LEAVE_NOTIFY_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE7_M_initEv_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcGDK_VISIBILITY_NOTIFY_S_hex_M_movevisit_each_type > >_ZNK4sigc9trackable30remove_destroy_notify_callbackEPvGDK_PROPERTY_NOTIFYcallback_dataslot0 >__pad1__pad2__pad3__pad4__pad5__off64_t_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5eraseESt14_List_iteratorIS2_E_ZNSs4_Rep13_M_set_leakedEv_ZNSs7replaceEmmPKcmbrlen~slot0_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKv_GMainContextadaptor_functor >wmemcpy__gnu_cxx_ZNK4Glib7ustring6substrEmm_A_a1~MenuElemadd_destroy_notify_callback_ZNK4sigc9trackable13callback_listEv_IO_marker_ZN4Glib7ustringpLEPKcwcstombs_IO_read_base_ZNSt14numeric_limitsIdE12has_infinityE_M_nameslist_help__gnu_debug_ZN4Glib7ustring6appendEPKcm_ZNSt6locale11_M_coalesceERKS_S1_i_ZN3Gtk5Stock4QUITE_ZNSs6assignEPKcmgint8_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5emptyEvwcstodwcstofwcstokwcstollong long intlowercaselimit_derived_target_ZNKSs16find_last_not_ofEcmprivate_set_ZN4Glib17SignalProxyNormal13connect_impl_EPFvvERKN4sigc9slot_baseEb_ZNK4Glib7ustring5rfindEPKcm_IO_write_basepointer_functor1<_GdkEventAny*,int>GQuark_ZNK9__gnu_cxx17__normal_iteratorIPcSsEixERKlGSourceDummyMarshal_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE8max_sizeEv~Elementprint_help_S_classic_ZN4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEmmEv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5eraseESt14_List_iteratorIS2_ES6__ZNSs6assignERKSs_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6assignEmRKS2__ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5beginEv_ZNK4sigc9slot_base5emptyEv_ZN4sigc19is_base_and_derivedINS_9trackableE10MainWidgetE5valueE_S_left_M_transfer__posnew_allocator_markers_ZN4Glib19glibmm_null_pointerE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6rbeginEvnew_allocator >Container_Helpershas_infinity_GTimeValwcrtombGDK_SETTING_ZNSspLEc_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4_fopenGDK_OWNER_CHANGE_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4_overflow_arg_area_ZNSt17moneypunct_bynameIcLb0EE4intlE_ZNSt10ctype_base5upperEmenu_fileMenuBar_ZNK4Glib7ustring4copyEPcmm_ZNSt6locale5_Impl14_S_id_messagesEsetTriggerKAMMERTONsample_s16levisit_each_type > >_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE3dupEPvEXPANDoszi_ZN10MainWidget8showOsziEv_ZNK4sigc12mem_functor1Ib10MainWidgetN4Glib11IOConditionEEclEPS1_RKS3__ZN10MainWidget10proc_audioEN4Glib11IOConditionEoszi_heightshowOsziIO_NVALblksizea_speed_ZN10MainWidget10setScaleGEEvi_pCBAdaptsampfreq_exactsetTriggerVal_ZNK4sigc15limit_referenceI8OsziViewLb1EE5visitEv_ZN10MainWidget10setTriggerEvvisit_each, void, OsziView>typed_slot_rep >_ZN10MainWidget13setTuningNormEv_ZN10MainWidget11setAdaptiveEvbound_mem_functor1get_freqnfreqviewproc_audioshowLogView._20setSampNrValvisit_each, OsziView, true>KAMMERTON_LOGslot >_ZN10MainWidget13setTuningWienEvCheckButtonbound_mem_functor1AttachOptions_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv8OsziViewEEvE7addressEvslot_ZN10MainWidget10init_audioEvlfreq_0t_ZNK4sigc18bound_mem_functor0Iv8OsziViewEclEvvisit_each, bool, MainWidget, Glib::IOCondition>a_stereo_ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEclEv_ZN10MainWidget11hideLogViewEvvisit_each, void, OsziView>_ZN4sigc5slot1IbN4Glib11IOConditionEEaSERKS3__ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE7destroyEPvadaptor_functor >setSampFreqsetSampNr_ZN3Gtk6manageINS_10SpinButtonEEEPT_S3_visit_each, OsziView, true>_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEvRKT_RKNS_15adaptor_functorIT0_EEsetAdaptiveValmldfadaptive_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEvRKT_RKNS_15adaptor_functorIT0_EEvisit_each, sigc::bound_mem_functor0 >setScaleUS_ZNK4sigc18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEclERKS3_slot1 >_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv8OsziViewEEE7destroyEPvgetTriggervisit_each, sigc::bound_mem_functor1 >_ZNK4sigc12mem_functor0Iv8OsziViewEclEPS1_setTuningNormFILLcond_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv8OsziViewEEvE7call_itEPNS0_8slot_repEFramegot_bytesoperator()_ZNK4sigc15limit_referenceI8OsziViewLb1EE6invokeEvadaptor_functor >slot_call1,bool,Glib::IOCondition>Label_ZN3Gtk6manageINS_5LabelEEEPT_S3__ZN10MainWidget13setTriggerValEdi_pAdjSFi_pAdjSNlfreqs_ZN10MainWidget13setTuningEquiEvIO_OUT_ZN4Glib12SignalProxy0IvE14connect_notifyERKN4sigc4slotIvNS2_3nilES4_S4_S4_S4_S4_S4_EEb__vtt_parm_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE8OsziViewLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEEhideLogViewsetScaleGESignalProxy0visit_each_type > >_ZN4sigc19is_base_and_derivedINS_9trackableE8OsziViewE5valueE_ZN4sigc19is_base_and_derivedINS_12functor_baseENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE5valueEsetScaleUSAltsetTuningWien_ZNK4sigc5slot1IbN4Glib11IOConditionEEclERKS2__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv8OsziViewEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EEmanage_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE8OsziViewLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN10MainWidget10getTriggerEvtrigposIO_HUPsetDSPNameIO_INcapstrig2setAdaptivei_sampfmtvisit_each_type > >_ZN10MainWidget13setScaleGEAltEv_ZN10MainWidget13setTuningPhysEvAdjustmentlogview_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEb10MainWidgetN4Glib11IOConditionEEEvRKT_RKNS_18bound_mem_functor1IT0_T1_T2_EE_ZN4sigc19is_base_and_derivedINS_12functor_baseENS_18bound_mem_functor0Iv8OsziViewEEE5valueE_ZNK4sigc12mem_functor1Ib10MainWidgetN4Glib11IOConditionEEclERS1_RKS3_uninit_audioslot1_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE5valueE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEEEvRKT0_RKT1_hideOszi~MainWidget_ZN10MainWidget11showLogViewEv_ZN10MainWidget14setSampFreqValEimanage._17._18._19._21._22audio_fd_ZN10MainWidget11setSampFreqEv._91_ZNK4sigc15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEclEvvisit_each_type > >audio_connection_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEEEvRKT0_RKT1_guitune.cc_ZN10MainWidget12setSampNrValEitrig1setTuningEquinote_htslot0 >_ZN3Gtk6manageINS_5TableEEEPT_S3_IO_ERR_ZNK4sigc12mem_functor0Iv8OsziViewEclERS1_managesetSampFreqValIO_PRI_ZN3Gtk6manageINS_11CheckButtonEEEPT_S3_bound_mem_functor0typed_slot_rep >_ZN4sigc8internal10slot_call1INS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEbS5_E7addressEv_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv8OsziViewEEE3dupEPvsetTuningPhysvisit_each, sigc::bound_mem_functor1 >_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEEEEvRKT0_RKT1__ZN10MainWidget10setDSPNameEPKc~SignalProxy0_ZN10MainWidget14setAdaptiveValEi_ZN10MainWidget12setTuningNatEvdsp_devicenamelfreq_htnfreq_0t_ZN10MainWidget13setScaleUSAltEvactiveSpinButton_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEEEEvRKT0_RKT1_setScaleGEAlt_ZN4sigc8internal10slot_call1INS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEbS5_E7call_itEPNS0_8slot_repERKS5_slot_call0,void>_ZNK8OsziView8get_freqEvmanagesetTuningNatmanagevisit_each, sigc::bound_mem_functor0 >_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEb10MainWidgetN4Glib11IOConditionEEEvRKT_RKNS_18bound_mem_functor1IT0_T1_T2_EE_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_18bound_mem_functor0Iv8OsziViewEEE5valueEnote_0t_ZN4Glib12SignalProxy0IvE7connectERKN4sigc4slotIvNS2_3nilES4_S4_S4_S4_S4_S4_EEbmem_funIOConditioni_pAdjTRoperator|_ZN10MainWidget10setScaleUSEvmem_funSHRINK_ZN10MainWidget12uninit_audioEv_ZN10MainWidget9setSampNrEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv8OsziViewEEEEvRKT_RKNS_15adaptor_functorIT0_EEsample_uc_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv8OsziViewEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EEslot >got_samples_ZN10MainWidget8hideOsziEv_ZN3Gtk6manageINS_5FrameEEEPT_S3_limit_referencevisit_each, bool, MainWidget, Glib::IOCondition>_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv8OsziViewEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZNK4Glib6RefPtrIN3Gdk6WindowEEcvbEv_ZNK3Gdk5Color9get_greenEv_GdkRectangle_ZNK4Glib6RefPtrIN3Gdk8DrawableEEptEvi_rect_ZNK3Gdk9Rectangle4gobjEvget_width_ZN3Gdk5Color9set_rgb_pEddd_ZNK4Glib6RefPtrIN3Gdk6WindowEEptEv_ZN4Glib6RefPtrIN3Gdk2GCEE5clearEvget_green_ZNK4Glib6RefPtrIKN3Gdk2GCEEptEv_ZN3Gdk5Color8get_typeEvlcdview.ccset_rgb_p_ZN7LCDView10on_realizeEvinvalidate_ZN3Gdk5Color10set_grey_pEdactcode_ZNK3Gdk5Color8get_blueEvset_hslset_grey_p_ZNK4Glib6RefPtrIN3Gdk2GCEEcvbEv_ZN4Glib6RefPtrIN3Gdk6WindowEE5clearEvget_blue_pDrawingArea_ZN3Gdk5Color7set_redEtset_blue_ZN3Gdk5ColoraSERKS0__ZNK4Glib6RefPtrIN3Gdk2GCEEeqERKS3__ZN4Glib6RefPtrIN3Gdk2GCEEaSERKS3_on_expose_eventi_string_maxlen_ZNK4Glib6RefPtrIN3Gdk8ColormapEEcvbEv_ZN4Glib6RefPtrIKN3Gdk2GCEE4swapERS4__ZN3Gdk5Color14rgb_find_colorERKN4Glib6RefPtrINS_8ColormapEEEset_widthother_ZN3Gdk5Color5parseERKN4Glib7ustringEset_greenRefPtr_ZN4Glib6RefPtrIN3Gdk8ColormapEE4swapERS3__ZN3Gdk9Rectangle9set_widthERKiget_blue_ZN4Glib6RefPtrIN3Gdk8DrawableEE5clearEvi_LCD_num~Colorget_typeon_realize_ZN4Glib6RefPtrIN3Gdk6WindowEEaSERKS3__ZNK4Glib6RefPtrIN3Gdk2GCEEneERKS3__ZN3Gdk5Color8set_greyEtparse_ZN4Glib6RefPtrIN3Gdk8ColormapEE5clearEv_ZN4Glib6RefPtrIN3Gdk8ColormapEEaSERKS3__ZNK4Glib6RefPtrIN3Gdk8DrawableEEeqERKS3__ZN3Gdk5Color7set_hslEdddset_hsv_ZNK4Glib6RefPtrIN3Gdk8DrawableEEcvbEv_ZN4Glib6RefPtrIN3Gdk2GCEE4swapERS3_get_pixeli_draw_gc~LCDView_ZNK4Glib6RefPtrIN3Gdk6WindowEEeqERKS3__ZN3Gdk9Rectangle9intersectERKS0_Rb_ZNK4Glib6RefPtrIKN3Gdk2GCEEcvbEvget_height_ZN3Gdk5Color4gobjEv._207intersect_ZN4Glib6RefPtrIKN3Gdk2GCEEaSERKS4__ZNK3Gdk5Color11get_green_pEv_ZN7LCDView15on_expose_eventEP15_GdkEventExpose_GdkRegionregionget_redget_green_prgb_find_color_ZNK4Glib6RefPtrIN3Gdk6WindowEEneERKS3__ZNK3Gdk9Rectangle5get_xEv_ZN3Gdk9Rectangle4gobjEvRefPtr_ZN3Gdk9Rectangle8get_typeEv_ZN4Glib6RefPtrIKN3Gdk2GCEE5clearEvgobject_._12._13._14i_string_ZNK3Gdk5Color10get_blue_pEv_ZNK4Glib6RefPtrIN3Gdk8DrawableEEneERKS3__ZNK3Gdk5Color4gobjEv_ZN3Gdk5Color3setERKN4Glib7ustringEset_grey_ZN4Glib6RefPtrIN3Gdk6WindowEE4swapERS3_set_x_ZNK3Gdk5Color7get_redEvset_y_ZN4Glib6RefPtrIN3Gdk8DrawableEE4swapERS3__ZN3Gdk9Rectangle10set_heightERKi_ZNK3Gdk9Rectangle10get_heightEv_ZN3Gdk5Color4swapERS0_get_red_p_ZNK4Glib6RefPtrIKN3Gdk2GCEEneERKS4_RefPtr_ZNK3Gdk5Color9gobj_copyEvgobj_ZNK3Gdk9Rectangle9get_widthEv_ZN3Gdk5Color8set_blueEtgobj_copy_ZN3Gdk9Rectangle5set_yERKi_ZN7LCDView10invalidateEvset_redgushort_ZNK4Glib6RefPtrIKN3Gdk2GCEEeqERKS4_set_rgb_ZN3Gdk5Color7set_rgbEttt_ZNK3Gdk9Rectangle13has_zero_areaEv_ZNK4Glib6RefPtrIN3Gdk2GCEEptEv_ZNK4Glib6RefPtrIN3Gdk8ColormapEEneERKS3_temp_ZN3Gdk5Color7set_hsvEdddget_xget_yi_col_LED_ZNK3Gdk5Color9get_pixelEv_ZN3Gdk9Rectangle4joinERKS0_._300_ZN3Gdk9Rectangle9intersectERKS0_set_height_ZNK3Gdk5Color9get_red_pEvhas_zero_areaRefPtr_ZN3Gdk5Color9set_greenEt_ZNK3Gdk9Rectangle5get_yEv_ZN4Glib6RefPtrIN3Gdk8DrawableEEaSERKS3__ZN7LCDView3setEPKc_GdkColor_ZN3Gdk9Rectangle5set_xERKi_ZNK4Glib6RefPtrIN3Gdk8ColormapEEptEvi_col_bgRefPtri_code_ZNK4Glib6RefPtrIN3Gdk8ColormapEEeqERKS3__ZN7LogView9lfreq_posEd_ZNK4Glib6RefPtrIKN5Pango6LayoutEEcvbEvLayoutVISIBILITY_NOTIFY_MASK_ZNK5Pango9Rectangle12get_lbearingEv_ZNK5Pango9Rectangle4gobjEv_ZN5Pango9Rectangle5set_yEiBUTTON2_MOTION_MASKKEY_PRESS_MASKon_button_press_eventBUTTON1_MOTION_MASKnote_ger_altALL_EVENTS_MASKhas_cursori_GCKEY_RELEASE_MASK_ZN7LogView15on_expose_eventEP15_GdkEventExposeGDK_AXIS_Xnat_freqnat_tuning_onFOCUS_CHANGE_MASKnum_axesGDK_MOD1_MASKBUTTON_PRESS_MASK_ZN4Glib6RefPtrIN5Pango6LayoutEE5clearEvnat_lfreqGDK_AXIS_LASTgdouble_ZNK5Pango9Rectangle11get_descentEvGDK_SUPER_MASKPOINTER_MOTION_HINT_MASKBUTTON_MOTION_MASKSCROLL_MASKRefPtr_ZNK4Glib6RefPtrIKN5Pango6LayoutEEeqERKS4_GDK_MOD2_MASK_ZN4Glib6RefPtrIKN5Pango6LayoutEEaSERKS4_GDK_AXIS_PRESSUREtuning_nat_ZNK5Pango9Rectangle12get_rbearingEv_ZNK5Pango9Rectangle5equalERKS0_GDK_AXIS_IGNOREi_col_pointer_ZNK5Pango9Rectangle9get_widthEvget_lbearingGDK_BUTTON1_MASKBUTTON3_MOTION_MASKGDK_SHIFT_MASK_ZN7LogView14set_nat_tuningEb_ZNK5Pango9Rectangle10get_heightEvi_col_shad_ZNK4Glib6RefPtrIKN5Pango6LayoutEEptEv_ZN5Pango9Rectangle4gobjEv_ZN5Pango9Rectangle10set_heightEidevice_ZN7LogView10invalidateEvsetScalex_rootGDK_SOURCE_PENLEAVE_NOTIFY_MASKgrundton_ZNK5Pango9Rectangle10get_ascentEv_ZNK4Glib6RefPtrIKN5Pango6LayoutEEneERKS4_GDK_HYPER_MASKEXPOSURE_MASKGDK_MOD4_MASKnote_us_alt_ZN7LogView10draw_arrowEvGDK_MODE_SCREEN_ZN7LogView16invalidate_arrowEvbig_layout_ZN7LogView12change_lfreqEdGDK_META_MASKGDK_MOD3_MASKlfreq0lfreq1_ZN4Glib6RefPtrIKN5Pango6LayoutEE4swapERS4_keyvalinvalidate_arrowi_col_drawGDK_AXIS_XTILTGDK_CONTROL_MASK._203._205note_us._181y_rootget_rbearingget_descentpos_note_ZNK4Glib6RefPtrIN5Pango6LayoutEEcvbEv_ZNK4Glib6RefPtrIN5Pango6LayoutEEneERKS3_PROXIMITY_IN_MASKdraw_arrow_ZN7LogView21on_button_press_eventEP15_GdkEventButtonget_ascent_PangoRectangle_ZN4Glib6RefPtrIKN5Pango6LayoutEE5clearEvGDK_BUTTON2_MASKGDK_AXIS_YGDK_SOURCE_CURSOR_ZN7LogView8setScaleEi._95_ZNK5Pango9Rectangle5get_xEvGDK_MODE_WINDOWi_col_bg2_ZN5Pango9Rectangle9set_widthEiRefPtri_col_ticks_ZN7LogView8pos_noteEiGDK_SOURCE_MOUSE_GdkDeviceGDK_AXIS_YTILTGDK_SOURCE_ERASER_ZN5Pango9Rectangle5set_xEi._204logview.ccnote_gerPROXIMITY_OUT_MASK_GdkDeviceAxisGDK_BUTTON4_MASKGDK_LOCK_MASKchange_lfreqlfreq_posi_col_marksGDK_BUTTON5_MASK_ZN4Glib6RefPtrIN5Pango6LayoutEEaSERKS3__GdkDeviceKey_ZN7LogView7draw_itEvdraw_itsourceGDK_MODE_DISABLEDGDK_MOD5_MASKGDK_AXIS_WHEELSUBSTRUCTURE_MASKPROPERTY_CHANGE_MASKextents_ZN4Glib6RefPtrIN5Pango6LayoutEE4swapERS3_POINTER_MOTION_MASKnum_keysEventMask~LogViewGDK_RELEASE_MASKsmall_layoutwin_modifiersset_nat_tuning_ZNK4Glib6RefPtrIN5Pango6LayoutEEptEv_ZNK5Pango9Rectangle5get_yEvBUTTON_RELEASE_MASK_ZNK4Glib6RefPtrIN5Pango6LayoutEEeqERKS3_GDK_BUTTON3_MASKENTER_NOTIFY_MASKGDK_MODIFIER_MASKi_divisor_ZN8OsziView17invalidate_sampleEvSampFmtrecalc_ZN8OsziView13setSampleDataEPKhiguint8paint_markspaint_sampleyscri_col_zerocalc_freqnum_sampleslinexhscrsamp_byte_arraycopy_sample_datasamp_uc_ZN8OsziView15on_expose_eventEP15_GdkEventExposei_maxsamp_ZN8OsziView12paint_sampleEv_ZN8OsziView10invalidateEv_ZN8OsziView6recalcEvi_minsampinvalidate_samplecalc_minmaxgetTrigFacttrigger_asetTrigFactschmitt_triggered_ZN8OsziView11setAdaptiveEixscr_ZN8OsziView11setTrigFactEd_GByteArray_ZN8OsziView11paint_scaleEvi_col_datalineysetSampleFreqi_col_trig_ZN8OsziView9calc_freqEvpaint_scalescale_toptrigger_b_ZN8OsziView10on_realizeEvendpointsetSampleData~OsziView_ZN8OsziView16copy_sample_dataEPKviwscrsamp_s16lei_col_scaleosziview.cc_ZN8OsziView11getTrigFactEv_ZN8OsziView11calc_minmaxEv_ZN8OsziView13setSampleDataEPKsiS16_LE_ZN8OsziView11paint_marksEvstartpointi_adaptive_scaletrigfactdata_sizei_col_mark_ZN8OsziView13setSampleFreqEdythicknessabout_dialogGDK_VISUAL_PSEUDO_COLORbtree_GtkBinrc_properties_GtkTextTagTablenormal_gcs_GtkRcStyleproperty_cacheaboutbox.cmodifiedclipboard_contents_buffers_GtkContainercairo_font_options_tGdkByteOrdercopyhbox_PangoFontDescriptionGdkFontTypebyte_orderresize_modebg_gcts_x_origin_GtkTextLogAttrCacheclip_y_origin_GtkIconThemePrivatebg_pixmap_nameblue_shiftGDK_VISUAL_DIRECT_COLORprivate_font_descfocus_childtitle_textGTK_RC_BASEGdkEventTypefocus_on_click_GtkIconThemexthicknessGDK_VISUAL_GRAYSCALEanonymous_GdkFonttext_aaallocationreallocate_redrawstext_gcneed_resizeprivate_fontabout_destroy_cbselection_clipboardsstylesbg_pixmapicon_themered_maskdark_gcreliefdepress_on_activateblack_gcuser_action_count_cairo_font_optionsmid_gchashcontainerGDK_MSB_FIRSTtitlelabelbase_gcclosedcolormapwidgetcolor_flagsborder_widthdepthvisual_GtkTextBTreeGPL_textFBlogoobjectblack_GdkPixbufGtkAllocationGdkBitmapFBlogomaskresolutiontext_buf_GArrayrc_style_listsgreen_precexposure_gcsbits_per_rgbGdkPixmapGDK_FONT_FONTscreenlightrc_style_GtkStylelight_gchas_focus_chainwindowing_data_GtkWidgettag_tableabout_ok_cbGDK_FONT_FONTSET_GdkColormapcopy_textin_buttonblue_prechas_selectiondepressedts_y_origincopylabelGDK_VISUAL_TRUE_COLOR_GtkObjectclip_x_originengine_specified_GdkScreencopy_lboxGDK_LSB_FIRSTGtkRcFlagslog_attr_cachecolorsfg_gcFBlogopixattach_count_GdkGCFB_logo_xpmabout_cbtext_aa_gcGTK_RC_TEXTcolormap_sizeuse_underlineGdkVisualTypescrolltext_GtkTextBuffericon_factoriesGInitiallyUnownedwhiteanon_countgreen_maskred_shiftsaved_statecopy_rboxprivrequisitionGTK_RC_BG_GtkRequisitionGTK_RC_FGGDK_VISUAL_STATIC_COLOR_GdkVisuallabel_textbutton_down_GtkButtondarkprivate_flagsactivate_timeoutconstructedred_precgreen_shift_GHashTableuse_stockwhite_gcGDK_VISUAL_STATIC_GRAYevent_windowblue_mask@@B@wB@D@wD@F@wF@H@w H@I@w(I@J@w0J@Q@w8Q@%@w@@z@Uz@%@x@@z@Tz@%@x@@Pؖ@@P@@ȁx@%@ȁx@@Sj@@S@@S@­@S@5@Ёx7@@Ёx@%@Ёx˗@@Vj@@V­@ҭ@Vԭ@@V@"@V@­@؁x­@ԭ@؁x֭@@؁x@@؁x@5@؁x7@@؁x@%@؁x@w@Vj@@V­@ԭ@V@@V@"@V"@5@V@@V@̮@V@E@VJ@U@V@@V@@V0@U@Vd@­@x­@ҭ@x֭@@x@@x@5@x7@@x @#@x#@)@xE@J@xU@@x@@x@0@xU@%@xw@Ť@V @`@V%@e@Vj@@V­@ҭ@V@@V@"@V"@5@V@@V@̮@V@@V @#@V#@)@VE@J@Ve@@V@@V@0@VU@%@V^@@_%@e@_j@@_֭@@_@@_@5@_7@@_̮@@_U@e@_8@%@xe@­@x­@ҭ@x֭@@x@@x@5@xG@@x@@xծ@@x@@xK@@Sj@@SG@@Sծ@@Sɧ@%@xe@­@x­@ҭ@x֭@@x@@x@"@x"@5@x@@x@@xԧ@W@Vj@@V֭@@V@@V@"@V"@5@V@@V@ү@Vؗ@i@Sj@@S­@ƭ@S@@S@"@Sۗ@@U~@@U@@PØ@Ș@U&@ϙ@Sj@@S­@ƭ@Sҭ@ԭ@S@@S@"@S@@S@@S)@E@SJ@U@S@@S)@.@U@@P,@1@UR@@Sj@@S­@ƭ@S@@S@"@S@@S@@Se@@Sű@ձ@SU@Z@U@E@PX@]@U~@'@Sj@@S­@ƭ@S@@S@"@S@@S@@Sձ@@S@@UB@q@P@@U@Ҝ@P @@Sj@@S­@ƭ@S@@S@"@S@@S@@S@@S@%@S0@U@S@@Uϝ@@P@@U7@@Sj@@S­@ƭ@S@@S@"@S@@S@@Sհ@@S5@E@S:@?@U@@U@@U?@B@U@@U̝@ϝ@U@@U@*@P=@B@U@I@Sj@@S­@ƭ@S@@S@"@S@@S@@Sr@@S@@S@@Ud@@P@@U̠@u@Sj@@S­@ƭ@S@@S@"@S@@S@@S@Ų@SϠ@Ԡ@U@@Pҡ@ס@U@@Sj@@S­@ƭ@S@@S@"@S@@S@@S@0@SU@e@S@@S@@U@@P@@U$@ͣ@Sj@@S­@ƭ@S@@S@"@S@@S@̮@Sղ@@S@%@S'@,@Ua@d@U@@U@@U@@U@@P*@/@UŤ@Ǥ@VǤ@@V@`@Vj@@V"@5@V@@VǤ@פ@Pפ@@x@@P@%@xe@­@x­@ҭ@x֭@@x@@x@5@x7@@x@@x̮@@xU@e@x}@­@x­@ҭ@x֭@@x@@x@5@x7@@x@@x̮@@xU@e@x@@Sj@@S@@S"@"@S̮@ծ@SU@e@S @@U@@U@@P@@Uy@@P@@Pv@y@U@@Ue@h@Uh@@P@r@Sj@@S@@S@"@S"@5@S@@U@@U@@P̨@Ѩ@UK@3@Sj@@S@@S8@ү@SQ@T@UZ@`@UW@?@Vj@@V@@V8@ү@V`@@P3@@Sj@@S@@S9@<@UB@H@U?@@Vj@@V@@V"@@VH@s@P@@Sj@@S@8@S@"@U"@Q@P@@Sn@@S@­@Sү@@S@@UҬ@׬@U@@U@@U @@U@@U@@U@Ǯ@U=@?@U@@U@@U@@U@@U)@+@UD@F@U@@U0@4@w4@?@w0@:@U:@>@S@@D@wD@O@w@@J@UJ@N@SP@T@wT@_@wP@Z@UZ@^@S`@g@Up@t@U@@w@@w@@U@@P@@T@@U@@T@ij@wij@س@w @ʳ@U@ӳ@T@@U@ @T@@U0@9@U0@4@T@@D@wD@X@w @@J@U@@S@Tp@y@Up@t@T@@w@@w @@U@@T@@w@˴@w @@U@@U@@T@@w@@w @@U@@T@@U@@T@#@P0@8@U0@3@T@@I@U@@D@TP@Y@UP@T@T`@d@wd@x@w `@j@U`@s@T@@U@@T@@P@@U@@T@@U@@T@@U@@T@ĵ@wĵ@ص@w @ʵ@U@ӵ@T`@d@wd@s@w`@i@U@@w@@w@@w@˒@w0@R@VS@t@Vu@˒@V&@L@Ru@@R@S@du@@d@@P@Q@SS@s@Su@˒@SE@S@`@@`0@2@w2@7@w7@9@w9@;@w ;@?@w(?@@@w0@@G@w8G@@w0@_@U_@@|0@{@T{@@\@@\0@{@Q{@@@|@@@U@@|0@{@R{@@_@@_@@P@@^@@^@ד@Pד@@P@N@VN@@Q@@T@Ք@Q@@T@@V@I@]I@@P@@P@@]@@w@@w@@w@@w @@U@@V@@T@@Q@ @Q @@\@@T@@w@1@w@@U@ʕ@Pӕ@@P@@P@(@P@@w@ @w @@U@@w@;@w @/@U@@[@w[@ݶ@w0@@W@UW@@Sʶ@Ͷ@Sg@@Vʶ@ݶ@Vd@Ŷ@\ʶ@ݶ@\j@o@U@@w@·@w0@@U@s@V@@V@@V@x@S@·@S@}@\@·@\ @@U@@U@@U@@Uз@@w@m@w0з@@U@K@SZ@]@S@P@VZ@m@V@U@\Z@m@\@@U@@w@@w@@U@@S @$@w$@/@w @*@U*@.@S0@4@w4@?@w0@:@U:@>@S@@D@wD@O@w@@J@UJ@N@SP@T@wT@_@wP@Z@UZ@^@S`@d@wd@@w`@@U`@@Tl@@R@@U@ @T@@U@@U@@T@@U@@U@@T@#@P@@U@@T@@U@@T@ @U@@T@@w@(@w @@U@#@T0@8@U0@3@T@@I@U@@D@TP@Y@UP@T@T`@d@wd@x@w `@j@U`@s@T0@9@U0@4@T@@I@U@@D@TP@T@wT@h@w P@Z@UP@c@T@@U@@T@@Pp@x@Up@s@T@@U@@T@@U@@T@@w@@w @@U@@T@@U@@T@@U@@T@@U@@T@ĵ@wĵ@ص@w @ʵ@U@ӵ@T@@w@;@w @/@U@@U@@T@@U@@T@@w@@w @@U@@Tp@q@wq@@wp@{@U{@@S@@w@@w@@w@\@w @ȸ@Uȸ@@S@ @U @\@S`@a@wa@b@wb@i@wi@@w `@@U@@SĹ@@S @6@w6@@w @^@U^@z@S@@S @^@T^@@V@@V@ɺ@U@ͺ@T@@w@@w@@U@@S@@P@@U@ @a@@U@@T @(@U @-@T0@1@w1@F@w0@8@U8@E@SP@Q@wQ@m@wP@[@U[@h@Sp@w@U@@U@@U@@U@@U@ǻ@U@@U@@U @'@U0@7@UP@W@U`@g@U@@U@Ǽ@U@@D@wD@k@w @@_@Up@t@wt@@w p@@U@@w@@w@@w@@w @~@w@@U@@S@~@S@ @T@@V@ @V@Z@V@5@Vr@~@V,@@P@ƽ@Pu@@P@@P@Կ@P @@PZ@e@P@@P@@Pr@y@P?@@U@Z@U@?@UM@W@Ur@~@U@@\@~@\@@bw@@d@Z@b@@w@@w0@@U@3@VB@E@VU@X@V@8@SB@@S@=@\B@@\@@Ud@f@Ui@n@Ux@}@U@@w@@w@@w@@w @@w(@F@w@@U@@V!@@V@@V&@)@V9@<@VZ@@S@9@S]@b@U@@U*@!@Ld@@L@F@L*@!@H@@H@F@H*@!@DP@@D@F@D @@U@@U@$@U,@1@UP@Q@wQ@i@wP@[@U[@d@Sd@i@UP@`@Tp@q@wq@@wp@x@Ux@@S@@w@r@w0@@U@#@V2@5@VE@H@V@(@S2@r@S@-@\2@r@\@@UT@V@UY@^@Uh@m@U@@w@·@w0@@U@s@V@@V@@V@x@S@·@S@}@\@·@\ @@U@@U@@U@@U@@w@@w@@w@@w @@w(@@w0@@w8@@w@@U@@V@@Vw@@_@@_@4@_@@_@@]@@] @5@]O@a@]a@h@]@@]e@@]@@]@@]k@@S@@S @5@S@@S@@S@@S@@S@@SQ@@S@@S @5@S@@S@@S@@S@@S@@S7@@^@@^@@^^@@S@@S@5@S5@<@SO@O@SW@W@Sa@h@S@@SE@@S@@Sa@f@U#@(@U@@@S@@S@5@S5@<@SO@O@SW@W@Sa@h@S@@S@E@S@@SC@H@U@ @U%@@S@@S@5@S5@<@SO@O@SW@W@Sa@h@S@@S@@S@@S(@-@U@@U@@\@@\ @5@\O@a@\a@h@\@@\@@\@@\@@S@@S@5@S5@<@SO@O@SW@W@Sa@h@S@@S@@S@@S@"@U@@U@@\@@\ @5@\O@h@\r@@\@@\@@\ @@S@<@SO@O@SW@W@Sa@h@Sr@@S@@S@@S@@U@@U@@S@@S@5@S5@a@Sa@r@S@@S@@U@@U@ @UM@O@UR@W@U@@U@@U@@U@@U*@,@Uz@|@U@@w@@w@@w@ @w @ @w( @@w0@@w8@@w@%@U%@@V@@V@@T@J@S@,@SA@M@S@@S@@_@@_@d@_@@_@@]@,@]A@M@]g@y@]y@@]@@]@@]@J@]@@]@@S@,@SA@M@S@@S@@S@@S@$@S@@S@@S@,@SA@M@S@@S@@S@@S@@S@@Sh@ @^@@^@@^@6@S@,@S,@M@SM@T@Sg@g@So@o@Sy@@S@@Su@@S@@S@@UT@Y@Uq@@S@,@S,@M@SM@T@Sg@g@So@o@Sy@@S@@S%@u@S@@St@y@U9@>@UV@ @S@,@S,@M@SM@T@Sg@g@So@o@Sy@@S@@S@%@S@@SY@^@U'@,@U3@@\@,@\A@M@\g@y@\y@@\@@\@@\@@\K@@S@,@S,@M@SM@T@Sg@g@So@o@Sy@@S@@S@@S@@SN@S@U@@U%@@\@,@\A@M@\g@@\@@\@@\@@\=@@S@T@Sg@g@So@o@Sy@@S@@S@@S@@S@@E@U @@U(@@S@,@S,@M@SM@y@Sy@@S@@S+@0@U@@U<@A@Ue@g@Uj@o@U@@U@@U@@U @ @UZ@\@U@@Uww0UBSYeSouSwwww U!S!'U'Swww|w US|SwIw USISTVIVPQwQUwUYwYwP^U^hViV nU nT;nXprwrxwx}w}w w(w0w8 wpUO VX VpTSX p S S SpQU ^X [ ^p v ^ ^ ^ ^W _[ _ w w w w w( w0 w8 w U T _ _3w_ ~3w~ ~ Q Q ~3w~ C \ \ \ ~3w~ ^ ^3w^ Q Q Qwwww w(w0w8bwUSbSTVV=VJbV[_O_wGw $U$,STPQwQXwXw0PmUmSPmamhwww?w UuSu{U{?S@AwABwBIwIw @uUuSSwwww  U tSxSTuVxVwwwwU(V)VlU2a27b7Taglapqwquwuywy7wp~U~VV@IU@ITPRwRVwV]w]w0PlUlSPgTg\UUUUTTTT "w"+w+-w-/w /0w(07w07>w8>/ w 6U6 V / V- } }0 2 w2 8 w8 : w: < w < = w(= A w0A N w8N w0 X UX VV0 G TG SSNSSA}}wwww w(w0w8bw U VV$,V36V8;VBJVRZVs]]$]8b]~$~8b~Q^^$^8b^ESS$S8BSRbSzQQQprwrywy{w{}w }~w(~w0w8+w pU+wVV^E S !^!$_%%'_%''^''_''^''_'"(S2(2(_2(G(S\(\(_\(d(S((^((_))D)^))^),*_**^**_**^*F+_F++S!'w'"(w2(G(w\(d(w(D)w),*w**w*F+w!'w'"(w2(G(w\(d(w(D)w),*w**w*F+wV \E]w V''V''w'"(]2(2(w2(G(]\(\(\\(\(]\(_(w(D)w))\)*w**w*+w++]++\Xd(~()~)*~**~*+~Xd(~()~)*~**~*+~8TQTiQiqQ+,w,A,w + ,U ,7,V+ ,T ,2,S/5PYrPPP P hRRpR{RwwwTpYdYtY1pZ$dZtZ[PPmp[[PP/d[t[ZP1PmqPPZP$PWX XdXYXXPR P "R"&P&bRbbXbpP}YXXXPRP R  P XR$(P(EREIPIdRddYktXYXpT TdTS SwwUSUw$w UST]Q\01w17w7>w>w 0\U\SSwww% w UpSt% STqVt% V0 1 w1 7 w7 > w> w 0 \ U\ S U S w ` w0 U  S) 5 S? E S` b wb h wh j wj l w l m w(m q w0q x w8x w` U V#&VDJVx{V}VVVV: "_<D_}_B #~<D~}~B #~<D~}~  Q  Q  Qwwww w(w0w8gw+U+\\U\\ \nq\sv\x{\\\\\\\\  \+.\MS\T{{{x{x{{|{{|{ {2c{c{ {{||{| |Ia{aa{ {{ {SmQmQQpqwquwuywyWwp~U~VV`awaeweiwi'w`nUnxVyV0:U0:a@KU@KTPZUPZa`ywyw `~U~SUS`~T`rQrVVww USUSTQVV "w"+w+-w-/w /0w(07w07>w8>#w 6U6)"V2"#V2"}7"#}##w##w##w##w ##w(##w0##w8#(w##U#'V'(V##T#k$S''S' (Sr((S((w((w((w((w ((w(((w0((w8(,w((U(+S,A,SY,,Sv)~)Q**2*Q++R++R,-w-V-w ,-U-G-V,-T-B-S"w"w,E^R^,;\\%S,1S%S,OiqSqS,OU,O@@_,6VPVR^\?_sxUUwwUTwwUTQ̐@@}@}@XcA\cA@@@@@@@@@@@ @`@d@g@@g@o@@@w@@@@@·@@k@@@2@:@@/@@@@C@@@@.@@@@z@@%@֭@ү@%@e@˗@D@T@\@˗@D@T@\@ؗ@@@1@ؗ@@ @$@@@@@@@@@@@@@@@@@-@{@@™@@@@@-@{@@™@@@&@@-@{@&@.@Z@j@:@R@1@A@F@J@1@A@F@J@1@A@F@J@A@F@y@ٱ@@@J@֚@A@F@y@ٱ@@@J@֚@R@@y@ٱ@R@Z@@@f@~@]@m@r@v@]@m@r@v@]@m@r@v@m@r@ٱ@@@@v@@m@r@ٱ@@@@v@@~@@ٱ@@~@@@›@@@@@@@@@@@@@@@@@4@@@@@@@@4@@@@@@ @t@4@@ @@?@O@@7@@&@+@/@@&@+@/@@&@+@/@&@+@@y@˞@Ӟ@/@@&@+@@y@˞@Ӟ@/@@7@@@y@7@?@k@{@K@c@@@@@@@@@@@@@@@{@@4@<@@$@@@{@@4@<@@$@@ @{@@@@ԟ@@@̟@@@@Ġ@@@@Ġ@@@@Ġ@@@@%@`@h@Ġ@P@@@@%@`@h@Ġ@P@̠@5@@%@̠@Ԡ@@@@@ס@@@@ס@@@@ס@@@@@@@4@@@@|@@@@4@@@@|@@a@@4@@@,@<@ @$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$@@@@@@$@,@X@h@8@P@k@@7@G@@"@%@e@פ@@7@G@@"@@s@@@@s@@@@@#@`@@@;@S@#@3@ԧ@M@"@7@]@e@ԧ@M@"@7@]@e@@@@:@@@@-@@ @@@@ƭ@@@@@@ƭ@@@@)@1@n@@@I@a@1@A@@@@@d@h@@@l@@d@h@@@l@@@@@ @@@@@@@5@y@Ͻ@u@@@X@@@+@@@@@@@*@.@K@R@*@.@K@R@*@.@K@R@.@3@@)@R@@.@3@@)@R@@Z@@@)@Z@b@@@f@@@@H@r@@@@@@@@@@@@·@@k@@@2@:@@/@*@@A@@@ @F@M@R@V@F@M@R@V@F@M@R@V@M@R@j@@@@V@@M@R@j@@@@V@@^@@j@@^@f@@@j@@(@/@4@8@(@/@4@8@(@/@4@8@/@4@@j@@@8@@/@4@@j@@@8@@@@@@j@@@H@t@|@L@l@ @@@@ @@@@ @@@@@@@@@@@@@@@@@@@@%@@@@%@-@Y@a@1@Q@@@@@@@@@@@@@@@@@@{@@@@"@N@V@&@F@@@w@@@@@@@@w@@@@@@ @m@w@@ @@@@H@@8@@@@@@@@@@@@@@@A@w@@@@s@@@A@w@@@@s@@X@A@W@@@+@3@@#@[@@Y@@,@A@w@~@@@w@~@@@w@~@@@~@@@@@@@@~@@@@@@@@@@@@@@@@@@Y@`@e@i@Y@`@e@i@Y@`@e@i@`@e@J@@@@i@@`@e@J@@@@i@@q@@J@@q@y@@@}@@>@E@J@N@>@E@J@N@>@E@J@N@E@J@@J@@@N@@E@J@@J@@@N@@V@@@J@V@^@@@b@@3@8@@@@@C@@3@8@@@@@C@@K@@@@K@S@@@W@w@%@*@@@@@5@@%@*@@@@@5@@=@@@@=@E@q@y@I@i@@@@ @@@@ @@@@ @@@Y@@@@ @@@@Y@@@@ @@(@@Y@o@(@0@\@d@4@T@1=V`GRp m 3X ] | k n X ] k n IPj07=BEb=BEHBR++g((27VkKS?B27?BP F++^**D)),  afpafps  !$!9!V!,!/!!$!,!/!!+'*F+),*(D)2(G(''!!!!!!!!!!!!?"D"G"g"?"D"G"J"%%%%%%%%%%%%%%%%&&&&&&&&&&2(G(( ) & 0  " <D=BGg=BGJEJOoEJOR`a{W 'W\hW\hkW{/6W'))")<)),A,Y,j,}@}@acAfcA.symtab.strtab.shstrtab.interp.note.ABI-tag.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.text.fini.rodata.eh_frame_hdr.eh_frame.gcc_except_table.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.comment.debug_aranges.debug_pubnames.debug_info.debug_abbrev.debug_line.debug_frame.debug_str.debug_loc.debug_ranges@#@ 5@@@X 1o @ ; @8C/@/,Ko\@\Xo`_@`_g`@`hqha@ha8 {}@}v}@}@XcAXccAcU hAh@A@TATaaaaaa  a  a@ p *.PU(w-6hTXB O0Zep: sp;'P M Z@@@@ @@/@\@`_@ `@ ha@ }@ }@ @XcAcAhA@ATAaaaaaa aa !"#$ *1<u ̐@aaapa0a @ 0@aa PAa% cA1;t| `@gA @a  gAa a PbA%* A5@Ah?AH bA0Ta]anaa @!}@ }@ C p@,c @!a(" `@-,H~@X~@Z 0KA!PA !a( @" @ ;M~@ h @" @" @ 6 T" @~@Z~@r~@B>S`a`\~@n @ " @W @k@(@r" 0@H@Z1 aH " @ a  8A #1 h@ I  0AG` x@Z  LA " @? @gf @B @#  @    @ " @ U dh  p A " @@ A ` !Am  ax  a ! A @o @B$cA3][wo!A!lA ;A" @+  @4 @H a`U5g!}Ax@ @o@ U@Z\ @NpȀ@ " A  5A!a(d!Ap@g1a? AY!A|@g@Zz !AEl!@A `@" @+a" /A )/H@H;`!A} @@ax@!Ap"!A?[ @ |g MA @i " @@# `]A,@gU /AQ@ (a!@zA8@ @(a" P@X@i h@Z>5{ @;f" /A @ " A !yAp&a7!0aO(a؂@o!wA" @Q @ua@R" @ !Pa `A@o@D9" @+8 @A :A" p@+Pj!`A!vAH@X@x?h@ `nqFXcA@B@ZF@Zu@Z ZX@Zh@f 7AU" @H " @ x@  @!!sA/!"Q!O!@Z!~!" @ !" @ T"l"" P@ # `SA$# @ ?#؄@#@Z#" @ $!A$$" @K% 5ATo%%N% Ar%(@%%U&&&`& Ap&&&&" д@f'" @ (-"(@gU(" @ ) P A)3)^D)@ e))! A)d)@i) AZ *(@oA*" @***I*h@ *++s0+" @++ A~+" A ,!A., \Af_,8x, @,," /A ,,@-N1- @ S---! }A- 0@-Q-" @ b.8@.+.X@.!0A .!iA/ p@ &/C/!yA T/x@/(/ha//d0M0!pa8_0v0؇@n0!A0" @@0a0!@A0+$1F1" @ 1" @@+I2! xAp2" @ 3'3@Z`3" p@ 3(@i?41[4 }@a4w~44w4x@ 4 MA44 @.5" @]A 75Q5 ?Aw m55!pA5" @+6!`A6.6 B6 U6!zAf6؈@B6@+66!xA6@ 7@Z27(@ \78@Z777 MA 7 P@7D8 @b!8;:8^8!as8 XA,8" @8" 0@88!A 9d9!A?9@9"99@ 9!aX :2:hF:@Z::a:: @ :H@B; @;,;h@E;c;@y; @;" @@;;@Q<@ p<<(a<؊@ <" @#= a0=a?=3b== В@R=a=="==8@ >%(> 0@H>d>!`A>h@ >!@A> @>x@Z??" @@W@ XW @.yW" @WWha X!A0XcDX" /A \XdpXlX8@ZXXXh@Z'Yx@j;Y" @Y@BY!mAabi-note.S../sysdeps/x86_64/elf/start.Sinit.cinitfini.c/build/buildd/glibc-2.5/build-tree/amd64-libc/csu/crti.Scall_gmon_startcrtstuff.c__CTOR_LIST____DTOR_LIST____JCR_LIST__completed.6100p.6098__do_global_dtors_auxframe_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_aux/build/buildd/glibc-2.5/build-tree/amd64-libc/csu/crtn.Smain.cc_Z15on_delete_eventP12_GdkEventAnyappname_strlong_options_ZZ4mainE5C.571guitune.cclcdview.cclogview.ccosziview.ccaboutbox.cabout_dialogFB_logo_xpmabout_destroy_cbtitle_textcopy_textGPL_textabout_ok_cb_DYNAMIC__init_array_end__init_array_start_GLOBAL_OFFSET_TABLE__ZN10MainWidget10proc_audioEN4Glib11IOConditionE_ZN4sigc10connectionC1ERNS_9slot_baseE_Znam@@GLIBCXX_3.4_ZTv0_n32_N4Glib6ObjectD0Ev_ZTv0_n64_N3Gtk6Object10set_manageEv_ZN10MainWidget12uninit_audioEv__errno_location@@GLIBC_2.2.5printf@@GLIBC_2.2.5_ZN7LCDViewD0Ev_ZTIN4Glib10ObjectBaseE_ZNK4sigc15adaptor_functorINS_16pointer_functor0IvEEEclEv_ZNK3Gtk6Widget14get_allocationEv_ZN3Gtk4Main3runEv_ZNK3Gtk9Container24get_child_property_vfuncEP10_GtkWidgetjP7_GValueP11_GParamSpec_ZN3Gtk6Widget18on_key_press_eventEP12_GdkEventKeygtk_widget_grab_default_ZN8OsziView17invalidate_sampleEv_ZTS7LogView_ZTIN4Glib9InterfaceE_Z10destroy_cbv_ZTv0_n32_N10MainWidgetD0Evg_byte_array_free_ZTv0_n32_N3Gtk6WidgetD1Ev_ZN7LCDView10on_realizeEv_ZN3Gtk6manageINS_5TableEEEPT_S3__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv8OsziViewEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EEgetopt_long_only@@GLIBC_2.2.5_ZN4sigc8internal10slot_call1INS_16pointer_functor1IP12_GdkEventAnyiEEbS4_E7call_itEPNS0_8slot_repERKS4__ZN3Gtk6Widget18on_focus_out_eventEP14_GdkEventFocus_ZN3Gtk6Widget20get_accessible_vfuncEv_ZN3Gtk9Container15on_check_resizeEvsprintf@@GLIBC_2.2.5note_ger_ZN3Gtk5TableD0Ev_ZN10MainWidget11hideLogViewEv_ZN3Gtk12ToggleButton10set_activeEb_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEEEvRKT0_RKT1__ZN10MainWidgetD0Ev_ZN4sigc10connectionC1Ev_ZN3Gtk6ObjectD0Ev_ZN4Glib6ObjectD0Ev_ZN3Gtk6manageINS_7MenuBarEEEPT_S3__ZN3Gtk12Menu_Helpers13SeparatorElemC1Ev_ZN3Gtk6Widget18on_configure_eventEP18_GdkEventConfigureoptions_adaptive_scale_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE_edata_ZN8OsziViewD0Ev_ZN3Gtk3Box10pack_startERNS_6WidgetEbbj_ZThn16_N3Gtk5TableD1Ev_ZN7LogView8pos_noteEi_ZN3Gtk6Widget12on_map_eventEP12_GdkEventAny_ZN8OsziView10invalidateEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN3Gtk6Widget17on_parent_changedEPS0__ZN3Gtk6Widget7on_hideEv_ZN4sigc8internal8slot_rep6notifyEPv_ZN10MainWidget10setScaleGEEv_ZN3Gtk5TableC2Ejjb_ZN10MainWidget11setAdaptiveEv_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7call_itEPNS0_8slot_repEgtk_label_get_type_ZN7LogView14set_nat_tuningEb_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN5Pango15FontDescriptionD1Ev_ZTI7LCDViewdata_startlog@@GLIBC_2.2.5options_height_ZTC8OsziView16_N4Glib9InterfaceE_ZN3Gtk6Widget16on_size_allocateERN3Gdk9RectangleEstrerror@@GLIBC_2.2.5_ZN3Gtk6Widget14hide_all_vfuncEv_IO_stdin_used_ZN3Gtk8AccelKeyC1ERKN4Glib7ustringES4_gtk_widget_get_typegtk_widget_set_usize_ZTT7LogView_ZN3Gtk11DrawingAreaC2Ev_ZTT10MainWidget_ZN8OsziView12paint_sampleEv_ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEclEv_ZN10MainWidgetD2Ev_Z14process_optioninote_ger_alt_ZN3Gdk5ColorC1Ev_ZTC7LCDView0_N3Gtk11DrawingAreaE_ZNK4Glib10ObjectBase9referenceEv_ZN3Gtk6Widget20on_direction_changedENS_13TextDirectionE_ZTv0_n32_N3Gtk6ObjectD1Evg_type_check_instance_cast_ZN3Gtk6Widget26on_visibility_notify_eventEP19_GdkEventVisibility_ZN7LCDView3setEPKc_ZTv0_n32_N4Glib9InterfaceD0Ev_ZTv0_n32_N7LCDViewD1Ev_ZN8OsziViewD1Ev_ZTIN4Glib6ObjectEgtk_text_view_get_type_ZTC8OsziView192_N4Glib10ObjectBaseE_ZN3Gtk6Widget20on_hierarchy_changedEPS0_options_width_ZN7LogView10invalidateEv_ZTC7LogView16_N3Atk11ImplementorE_ZN3Gtk9Container6on_addEPNS_6WidgetE_ZN3Gtk6Widget21on_window_state_eventEP20_GdkEventWindowState_ZN3Gtk10SpinButtonC1ERNS_10AdjustmentEdj_ZTV8OsziView_ZN3Gdk8Drawable11draw_layoutERKN4Glib6RefPtrIKNS_2GCEEEiiRKNS2_IKN5Pango6LayoutEEE_ZTC7LogView16_N4Glib9InterfaceE_ZN7LCDView15on_expose_eventEP15_GdkEventExpose_ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEclEvmenu_input_rec_ZTv0_n32_N7LogViewD0Evg_log_ZN3Atk11ImplementorD1Evgtk_signal_connect_full_ZTC8OsziView0_N3Gtk6ObjectEmainoptions_audiodev_ZN3Gtk10SpinButton10set_digitsEj_ZN3Gtk9Container12forall_vfuncEiPFvP10_GtkWidgetPvES3__ZN3Gtk4MenuC1Ev_ZTC7LogView328_N4Glib10ObjectBaseE_ZTC7LogView0_N4Glib6ObjectE_ZN3Gdk9Rectangle5set_xERKi_ZN10MainWidget13setTriggerValEd_ZN3Gtk5TableC1Ejjb_ZN8OsziView13setSampleFreqEd_ZN3Gtk6Widget19on_drag_data_deleteERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk7StockIDD1Ev_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEEEEvRKT0_RKT1__ZN4Glib8SignalIO7connectERKN4sigc4slotIbNS_11IOConditionENS1_3nilES4_S4_S4_S4_S4_EEiS3_igtk_icon_theme_get_for_screen_ZN3Gtk5TableD1Evabout_cb_ZN3Gtk9Container9on_removeEPNS_6WidgetE_ZN7LogView15on_expose_eventEP15_GdkEventExpose_ZThn16_N3Gtk9ContainerD0Evoptarg@@GLIBC_2.2.5_ZTV7LCDViewgtk_image_new_ZN4Glib10ObjectBase15destroy_notify_Ev_ZN7LCDViewD1Ev__dso_handle_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEEEvRKT0_RKT1_g_byte_array_append_ZN3Gtk6Widget16on_style_changedERKN4Glib6RefPtrINS_5StyleEEE_ZN3Gtk6Widget15on_expose_eventEP15_GdkEventExpose_ZNK4sigc9trackable27add_destroy_notify_callbackEPvPFS1_S1_E_Z11setRecInputvgtk_widget_get_screen_ZThn16_N7LogViewD1Evfcntl@@GLIBC_2.2.5_ZTv0_n32_N3Gtk5TableD0Ev_ZThn16_N7LCDViewD1Ev_ZTC10MainWidget128512_N4Glib10ObjectBaseEoptions_sampfreq_ZTIN3Gtk11DrawingAreaE_ZN3Gtk4VBoxC1Ebi_ZN3Gtk6Widget12get_colormapEv_ZN3Gtk6Widget14on_grab_notifyEb_ZTC10MainWidget0_N4Glib6ObjectE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEEEEvRKT0_RKT1__Z10print_helpP6optionPKcP8_IO_FILEtuning_nat_ZN3Gtk6Object10set_manageEv_ZThn16_N10MainWidgetD0Ev_ZTIN3Atk11ImplementorE_ZN7LogViewC2Ev_ZN3Gtk6Widget15on_size_requestEP15_GtkRequisition_ZNK3Gtk9Container16child_type_vfuncEv_ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE7destroyEPv_ZN3Gdk8Drawable14draw_rectangleERKN4Glib6RefPtrIKNS_2GCEEEbiiii_ZN7LogView16invalidate_arrowEv_ZN8OsziView10on_realizeEv_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv8OsziViewEEE7destroyEPv_ZN3Gtk6Widget8show_allEv_ZN3Gtk12Menu_Helpers8MenuElemC1ERKN4Glib7ustringERKNS_8AccelKeyERNS_4MenuE_ZTC7LogView0_N3Gtk11DrawingAreaE_ZTC10MainWidget0_N3Gtk6ObjectE_ZN3Gtk11DrawingAreaD0Ev_ZN3Atk11Implementor21ref_accessibile_vfuncEv_ZTv0_n32_N3Atk11ImplementorD1Ev_ZN3Gtk4MainD1Evgtk_container_get_typesscanf@@GLIBC_2.2.5_fini_ZN3Gtk6Widget7on_showEvopen@@GLIBC_2.2.5_ZN4Glib10ObjectBaseC2Evgtk_container_set_border_width_ZN3Gtk6Widget26on_selection_request_eventEP18_GdkEventSelection_ZN3Gtk6Widget14on_unmap_eventEP12_GdkEventAnygtk_image_set_from_pixbuf_ZN3Gtk6Widget18on_no_expose_eventEP12_GdkEventAny_ZNK3Gtk6Widget9get_widthEvgtk_button_new_with_label_ZN3Gtk12Menu_Helpers13StockMenuElemC1ERKNS_7StockIDERKN4sigc4slotIvNS5_3nilES7_S7_S7_S7_S7_S7_EE_ZN3Gtk6Widget15on_scroll_eventEP15_GdkEventScroll_ZN4Glib9InterfaceD1Ev_ZN8OsziViewD2Ev_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEES3_EEvRKT_RKT0__ZN3Gtk6Widget16on_selection_getERNS_13SelectionDataEjj_ZN10MainWidget13setScaleGEAltEv_ZTC10MainWidget0_N3Gtk6WidgetE_ZN3Gtk12Menu_Helpers7ElementD2Ev_ZN3Gtk6Widget19create_pango_layoutERKN4Glib7ustringE_ZN3Gtk6Widget21on_enter_notify_eventEP17_GdkEventCrossinggtk_icon_theme_load_icon_ZTv0_n32_N10MainWidgetD1Ev_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv8OsziViewEEvE7call_itEPNS0_8slot_repEgtk_scrolled_window_new_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN8OsziViewC2Ev_ZN10MainWidget8showOsziEv_ZN3Gtk6Widget13on_drag_leaveERKN4Glib6RefPtrIN3Gdk11DragContextEEEj_ZN3Gtk6Widget24on_selection_clear_eventEP18_GdkEventSelection_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZTV7LogView_ZN4sigc9slot_baseC2EPNS_8internal8slot_repE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0__ZN8OsziView16copy_sample_dataEPKvigtk_text_view_newgtk_label_new_ZN7LogView10draw_arrowEv_ZN3Atk11ImplementorD0Ev_ZN5Pango15FontDescriptionC1ERKN4Glib7ustringEperror@@GLIBC_2.2.5_ZNK3Gtk10Adjustment9get_valueEv_ZN4Glib17SignalProxyNormal8connect_ERKN4sigc9slot_baseEb_ZN7LogViewD0Ev_ZNK4sigc9trackable30remove_destroy_notify_callbackEPv_ZN4sigc9trackableD2Evgtk_window_set_title_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EEgtk_container_add_ZN3Gtk9Container18on_set_focus_childEPNS_6WidgetE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEb10MainWidgetN4Glib11IOConditionEEEvRKT_RKNS_18bound_mem_functor1IT0_T1_T2_EE_ZN7LogViewC1Ev_ZN3Gdk9Rectangle10set_heightERKipow@@GLIBC_2.2.5_ZTv0_n32_N3Atk11ImplementorD0Evgtk_scrolled_window_set_policy_ZTC7LogView0_N3Gtk6ObjectEgtk_box_get_type_ZN3Gtk6Widget17on_screen_changedERKN4Glib6RefPtrIN3Gdk6ScreenEEE_ZN7LogView9lfreq_posEd_ZN3Gtk9Container20composite_name_vfuncEP10_GtkWidget_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE3dupEPv_ZN4Glib7ustringC1Evstrcpy@@GLIBC_2.2.5gtk_vbox_new_ZNK4Glib10ObjectBase11unreferenceEv_ZN4Glib9signal_ioEv_ZdlPv@@GLIBCXX_3.4_ZN3Gtk11DrawingAreaD2Ev_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1__ZN3Gtk6Widget16set_size_requestEii_ZN7LogView7draw_itEv_ZThn16_N7LCDViewD0Ev_ZTC7LCDView0_N3Gtk6ObjectE_ZN8OsziView15on_expose_eventEP15_GdkEventExposegtk_text_buffer_set_text_start_ZN4sigc10connectionD1Ev_ZThn16_N7LogViewD0Ev_Znwm@@GLIBCXX_3.4_ZN3Gtk6Widget16on_drag_data_getERKN4Glib6RefPtrIN3Gdk11DragContextEEERNS_13SelectionDataEjjgtk_widget_destroy_ZN10MainWidget14setSampFreqValEi_ZN3Gdk6Window14set_backgroundERKNS_5ColorEgtk_box_pack_start_ZTT7LCDView_Z11load_configPPPcPiS0_igtk_text_view_get_buffer_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv8OsziViewEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE_ZN3Gtk6Widget14on_drag_motionERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZN3Gdk8Colormap11alloc_colorERNS_5ColorEbb_ZN3Gtk6ObjectD1Ev_ZTS8OsziView_ZTV10MainWidget_ZN10MainWidget10getTriggerEv_ZN4sigc10connectionaSERKS0__ZTS10MainWidget_ZN3Gtk6Widget21on_drag_data_receivedERKN4Glib6RefPtrIN3Gdk11DragContextEEEiiRKNS_13SelectionDataEjj_ZNK3Gtk6Widget11is_realizedEv_ZN3Gtk5Stock4QUITEgtk_box_pack_endgtk_image_get_type_ZN3Gtk12Menu_Helpers8MenuElemC1ERKN4Glib7ustringERNS_4MenuE_ZTIN3Gtk6WidgetE_ZN4sigc9trackableC2Ev_ZN4Glib9InterfaceD0Ev_ZTT8OsziView_ZN3Gtk6manageINS_11CheckButtonEEEPT_S3_KAMMERTON_ZTC7LogView0_N3Gtk6WidgetE_ZN3Gdk8Drawable9draw_lineERKN4Glib6RefPtrIKNS_2GCEEEiiii_ZN3Gtk6WindowC1ENS_10WindowTypeE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE7destroyEPv_ZTC10MainWidget16_N3Atk11ImplementorE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE_ZN3Gtk5Table16set_col_spacingsEj_ZN3Gtk6Widget21on_button_press_eventEP15_GdkEventButton_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN3Gtk6Widget13on_drag_beginERKN4Glib6RefPtrIN3Gdk11DragContextEEE__stack_chk_fail@@GLIBC_2.4_init_ZN3Gtk6Widget10get_windowEv_ZN4sigc10connection10disconnectEvgtk_pixmap_new_ZThn16_N3Gtk6WidgetD0Ev_ZN8OsziViewC1Ev_ZNK3Gtk6Widget11get_pointerERiS1__ZN10MainWidget13setTuningNormEv_ZTv0_n32_N8OsziViewD0Ev_ZN3Gtk9MenuShell5itemsEv_ZN8OsziView11paint_scaleEv_ZN3Gtk7StockIDC1ERKNS_14BuiltinStockIDE_ZTC10MainWidget0_N3Gtk9ContainerE_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE7destroyEPv_ZTI7LogView_ZN3Gtk5TableD2Ev_Jv_RegisterClassesfopen@@GLIBC_2.2.5_ZTI10MainWidget_ZN3Gtk6Widget13on_grab_focusEv_ZN3Gtk6Object15destroy_notify_Evgdk_pixmap_create_from_xpm_d_ZTC10MainWidget16_N4Glib9InterfaceE_ZTv0_n32_N3Gtk11DrawingAreaD1Ev_ZN3Gtk6Widget20on_mnemonic_activateEb_ZTv0_n56_N3Gtk6Object15destroy_notify_Ev_ZN3Gtk6Widget21on_leave_notify_eventEP17_GdkEventCrossingexit@@GLIBC_2.2.5getenv@@GLIBC_2.2.5_ZN8OsziView11setAdaptiveEi_ZN10MainWidget13setTuningEquiEv_ZN4Glib7ustringD1Ev_ZN7LCDViewC2EPKc_ZN4Glib10ObjectBaseD2Ev_ZNK3Gtk12Menu_Helpers8MenuListixEm_ZTIN3Gtk9ContainerE_ZN8OsziView11paint_marksEv_ZN3Gtk6manageINS_5LabelEEEPT_S3__ZN3Gtk6manageINS_10SpinButtonEEEPT_S3_fputc@@GLIBC_2.2.5_ZTC8OsziView0_N4Glib6ObjectEgtk_dialog_get_type_ZTC7LCDView16_N4Glib9InterfaceE_ZN3Gtk6Widget12on_drag_dropERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZNK3Gtk13CheckMenuItem10get_activeEv_ZdaPv@@GLIBCXX_3.4_ZThn16_N3Gtk5TableD0Ev_ZTVN10__cxxabiv120__si_class_type_infoE@@CXXABI_1.3_ZN3Gtk6Widget19signal_delete_eventEv_ZN3Gtk7MenuBarC1Ev_ZN3Gtk6Widget22on_proximity_out_eventEP18_GdkEventProximitygtk_text_view_set_editableoptions_trigger_ZN4Glib17SignalProxyNormalD2Ev_ZN10MainWidget8hideOsziEv_ZN3Gtk6Widget6on_mapEv_ZN10MainWidgetC2Ev_ZN3Gtk4MainC1ERiRPPcb_ZN3Gtk11DrawingAreaD1Ev_ZN3Gtk16RadioButtonGroupC1Ev_ZN3Gtk9ContainerD0Ev_ZN10MainWidget10setScaleUSEv_ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE3dupEPvmalloc@@GLIBC_2.2.5_ZN3Gtk9Container24set_child_property_vfuncEP10_GtkWidgetjPK7_GValueP11_GParamSpec_ZThn16_N3Gtk11DrawingAreaD0Ev_ZN3Gdk6Window15invalidate_rectERKNS_9RectangleEbstderr@@GLIBC_2.2.5_ZTv0_n32_N3Gtk9ContainerD0Ev_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv8OsziViewEEE3dupEPv__data_startoptions_sampnr_ZN3Gtk5LabelC1ERKN4Glib7ustringEb_ZN3Gdk2GC14set_foregroundERKNS_5ColorE_Z19set_option_defaultsv_endgtk_dialog_new_ZNK3Gtk12ToggleButton10get_activeEv_ZN3Gtk10AdjustmentC1Edddddd_ZTv0_n32_N4Glib6ObjectD1Evioctl@@GLIBC_2.2.5_ZN10MainWidget12setTuningNatEvgtk_text_view_set_wrap_mode_ZTC8OsziView16_N3Atk11ImplementorE_ZTv0_n32_N3Gtk6WidgetD0Ev_ZTC7LCDView0_N4Glib6ObjectE_ZN10MainWidget14setAdaptiveValEi_ZN3Gtk6Widget8on_eventEP9_GdkEventfprintf@@GLIBC_2.2.5_ZN3Gtk6manageINS_4MenuEEEPT_S3_read@@GLIBC_2.2.5_ZN8OsziView9calc_freqEv_ZN7LogViewD1Ev_ZN3Gtk6Widget15on_delete_eventEP12_GdkEventAnygtk_widget_show_allgtk_object_get_type_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1__ZN3Gtk5Table16set_row_spacingsEj_ZThn16_N10MainWidgetD1Ev_ZN3Gtk9ContainerD1Ev_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKT0__ZN4sigc8internal10slot_call1INS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEbS5_E7call_itEPNS0_8slot_repERKS5__ZThn16_N3Gtk6WidgetD1Ev_ZNK5Pango6Layout25get_pixel_logical_extentsEv__bss_start_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEb10MainWidgetN4Glib11IOConditionEEEvRKT_RKNS_18bound_mem_functor1IT0_T1_T2_EE_ZN3Gtk6Widget15on_child_notifyEP11_GParamSpecgtk_widget_showg_object_unref_ZTv0_n32_N8OsziViewD1Ev_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE8OsziViewLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN3Gtk6Widget12on_unrealizeEv_ZN10MainWidget13setScaleUSAltEvputs@@GLIBC_2.2.5_ZN3Gtk11CheckButtonC1ERKN4Glib7ustringEb_ZN3Gtk6Window16set_default_sizeEii_ZN3Gtk6Widget4showEv__libc_csu_init_ZN3Gtk10Adjustment20signal_value_changedEvfgetc@@GLIBC_2.2.5_ZN3Gtk6Widget22on_motion_notify_eventEP15_GdkEventMotion_ZN10MainWidget10setDSPNameEPKc_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKT0_note_us_alt_ZN3Gtk6Widget17on_focus_in_eventEP14_GdkEventFocus_ZN4Glib10ObjectBase10set_manageEv_ZN3Gtk6Widget10on_realizeEv_ZN7LogView12change_lfreqEd_ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE3dupEPv_ZN3Gtk6Widget8on_unmapEv_ZTI8OsziView_ZN8OsziView6recalcEv_ZN5Pango6Layout8set_textERKN4Glib7ustringE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1__ZTv0_n32_N3Gtk11DrawingAreaD0Ev_ZN3Gtk6Widget25on_selection_notify_eventEP18_GdkEventSelection__gxx_personality_v0@@CXXABI_1.3_ZN3Gtk6Widget17on_get_accessibleEv_ZN3Gtk6Widget39dispatch_child_properties_changed_vfuncEjPP11_GParamSpec_ZN8OsziView13setSampleDataEPKsi_ZTC8OsziView0_N3Gtk6WidgetE_ZN10MainWidgetD1Evgtk_scrolled_window_get_type_ZN4sigc8internal10slot_call0INS_16pointer_functor0IvEEvE7call_itEPNS0_8slot_repE_ZTC8OsziView0_N3Gtk11DrawingAreaE_ZN10MainWidget10setTriggerEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE_ZN3Gtk5FrameC1ERKN4Glib7ustringE_ZTC7LCDView1216_N4Glib10ObjectBaseE_ZN3Gtk6Widget16on_state_changedENS_9StateTypeE_ZN3Gtk6Widget21on_proximity_in_eventEP18_GdkEventProximity_ZN8OsziView13setSampleDataEPKhi_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EEmemcpy@@GLIBC_2.2.5_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1__ZTv0_n32_N3Gtk9ContainerD1Ev_ZNK3Gdk9Rectangle10get_heightEv_ZN8OsziView11getTrigFactEv_ZN4Glib7ustringC1EPKc_ZThn16_N8OsziViewD0Ev_ZN8OsziView11setTrigFactEdg_byte_array_set_size_ZN3Gtk12ToggleButton14signal_toggledEv_ZN3Gdk5Color3setERKN4Glib7ustringE_ZTC7LCDView0_N3Gtk6WidgetE_Unwind_Resume@@GCC_3.0_ZTv0_n32_N4Glib9InterfaceD1Evgtk_hbox_new_ZN5Pango6Layout20set_font_descriptionERKNS_15FontDescriptionE_ZN3Gtk6Widget21on_selection_receivedERKNS_13SelectionDataEjnote_us__libc_csu_fini_ZN10MainWidget10init_audioEv_ZN7LCDViewC1EPKc_ZTv0_n32_N7LCDViewD0Ev_ZN3Gtk5Table6attachERNS_6WidgetEjjjjNS_13AttachOptionsES3_jj_ZN7LCDViewD2Ev_ZN10MainWidget11showLogViewEvg_byte_array_new_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE3dupEPv_ZN7LogView21on_button_press_eventEP15_GdkEventButtonKAMMERTON_LOG_ZTIN3Gtk5TableE_ZNK3Gtk6Widget10get_heightEv_ZN7LogView8setScaleEi_ZN3Gdk2GC6createERKN4Glib6RefPtrINS_8DrawableEEE_ZN3Gtk12Menu_Helpers8MenuList6insertEN4Glib17List_Cpp_IteratorI12_GtkMenuItemNS_8MenuItemEEERKNS0_7ElementE_ZN4sigc9slot_baseD2Ev_ZN3Gtk6WidgetD0Ev_ZN3Gtk6Widget23on_button_release_eventEP15_GdkEventButton_ZThn16_N8OsziViewD1Ev_ZN8OsziView11calc_minmaxEv_ZN3Gtk6Widget24on_property_notify_eventEP17_GdkEventProperty_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1__ZN3Gtk6Widget8on_focusENS_13DirectionTypeE_ZN7LogViewD2Ev_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN3Gtk4Main4quitEv_ZN3Gtk6Widget4hideEv_ZN3Gtk6manageINS_5FrameEEEPT_S3__ZN10MainWidget11setSampFreqEvgtk_label_set_justify_ZN7LCDView10invalidateEv__libc_start_main@@GLIBC_2.2.5_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv8OsziViewEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZThn16_N3Gtk9ContainerD1Ev_ZN10MainWidget12setSampNrValEi_ZN10MainWidgetC1Ev_ZThn16_N3Gtk11DrawingAreaD1Ev_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv8OsziViewEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN3Gtk6manageINS_4VBoxEEEPT_S3__ZN3Gtk12Menu_Helpers13RadioMenuElemC1ERNS_16RadioButtonGroupERKN4Glib7ustringERKN4sigc4slotIvNS8_3nilESA_SA_SA_SA_SA_SA_EE__gmon_start___ZN10MainWidget13setTuningPhysEv_ZN3Gtk6WidgetD1Evnote__cxa_pure_virtual@@CXXABI_1.3_ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE7destroyEPv_ZN3Gtk6Widget10set_eventsEN3Gdk9EventMaskE_ZTIN3Gtk6ObjectE_ZTS7LCDView_ZN3Gdk5ColorD1Ev_ZN3Gtk9Container3addERNS_6WidgetE_ZTv0_n32_N3Gtk6ObjectD0Ev_ZN10MainWidget9setSampNrEv_ZN3Gtk6Widget11on_drag_endERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZTv0_n32_N3Gtk5TableD1Ev_ZN10MainWidget13setTuningWienEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEES3_EEvRKT_RKT0__ZN3Gtk6WindowD1Ev_ZN3Gtk5Stock5ABOUTE_ZTC7LCDView16_N3Atk11ImplementorEfwrite@@GLIBC_2.2.5_ZTv0_n32_N7LogViewD1Evgtk_window_get_typeclose@@GLIBC_2.2.5_ZN3Gtk6Widget20on_key_release_eventEP12_GdkEventKey_ZN3Gdk9Rectangle5set_yERKi_ZN3Gtk10Adjustment9set_valueEd_ZN3Gtk6Widget15on_client_eventEP15_GdkEventClient_ZN4Glib6ObjectD1Ev_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE8OsziViewLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN3Gtk6Widget14show_all_vfuncEv_ZTC10MainWidget0_N3Gtk5TableEgtkguitune/guitune.h0000644000175000017500000000554111063701271013542 0ustar flohfloh// guitune.h // // guitune - program for tuning instruments (actually an oscilloscope) // Copyright (C) 1999 Florian Berger // Email: florian.berger@jk.uni-linz.ac.at // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License Version 2 as // published by the Free Software Foundation; // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // // //#include #include #include #include #include #include #include "osziview.h" #include "logview.h" #include "lcdview.h" class MainWidget : public Gtk::Table { public: MainWidget(); ~MainWidget(); int sampnr; int sampfreq; double sampfreq_exact; int blksize; int trig1; int trig2; int note_0t; int note_ht; double freq_0t; double freq_ht; double lfreq_0t; double lfreq_ht; void setTuningNorm(); void setTuningWien(); void setTuningPhys(); void setTuningEqui(); void setTuningNat(); void setScaleUS(); void setScaleUSAlt(); void setScaleGE(); void setScaleGEAlt(); void showOszi(); void hideOszi(); void showLogView(); void hideLogView(); double getTrigger(); // public slots: void setSampFreqVal( int sampfreq ); void setSampFreq(); void setSampNrVal( int sampnr ); void setSampNr(); void setTrigger(); void setTriggerVal(double value); void setAdaptive(); void setAdaptiveVal( int adaptive ); void setDSPName(const char* name); // signals: // void signalSampFreqChanged(); // void signalSampNrChanged(); // void signalTriggerChanged(); Gtk::Adjustment * i_pAdjSF; // sample freq Gtk::Adjustment * i_pAdjSN; // sample numner Gtk::Adjustment * i_pAdjTR; // trigger Gtk::CheckButton * i_pCBAdapt; // adaptive scaling private: OsziView * oszi; LogView * logview; // Gtk::Label * freqview; // Gtk::Label * nfreqview; LCDView * freqview; LCDView * nfreqview; int oszi_height; short int sample[64000]; double freqs[12]; double lfreqs[12]; char dsp_devicename[100]; int i_sampfmt; int audio_fd; sigc::connection audio_connection; bool trig; int trigpos; int got_bytes; // private slots: bool proc_audio(Glib::IOCondition cond); void init_audio(); void uninit_audio(); }; gtkguitune/resources.h0000644000175000017500000000417111062733003014067 0ustar flohfloh/*************************************************************************** resources.h - description ------------------- begin : Mon Jan 17 2000 copyright : (C) 2000 by Florian Berger email : florian.berger@jk.uni-linz.ac.at ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ // negative and positive level triggereing #define LEVTRIG(c,i,l) ( (c)[(i)]<=(l) && (c)[(i)+1]>(l) ) #define LEVTRIGN(c,i,l) ( (c)[(i)]>=(l) && (c)[(i)+1]<(l) ) // positive flank triggereing #define POSTRIG(c,i) ( (c)[(i)]<=128 && (c)[(i)+1]>128 ) #define POSTRIG_S16(c,i) ( (c)[(i)]<=0 && (c)[(i)+1]>0 ) //#define D_NOTE pow(2.0,1.0/12.0) #define D_NOTE 1.059463094 //#define D_NOTE_SQRT pow(2.0,1.0/24.0) #define D_NOTE_SQRT 1.029302237 //#define D_NOTE_LOG log(D_NOTE) #define D_NOTE_LOG 0.057762264 //#define LOG_2 log(2.0) #define LOG_2 0.69314718 //#define KAMMERTON_PHYS 16.0/pow(2.0,3.0/12.0)*32.0 #define KAMMERTON_PHYS 430.5389646 #define KAMMERTON_WIEN 435.0 #define KAMMERTON_NORM 440.0 //#define KAMMERTON_LOG_PHYS log(KAMMERTON_PHYS) #define KAMMERTON_LOG_PHYS 6.06503783 //#define KAMMERTON_LOG_WIEN log(KAMMERTON_WIEN) #define KAMMERTON_LOG_WIEN 6.075346031 //#define KAMMERTON_LOG_NORM log(KAMMERTON) #define KAMMERTON_LOG_NORM 6.086774727 #define NO 0 #define YES 1 inline int Abs( int x ) { return( (x>0)?x:-x ); } gtkguitune/Makefile.in0000644000175000017500000005622311064666173013775 0ustar flohfloh# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = : bin_PROGRAMS = gtkguitune$(EXEEXT) 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 \ depcomp install-sh missing 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 = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = am__installdirs = "$(DESTDIR)$(bindir)" binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am_gtkguitune_OBJECTS = main.$(OBJEXT) guitune.$(OBJEXT) \ lcdview.$(OBJEXT) logview.$(OBJEXT) osziview.$(OBJEXT) \ aboutbox.$(OBJEXT) gtkguitune_OBJECTS = $(am_gtkguitune_OBJECTS) gtkguitune_DEPENDENCIES = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ -o $@ SOURCES = $(gtkguitune_SOURCES) DIST_SOURCES = $(gtkguitune_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 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); }; } 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@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ GTKMM_CFLAGS = @GTKMM_CFLAGS@ GTKMM_LIBS = @GTKMM_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ 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@ ac_ct_CXX = @ac_ct_CXX@ 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_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ 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_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = icon gtkguitune_SOURCES = main.cc \ guitune.cc lcdview.cc logview.cc osziview.cc \ guitune.h lcdview.h logview.h osziview.h \ resources.h FB_logo.xpm \ aboutbox.c aboutbox.h gtkguitune_LDADD = @GTKMM_LIBS@ INCLUDES = @GTKMM_CFLAGS@ all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .cc .o .obj am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ cd $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ 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: $(am__configure_deps) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 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: $(am__configure_deps) cd $(top_srcdir) && $(AUTOHEADER) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) gtkguitune$(EXEEXT): $(gtkguitune_OBJECTS) $(gtkguitune_DEPENDENCIES) @rm -f gtkguitune$(EXEEXT) $(CXXLINK) $(gtkguitune_OBJECTS) $(gtkguitune_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aboutbox.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guitune.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcdview.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/logview.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/osziview.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(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@ mv -f $(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) '$<'` .cc.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` # 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): @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; \ (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): @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; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (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; nonemtpy = 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) tags=; \ 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 || \ tags="$$tags $$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; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ 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)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ am__remove_distdir=: \ am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ done -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -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-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) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(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) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && 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 $(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: @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 $(PROGRAMS) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done 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) 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-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-info: install-info-recursive install-man: install-pdf: install-pdf-recursive install-ps: install-ps-recursive installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ install-strip .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-binPROGRAMS \ clean-generic ctags ctags-recursive dist dist-all dist-bzip2 \ dist-gzip dist-lzma dist-shar dist-tarZ dist-zip distcheck \ distclean distclean-compile distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS 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-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ ps ps-am tags tags-recursive uninstall uninstall-am \ uninstall-binPROGRAMS # 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: gtkguitune/AUTHORS0000644000175000017500000000006111062733003012746 0ustar flohflohFlorian Berger gtkguitune/aboutbox.o0000644000175000017500000012015011064666204013715 0ustar flohflohELF>pQ@@H\$Hl$Ld$Ll$Lt$L|$HxH=t$H\$HHl$PLd$XLl$`Lt$hL|$pHxÐHHH=HE11HǺ0HHHD$0t%H|$0HHHHHHt$@1ҹHxPHt$@HIH=HHD$E1E11ɺHǾD$$H=HHHD$(HHH1H111I1ILHIE11HǹLLLE11ҹHH11LHHAHǹLLHAHL1IH=HHD$ HLAHL11ILHHHHLI1HHLHL11HHHHǾHHILHLLHt$01HALLHt$(1HALL1HAHLLAHHLLHnHHt$ H=HHLE111HHHt$HE1E11ɺHǾD$$Ht$HH HHH=vf.HH=HHHHHH=HH% $ > $ >  : ;I< : ; I : ; : ; I8 : ; I8  I 5I : ;I8 : ; I!I/  : ;  : ; I 8  : ; ( .? : ; ' @4: ; I.: ; ' @: ; I.: ; ' I@: ; I4: ; I !I/&I4: ; I? < int^&K  != # (D),-1K2DH;"7" (7# len)# %d%d  "d"u"" &# '# { Y j\cc r#ee w#  :.e: L# O# P#<. { pS#. $ -# $S# $S# $S# $S# $S#( $S#0 $S#8 $S#@ $S#H $S#P $S#X $#` $ #h $"-#p $&-#t $(=#x $,# $-# $.# $2# $;H# $D;# $E;# $F;# $G;# $Hk# $J-# $L#$$ $# $# $-# Z  S A A x # y # # #  \_ \ ,# red -# .# /# ]j8 ] C## F# G$# J*#( L#0 _ _ 3 # 4# 5# ` k0 ` ## # # # #$  #( cvUP c K## M # N# O# P#$ Q#( S#, T#0 U#4 W#8 X#< Y#@ [#D \#H ]#Lp e 2## fU gU hU j0 j ,##.# 0 # 1 # 3 # 44# m p  k2; !+R!+ !s # !A# !v#s !p      !"#!   { _  0 ,/ p  R 4; u! J u Ue# \#2U \ 2 G## fgK # bgL #T M # N # midO # P # Q # R # T# U# V# X# Y# [# \# ]# ^# _# `# a# b# c # d # f# j# l# m # n # o# r%# t# u+# v#5g Q 5 :## >7# ?i# @#H By#P fgC #d bgD # E # F # H# I# L+# O# Q#S#A\  `A  # # #" ## 7#( 1#0 щ#8 ս#@ A#P 7#X %  \  J Q ^16=y7^ # # G 1Wp 1 6Q # 87#` :#h =#h > #h ? #h @ #h-bx- 2# 47#p.. bin3W# 5A#x 77# 9#;#<#=#>#?#@#A#B#C# ?8? 1## 3# 4# 5#( 7#0 /H/ H## J# K# M#( N#0 P#8 R#@U#DW#D' ' .## 0#)  9;   ++,7,7,7,7-7-7/ 072 3 4757575779~ :j%$$w7eS"  g- BW 27 ##U /usr/include/gtk-2.0/gtk/usr/include/glib-2.0/gobject/usr/include/glib-2.0/glib/usr/lib/glib-2.0/include/usr/include/gtk-2.0/gdk/usr/include/pango-1.0/pango/usr/include/gtk-2.0/gdk-pixbuf/usr/include/cairo/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/includeaboutbox.cgtkstyle.hgtkwidget.hgtktypeutils.hgtkobject.hgobject.hgtype.hgtypes.hgdataset.hglibconfig.hgdktypes.hgdkcolor.hpango-font.hgdkgc.hgdkvisual.hgdkdrawable.hgdkfont.hgtkrc.hgarray.hgslist.hgdk-pixbuf-core.hgtktextiter.hgtktextbuffer.hgtktexttag.hgtktexttagtable.hghash.hgdkscreen.hcairo.hgtkicontheme.hgtkbutton.hgtkbin.hgtkcontainer.hgdkevents.hFB_logo.xpmstdio.h libio.h types.h stddef.h *"$Z[U?#Y;Y0U?BWY-=(e=&Ce=u!"%%#&u"=&6=KvXK guitune_logodestroyAbout Gtk-- GuituneCloseclicked66 62 65 1 c None. c #2C2617+ c #866202@ c #BA941E# c #AB9650$ c #FDEA8F% c #A0966E& c #CAB776* c #C6BA92= c #F3DD8F- c #7B7566; c #5F5530> c #FBEDBC, c #916804' c #CDB255) c #D9B83B! c #E5D08F~ c #907826{ c #502F02] c #ECE8DE^ c #EEDDA6/ c #DCBF51( c #FCF3D5_ c #CFAC30: c #524A2D< c #D6CDB6[ c #AE860E} c #B4B2AA| c #D9C2771 c #6059472 c #D6D6D53 c #DEDDDA4 c #4743345 c #F1F0ED6 c #C8A62D7 c #9D89498 c #F4D95F9 c #9E9B900 c #FCFBF8a c #73683Fb c #C8C0A5c c #6B5B23d c #E7CF77e c #CBCCCDf c #6E4B03g c #5D3C02h c #8A7B41i c #B9B8B5j c #C39F24k c #8F886Fl c #D2D2D3m c #AEAB9En c #EFE0C1o c #3B362Dp c #A78934q c #817646r c #A37908s c #C6C5C4t c #BCA553u c #E9CB54v c #442B08w c #F4DC74x c #B8A675y c #7D5702z c #B68E14 eellllllleee ee222e}9-----%9ie22lleee el2e}-::ch@'//|u|t#hqa-kmbellee eee ell}a4+p_66'&'tjzzzj_u8$$8##qh9mellee ee2s9e e2m4c[j&3]55]322333<$>($rfx03ss elk1zx05ss eel2232l&jzrzw=88dw==!^>$6ggx03ss l9;[903se el2eik-:;g7e*_jrr@!$wd88=$'gv{#03s lio670]ss e2sk1;q[z&3003ei_jzr,@d>$$_yv{g#03s e24'r]5ss e2i;:x!z,x]03eesees'j@r,,j)y{{{gp0]ss l9a[s0se el214b0r{fb03ese ss'6@[,,+vggg,55ss e24'#03s elmo90=yvfs02ss es*6@zr+{gg+30es eia[30ss el9o<0^gvf*02s ee*_@@rggf#0ls lk@p02s l}on0(g{fp03s el2222lllls'j@rf,n5s l1j*0s lb.n00,vg,30ss ellm14;cqaq%ss&j@,,0ls l1j3]s ee4b(0dvgyr02s el9o-<(((>$$u#xsb_@r0se lcj02s e%a>50rvg,x0s el1a=u_@j6)8=8u//n(!vgf,2nsel17z@s]5]3&j@zz8)6@|2sls 2q60s la*>n5/vgy[n3sl9;@l0]2ss e<'6z[6rr@^le lkj0s e2o(nn5_{g,r<]e2vt50ess es'_j@r+[j5s e}p5nn5)gf,['5em:55ss em'/_)y~[nls ee7<]s 2;b>n]5)yf,r@5sk<0ss ee78u8,yrb]s emj5es eeo>]nn5|,+,[@!3ee2s lk/w$@frt0s ee%d3e 2-%(]]>]w[r,rzj]ss 29x$>6g,@0s eex^ee lbo5(0((>=j@r,[@_]see eee l9%=>6{+@0s esx^eeee leob0|j[@6))6@[rzj),r6)u)&se sss&_j[r@j))__/@fvg,<0iaoa|d_j@66j_u))|[{ggg,]5s eku8uu8jgf+rj0s 21$^^^>fgggfp0ls emtw8u8/{gf,r0s 21$^=nwvggg,20s ei7$^w=8g{y,r0s 2;>^^>jvggfp02s esq$^^^wggf,r0s e24>nn(f{gg,30s esa>!^ndvgfyr0s e}qnn('{ggf*0nn>'{gg+[0s l-x>](f{gfp03s 2-#nnn(rvgfyt0s el4^]0jv{g~50ss e2o]]>5(f{gf+25s lm1((/{{g,30ss 2kq(]]0jvggfr03s e24<0^{{g,]0ee li.5(]0>g{g{y*0se l9a0$gvg~30labee e2io<(5((y{gggr03s ls.0=fvyp]0eem/+{ggg+30ss lso(00|gvgggys0es le4i)ffrl03ss esi))#h-a;;-n000^~{{g{fyb02s e2sox[y,*502ss eei__u=$>(0>='y{{gfffp302s ell%o'rrx503se eesj[[z[r+fffy+y,[}50es eel2l94f@#b]03ess eels&@[rrrrrr[#<503se eei71{c#<]553ess eel232!< http://www.geocities.com/harpin_floh/home.htmlThis 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.x $b0D%DzRx $bD0D\%D"w"w,E^R^,;\\%S,1S%S,OiqSqS,OU,O@@_,6VPVR^\?_sxUUwwUTwwUTQ about_cb,GDK_DRAG_ENTERythickness_IO_buf_endabout_dialogGObject_GdkRectangleGDataGDK_VISUAL_PSEUDO_COLORbtree_GtkBinrc_properties_GtkTextTagTablesize_tnormal_gcs_GtkRcStyleproperty_cacheGDK_BUTTON_RELEASEaboutbox.cGDK_MOTION_NOTIFYguint8GdkVisualGdkColorGtkButtonGDK_ENTER_NOTIFYGDK_NOTHINGmodifiedGdkFontclipboard_contents_buffersflags_GtkContainer__pad1__pad2__pad3__pad4__pad5cairo_font_options_tGSListGdkByteOrdercopyhboxGDK_DESTROY_PangoFontDescription_IO_write_baseGdkFontTypebyte_orderresize_modeGHashTablebg_gcstyleref_countts_x_origin_GtkTextLogAttrCache_GObjectclip_y_origin_GtkIconThemePrivatebg_pixmap_nameblue_shiftGDK_VISUAL_DIRECT_COLORprivate_font_descfocus_child__off64_ttitle_textGTK_RC_BASEGdkWindowGDK_SELECTION_REQUESTGdkEventTypeGtkTextTagTablegintfocus_on_click_GtkIconThemeGtkRcStyleGDK_EXPOSExthicknessGDK_DROP_FINISHED_modeGDK_VISUAL_GRAYSCALEanonymous_GdkFont_postext_aablueunsigned charallocationwindowtypereallocate_redrawstext_gcg_type_instanceneed_resizeGDK_VISIBILITY_NOTIFYprivate_fontabout_destroy_cb_old_offsetselection_clipboardsunsigned intstylesbg_pixmapicon_theme_IO_buf_baseGDK_KEY_RELEASEred_maskdark_gcGDK_SCROLLlong unsigned intGDK_PROPERTY_NOTIFYreliefdepress_on_activate_IO_write_ptrstate_unused2send_eventblack_gcuser_action_count_cairo_font_optionsGTypeGDK_CLIENT_EVENT__off_tvbox_IO_write_end_IO_save_basemid_gchashcontainergulongGDK_MSB_FIRSTtitlelabelbase_gcGtkTextBufferchildclosedcolormapGDK_SETTINGwidgetcharbaseGDK_BUTTON_PRESScolor_flagsborder_widthdepth_IO_read_baseGNU C 4.1.2 (Ubuntu 4.1.2-0ubuntu4)parent_IO_backup_base_IO_markervisualGDK_PROXIMITY_INwidthfont_desc_GtkTextBTreeGArrayGPL_textFBlogoobjectblack_GdkPixbufGTypeInstanceGtkAllocationgreenGdkBitmapFBlogomaskresolutionshort intnametext_buf_GArrayrc_style_listsgreen_precexposure_gcsGdkRectanglebits_per_rgbGdkColormapfont_options_offset_chainGdkPixmap_cur_columnGDK_FONT_FONTsizescreen_GTypeClassGDK_CONFIGURElightGDK_PROXIMITY_OUTGtkBin_GdkEventAnyrc_style_shortbuf_GSListguint16doubleguint32_GtkStylestdoutlogo_GdkDrawablelight_gchas_focus_chainGdkPixbufwindowing_dataGDK_UNMAPGtkContainer_GtkWidgettag_tablesigned charabout_ok_cbGDK_FONT_FONTSET_vtable_offsetnextGDK_3BUTTON_PRESS_GdkColormapGDK_NO_EXPOSEcopy_textin_button_GData_IO_save_endblue_precg_typehas_selectiondepressedts_y_origincopylabelGDK_VISUAL_TRUE_COLORGDK_GRAB_BROKENGtkIconThemePrivate_GtkObject_filenoGDK_SELECTION_NOTIFYGtkIconThemeGDK_DRAG_LEAVEbuttonGDK_KEY_PRESSclip_x_originengine_specified_GdkScreenguintcopy_lboxGDK_LSB_FIRSTbuffersGTypeClassGtkRcFlagslog_attr_cachecolorsfg_gc_flags2_flagsFBlogopixattach_count_GdkColor_GdkGCFB_logo_xpmabout_cbGDK_DROP_STARTGtkWidgetstdingint8GDK_MAPtext_aa_gcGTK_RC_TEXTcolormap_sizeGDK_FOCUS_CHANGE_markersuse_underlineGdkVisualTypescrolltext_GtkTextBufferdataGDK_SELECTION_CLEARtexticon_factoriesGDK_DRAG_MOTIONGtkObject/home/floh/gtkguitune_IO_read_endpixel_IO_FILEheightGInitiallyUnownedGDK_OWNER_CHANGEwhiteanon_countgreen_maskPangoFontDescriptionred_shift_lockGdkScreenlogopix_IO_read_ptrsaved_state_GTypeInstancegpointerqdatacopy_rboxprivGDK_DRAG_STATUS_sbufshort unsigned intrequisitionGTK_RC_BGlong intGtkStylegcharGdkGCGDK_WINDOW_STATE_GtkRequisitionGTK_RC_FGGDK_VISUAL_STATIC_COLORGDK_2BUTTON_PRESSGDK_LEAVE_NOTIFYfloat_GdkVisuallabel_textGtkRequisition_nextbutton_down_GtkButtondarkprivate_flagsg_classGDK_DELETEactivate_timeoutconstructedGtkTextLogAttrCachered_precparent_instancegreen_shift_GHashTableuse_stockGdkEventAny_IO_lock_twhite_gcascentGDK_VISUAL_STATIC_GRAYevent_windowGtkTextBTreedescentblue_maskGCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4).symtab.strtab.shstrtab.rela.text.rela.data.bss.debug_abbrev.rela.debug_info.rela.debug_line.rodata.str1.1.rodata.str1.8.rodata.rela.debug_frame.rela.eh_frame.debug_loc.rela.debug_pubnames.rela.debug_aranges.debug_str.comment.note.GNU-stack @Hc +` &8m 1` 6` I D8y%ZU0 f2u#Ku2&k@8E ;H<p؟Hx<M@ @0800A*>P*hPhPX @_  %%6 A hK T0  `ix+:Wfz!4AUm;Rdaboutbox.cabout_dialogFB_logo_xpmabout_destroy_cbtitle_textcopy_textGPL_textabout_ok_cbabout_cbgtk_dialog_newgtk_widget_showgtk_widget_get_screengtk_icon_theme_get_for_screengtk_icon_theme_load_icongtk_image_newgtk_image_get_typeg_type_check_instance_castgtk_image_set_from_pixbufg_object_unrefgdk_pixmap_create_from_xpm_dgtk_pixmap_newgtk_object_get_typegtk_signal_connect_fullgtk_window_get_typegtk_window_set_titlegtk_label_newgtk_label_get_typegtk_label_set_justifygtk_hbox_newgtk_box_get_typegtk_box_pack_endgtk_box_pack_startgtk_vbox_newgtk_dialog_get_typegtk_scrolled_window_newgtk_text_view_newgtk_text_view_get_typegtk_text_view_get_buffergtk_text_view_set_editablegtk_text_view_set_wrap_modegtk_text_buffer_set_textgtk_scrolled_window_get_typegtk_scrolled_window_set_policygtk_container_get_typegtk_container_addgtk_container_set_border_widthgtk_widget_set_usizegtk_button_new_with_labelgtk_widget_grab_defaultgtk_widget_show_allgtk_widget_get_typegtk_widget_destroy%Q[`glt  !"#$ %&'"   0(5)<D"I Q*V [+`  j+r,}"-../"0"1."1$"?1K2S3Zg"v"1456"7"8"9 :4;"-<2=@"K>V"p1{"1"1"1"?@  )A&"5"G1T"a i /}("BCD"EE7BKW c(o0{8@HPX`hpx #/;GS_kw (08@HP+X7`ChOp[xgs'3?H (0 8h@HP@X`hp`x8X0xP(p H  ( 0 8h @ H P@ X ` h p` x  8   X0xP(   t% ) . 5 > E }L S _ ce b l w d   a { 9   , t 7       y  > I Z Ie  k v |  s   K  w         A$ 33 ];  I 2W  f g q  |  W      D  f        * 9  H  W f ) u   \  <  i    r y  # 3 C 4T _ g u 3    ;  `    ' Q C ;Q ` o b w       ;     z  )  % w 3 fA <O  ] l {     `            +  9 G  Z b q A|             V     1 < H W S_ n } = & I  d  6   P   i        & j       1   : % S +  1 # 7 E = zC }I (O o U [  a g y m  t   +     O      $ &  . < ^K k Z c  4 .  1      o! 0  ? &N ] l {   r H    `  >  `/ > M  ] Yl u  k   G  1 o  u! 0  ?  R T a i w 3 .  k , L   F  L X R } X _       `  -  d %  S $ 5 F X Lg mo }    #    T e    %  7 I  [  m < '               g+ C9 hG  U Qc 2t   F  K      t    q H < ' , 6 9;  E oJ  T Y b c h r w   8   [  ~    K     6       p     &  0  7?G .L b V f[  e o Kz      * 0   } % C O] &ir ^  b  D Hd h H `   gtkguitune/guitune.cc0000644000175000017500000003237511063701271013705 0ustar flohfloh// guitune.cc // // guitune - program for tuning instruments (actually an oscilloscope) // Copyright (C) 1999 Florian Berger // Email: florian.berger@jk.uni-linz.ac.at // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License Version 2 as // published by the Free Software Foundation; // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // // //#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "guitune.h" #include "resources.h" //globally double KAMMERTON, KAMMERTON_LOG; void MainWidget::setTuningNorm() { KAMMERTON=KAMMERTON_NORM; KAMMERTON_LOG=KAMMERTON_LOG_NORM; logview->invalidate(); } void MainWidget::setTuningWien() { KAMMERTON=KAMMERTON_WIEN; KAMMERTON_LOG=KAMMERTON_LOG_WIEN; logview->invalidate(); } void MainWidget::setTuningPhys() { KAMMERTON=KAMMERTON_PHYS; KAMMERTON_LOG=KAMMERTON_LOG_PHYS; logview->invalidate(); } void MainWidget::setTuningEqui() { logview->set_nat_tuning(false); } void MainWidget::setTuningNat() { logview->set_nat_tuning(true); } void MainWidget::setScaleUS() { logview->setScale(LogView::us_scale); } void MainWidget::setScaleUSAlt() { logview->setScale(LogView::us_scale_alt); } void MainWidget::setScaleGE() { logview->setScale(LogView::german_scale); } void MainWidget::setScaleGEAlt() { logview->setScale(LogView::german_scale_alt); } void MainWidget::showLogView() { logview->show(); } void MainWidget::hideLogView() { logview->hide(); } void MainWidget::showOszi() { oszi->show(); } void MainWidget::hideOszi() { oszi->hide(); } double MainWidget::getTrigger() { return(oszi->getTrigFact()); } void MainWidget::setSampFreqVal( int sampfreq ) { i_pAdjSF->set_value(sampfreq); } void MainWidget::setSampFreq() { sampfreq = (int) i_pAdjSF->get_value(); // timer->stop(); init_audio(); // timer->start(0); oszi->setSampleFreq(sampfreq_exact); // emit signalSampFreqChanged(); } void MainWidget::setSampNrVal( int sampnr ) { i_pAdjSN->set_value(sampnr); } void MainWidget::setSampNr() { sampnr = (int) i_pAdjSN->get_value(); // emit signalSampNrChanged(); } void MainWidget::setTrigger() { oszi->setTrigFact(i_pAdjTR->get_value()); // emit signalTriggerChanged(); } void MainWidget::setTriggerVal(double value) { // oszi->setTrigFact(value); i_pAdjTR->set_value(value); // i_pAdjTR->changed(); // emit signalTriggerChanged(); } void MainWidget::setAdaptive() { bool active; active = i_pCBAdapt->get_active(); oszi->setAdaptive((int)active); } void MainWidget::setAdaptiveVal( int adaptive ) { i_pCBAdapt->set_active((bool)adaptive); } void MainWidget::setDSPName(const char *name) { // timer->stop(); strcpy(dsp_devicename,name); init_audio(); // timer->start(0); } void MainWidget::init_audio() { printf("initializing audio at %s\n",dsp_devicename); uninit_audio(); audio_fd = open(dsp_devicename, O_RDONLY); if (audio_fd == -1) { perror(dsp_devicename); exit(1); } fcntl(audio_fd,F_SETFD,FD_CLOEXEC); // ioctl(audio_fd, SNDCTL_DSP_RESET, 0); if( strcmp(dsp_devicename,"/dev/stdin")==0 ){ printf("reading data from stdin\n"); blksize=32; printf(" blocksize=%d\n",blksize); printf(" sampfreq=%d\n",sampfreq); sampfreq_exact=sampfreq; }else{ ioctl(audio_fd, SNDCTL_DSP_SETDUPLEX, 0); {int caps; ioctl( audio_fd, SNDCTL_DSP_GETCAPS, &caps ); printf("OSS-Version %d\n", caps & DSP_CAP_REVISION ); printf(" DUPLEX = %X\n",caps & DSP_CAP_DUPLEX ); printf(" REALTIME = %X\n",caps & DSP_CAP_REALTIME ); printf(" BATCH = %X\n",caps & DSP_CAP_BATCH ); printf(" COPROC = %X\n",caps & DSP_CAP_COPROC ); printf(" TRIGGER = %X\n",caps & DSP_CAP_TRIGGER ); printf(" MMAP = %X\n",caps & DSP_CAP_MMAP ); } blksize=8; // 2^8 = 256 ioctl(audio_fd, SNDCTL_DSP_SETFRAGMENT, &blksize); // ioctl(audio_fd, SNDCTL_DSP_SETBLKSIZE, &blksize); ioctl(audio_fd, SNDCTL_DSP_GETBLKSIZE, &blksize); printf("blocksize=%d\n",blksize); //blksize=4096; ioctl(audio_fd, SNDCTL_DSP_SYNC, NULL); // int a_sampsize = 8; // int a_sampsize = AFMT_U8; i_sampfmt = AFMT_S16_LE; ioctl(audio_fd, SNDCTL_DSP_SAMPLESIZE, &i_sampfmt); int a_stereo = 0; ioctl(audio_fd, SNDCTL_DSP_STEREO, &a_stereo); int a_speed = sampfreq; printf("sampfreq=%d\n",sampfreq); ioctl(audio_fd, SNDCTL_DSP_SPEED, &a_speed); ioctl(audio_fd, SOUND_PCM_READ_RATE, &sampfreq); printf("sampfreq=%d\n",sampfreq); sampfreq_exact=sampfreq; } //int mixer = open("/dev/mixer", O_RDONLY, 0); //int vol=0xFFFF; //ioctl(mixer, SOUND_MIXER_WRITE_MIC, &vol); //printf("MIC-Volume=%d\n",vol); //close(mixer); // printf("close(audio_fd)=%d\n",close(audio_fd)); // printf("close(audio_fd)=%d\n",close(audio_fd)); trig = false; got_bytes = 0; audio_connection = Glib::signal_io() .connect(sigc::mem_fun(this, &MainWidget::proc_audio), audio_fd, Glib::IO_IN | Glib::IO_HUP); } void MainWidget::uninit_audio() { audio_connection.disconnect(); if (audio_fd != -1) { ::close(audio_fd); audio_fd = -1; } } MainWidget::MainWidget() : Gtk::Table(7, 4) { int i; //InitAudio(); // setMinimumSize(490,240); set_row_spacings( 12 ); set_col_spacings( 12 ); KAMMERTON=KAMMERTON_NORM; KAMMERTON_LOG=KAMMERTON_LOG_NORM; strcpy(dsp_devicename,"/dev/dsp"); sampnr=1024; sampfreq=11048; audio_fd = -1; init_audio(); printf("Audiodriver initialized\n"); freqs[0]=KAMMERTON; lfreqs[0]=KAMMERTON_LOG; for(i=1;i<12;i++){ freqs [i] = freqs [i-1] * D_NOTE; lfreqs[i] = lfreqs[i-1] + D_NOTE_LOG; } oszi = new OsziView; oszi->setSampleFreq(sampfreq_exact); logview = new LogView; // Gtk::Style style = new Gtk::Style( new void ); // Gdk_Font font("-*-helvetica-bold-r-*-*-15-*-*-*-*-*-*-*"); // get_style()->set_font( font ); // freqview = new Gtk::Label("freq"); // nfreqview = new Gtk::Label("nfreq"); freqview = new LCDView(""); freqview->set_size_request(100,20); nfreqview = new LCDView(""); nfreqview->set_size_request(100,20); // nfreqview->set_style( style ); i_pAdjSF = new Gtk::Adjustment( 11024.0, // value 5000.0, // lower 48000.0, // upper 1.0, // step inc 100.0, // page inc 0 // page size ); i_pAdjSN = new Gtk::Adjustment( 1024.0, // value 100.0, // lower 10000.0, // upper 1.0, // step inc 100.0, // page inc 0 // page size ); i_pAdjTR = new Gtk::Adjustment( 0.6, // value 0.0, // lower 1.0, // upper 0.05, // step inc 0.1, // page inc 0 // page size ); attach( *oszi, 0, 1, 0, 5 ); attach( *manage( new Gtk::Label("Freq:") ), 1, 2, 1, 2, Gtk::AttachOptions(), Gtk::AttachOptions() ); attach( *freqview, 2, 3, 1, 2, Gtk::FILL, Gtk::AttachOptions() ); attach( *manage( new Gtk::Label("Tune:") ), 1, 2, 2, 3, Gtk::AttachOptions(), Gtk::AttachOptions() ); attach( *nfreqview, 2, 3, 2, 3, Gtk::FILL, Gtk::AttachOptions() ); Gtk::Frame *adj_frame = new Gtk::Frame("Adjust:"); Gtk::Table *adj_table = new Gtk::Table(6, 4); adj_table->set_row_spacings( 12 ); adj_table->set_col_spacings( 12 ); adj_frame->add( *manage( adj_table ) ); adj_table->attach( *manage( new Gtk::Label("SF:") ), 1, 2, 1, 2, Gtk::FILL, Gtk::AttachOptions() ); Gtk::SpinButton *spin_sf = new Gtk::SpinButton( *i_pAdjSF ); adj_table->attach( *manage( spin_sf ), 2, 3, 1, 2 ); adj_table->attach( *manage( new Gtk::Label("SN:") ), 1, 2, 2, 3, Gtk::AttachOptions(), Gtk::AttachOptions() ); Gtk::SpinButton *spin_sn = new Gtk::SpinButton( *i_pAdjSN ); adj_table->attach( *manage( spin_sn ), 2, 3, 2, 3 ); adj_table->attach( *manage( new Gtk::Label("Trig:") ), 1, 2, 3, 4, Gtk::AttachOptions(), Gtk::AttachOptions() ); Gtk::SpinButton *spin_tr = new Gtk::SpinButton( *i_pAdjTR ); adj_table->attach( *manage( spin_tr ), 2, 3, 3, 4 ); i_pCBAdapt = new Gtk::CheckButton( "Adapt" ); adj_table->attach( *manage( i_pCBAdapt ), 2, 3, 4, 5 ); attach( *manage( adj_frame ), 1, 3, 3, 4, Gtk::FILL, Gtk::FILL ); attach( *manage( new Gtk::Label( "" ) ), 1, 3, 4, 5, Gtk::AttachOptions() ); attach( *logview, 0, 3, 5, 6, Gtk::EXPAND | Gtk::FILL, Gtk::AttachOptions() ); logview->set_size_request(0,86); spin_tr->set_digits(2); i_pAdjSF->signal_value_changed().connect( sigc::mem_fun( this, &MainWidget::setSampFreq ) ); i_pAdjSN->signal_value_changed().connect( sigc::mem_fun( this, &MainWidget::setSampNr ) ); i_pAdjTR->signal_value_changed().connect( sigc::mem_fun( this, &MainWidget::setTrigger ) ); i_pAdjSF->signal_value_changed().connect( sigc::mem_fun( oszi, &OsziView::invalidate ) ); i_pAdjSN->signal_value_changed().connect( sigc::mem_fun( oszi, &OsziView::invalidate ) ); i_pCBAdapt->signal_toggled().connect( sigc::mem_fun( this, &MainWidget::setAdaptive ) ); } bool MainWidget::proc_audio(Glib::IOCondition cond) {int i,j,r,got_samples; unsigned char *c; short int *s; unsigned char * sample_uc; short int * sample_s16le; double ldf,mldf; char str[50]; sample_uc = (unsigned char *)sample; sample_s16le = (short int *)sample; c = sample_uc; s = sample_s16le; r = read(audio_fd, c + got_bytes, blksize); if (r == -1) { g_critical("error reading audio: %s", strerror(errno)); uninit_audio(); return false; } if (r == 0) { g_critical("EOF on audio"); uninit_audio(); return false; } got_bytes += r; got_samples = got_bytes; if (i_sampfmt == AFMT_S16_LE) got_samples /= 2; if (!trig) { // Look for a trigger trigpos=0; if(i_sampfmt==AFMT_U8){ for( i=0; i= sampnr) { if(i_sampfmt==AFMT_U8) oszi->setSampleData( sample_uc + trigpos, sampnr ); else if(i_sampfmt==AFMT_S16_LE) oszi->setSampleData( sample_s16le + trigpos, sampnr ); freq_0t = (double)sampfreq*oszi->get_freq(); lfreq_0t = log(freq_0t); while ( lfreq_0t < lfreqs[0]-D_NOTE_LOG/2.0 ) lfreq_0t+=LOG_2; while ( lfreq_0t >= lfreqs[0]+LOG_2-D_NOTE_LOG/2.0 ) lfreq_0t-=LOG_2; mldf=D_NOTE_LOG; note_0t=0; for( i=0; i<12; i++ ){ ldf = fabs(lfreq_0t-lfreqs[i]); if (ldfchange_lfreq(lfreq_0t); sprintf(str,"%0.3f",freq_0t); freqview->set(str); double nfreq_0t=freqs[note_0t]; while( nfreq_0t/freq_0t > D_NOTE_SQRT ) nfreq_0t/=2.0; while( freq_0t/nfreq_0t > D_NOTE_SQRT ) nfreq_0t*=2.0; sprintf(str,"%0.3f",nfreq_0t); nfreqview->set(str); // printf("Note: %s (%lfHz) Freq=%lf\n", // note[note_0t],freqs[note_0t],freq_0t); trig = false; got_bytes = 0; } return true; } MainWidget::~MainWidget() { uninit_audio(); } gtkguitune/main.o0000644000175000017500000114150011064666177013032 0ustar flohflohELF>h@@/01235679;<>?ACDFHJKMOQSUWY[]_agiknpHHÐfDfDf.US1HH=HHHu HH uщ111tiH=ھ1HT$1Mt$HT$1ɿDtx8uH[]H H[]1M|$uH H z@H333333?H/dev/dspHH V,AWAAVAUATIUSH(H$H|$H$dH%(H$1HH1HHICLl$LAE-AE-t!CHL tt uCA$HcADA}t A$MluDA<$HcHHT$H$HA<$HHH~:A4$HD$DFA9Hu H8uHH9A~0HD$H $E$H8BHQHA9HHTuE<$AGA$1MH$dH3%(u$H([]A\A]A^A_H$HT$E<$HATI1HUHLS LHUHtPH] uLHD1HU1LHHEHH Hu[]L A\fHw $HH=1HH=1HغѺʺH=1HAWAVAUATUSHdH%(H$1|$LHt$@H$HL$LHT$@H$H$H$$IعyH$pHT$@Ht$LH$|H$H$H$5H$5H$5H$XHHHHD$XHHHHD$HHſ@HHHs0H$L$HCHCHFHCHC HC(H$HLH$L$LH@H$LLHHEHP(H$0HDŽ$8H$@H$0HHHLLXHHHHD$HL$HLH$L$XL`HHHs0H$HCHCHCH$HC HC(HV HFHFLfH$L$HLH$L$LH@H$LLLHHEHP(H$PHDŽ$XH$`H$PHHHLLH$L$XL`HHHs0H$HCHCHCH$HC HC(HN HFHFLfH$L$HLH$L$LH@H$LLLHHEHP(H$pHDŽ$xH$H$pHHHLLH$L$XL`HHHs0H$HCHCHCH$ HC HC(HF HFHFLfH$ L$HLH$L$LH@H$LLLHHEHP(H$HDŽ$H$H$HHHLLH$ HHEHP(H$HDŽ$H$H$HHHL$LH$L$XL`HHHs0H$HCHCHCH$0HC HC(HV HFHFLfH$0L$HLH$L$0LH@H$LLLHHEHP(H$HDŽ$H$H$HHHLLH$L$XL`HHHs0H$HCHCHCH$@HC HC(HN HFHFLfH$@L$ HLH$ L$@LH@H$LLLHHEHP(H$HDŽ$H$H$HHHLLXHHHHD$ HL$HLH$L$XL`HHHs0H$HCHCHCH$PHC HC(HF HFHFLfH$PL$@HLH$@L$PLH@H$0LLLHHEHP(H$HDŽ$H$ H$HHHLLH$L$XL`HHHs0H$HCHCHCH$`HC HC(HV HFHFLfH$`L$`HLH$`L$`LH@H$PLLLHHEHP(H$0HDŽ$8H$@H$0HHHLLH$L$XL`HHHs0H$HCHCHCH$pHC HC(HN HFHFLfH$pL$HLH$L$pLH@H$pLLLHHEHP(H$PHDŽ$XH$`H$PHHHLLH$L$XL`HHHs0H$HCHCHCH$HC HC(HF HFHFLfH$L$HLH$L$LH@H$LLLHHEHP(H$pHDŽ$xH$H$pHHHLLXHHHHHIH$11D$<T$<H=1|$ $ >   II!I/ < &  I &I: ;I : ; : ;I8  : ;  : ; I8 I : ; ( I : ;  : ; I8 5I : ;  : ; I: ; 9: ; : ;  : ;!< " : ; #I8 2 $.? : ;< %I4 & : ;'4: ; @I? < (9: ; ):: ; *9: ; +.? : ; I< ,.? : ;I< -.? : ;I< ..? : ;< /.? : ;I< 0.? : ; @I< 1.? : ; I< 23G : ; 4G : ; 5.? : ; < 6.? : ; @I< 7.? : ; @< 8.? : ; @< 9 I:.? : ; < ;4: ;@I? < < : ;I8 2 =.? : ;@I2 < >.? : ;@2 < ?.? : ;@I2 < @.? : ;@I< A.? : ;@I< B.? : ;@< C.? : ; @I2 < D.? : ;@I< E.? : ; @I< F4: ; @I? <  G4: ; @I? <  H4: ;@I? 2 < I< J.? : ;@I< K.? : ;2 < L.? : ;@2 < M.? : ;@2 < NG : ;O.? : ;2 < P.? : ;< Q!R4: ; @I? <  S : ; I8 2 T.? : ;I< U.? : ; @2 < V.? : ; @I2 < W.? 4 < X.? : ; @I< Y.? : ; @2 < Z.? : ; 2 < [.? 4 < \4: ; I< ]4: ; I<  ^9: ; _ : ; `< a9: ; b : ; I8 2 c.? : ; @2 < d.? : ;@< e.? : ; I@f:: ;g: ; Ih4: ; Ii4: ;I j4: ;I k4: ;Il Um1UX Yn1o1UX Yp1q1UX Y r1X Y s1X Yt1X Yu1X Yv1UX Y w4: ;Ix Uy1X Y z : ;{.? : ; @I< |G : ; } I8 4 ~.? @I4 < .? : ; L < .? : ; @IL M < .? : ; @L M < .? : ; @IL M 2 < .G: ; I4 .G : ; I: ;I : ; I.G  .G: ; .G@: ; I.G@ I4 4: ; I: ; I : ;I4: ; I .: ; I@.? : ; @@ .? : ; @@4: ; I .? : ; @I@!I/4: ; I 4: ; I? < 4: ; I< 4: ; I< 4G 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < F0,eintllll!=!MIel8 L8#>8(E *)*+l*,e*-S*10*2E*H *R   =***H#*H#=Y",XPXX #X!S#X"#W/[ap W1WC7WD WE WHWJWK#WL!#WM6#WN!#WO!# WPG#(WQX#0WRX#8WTn#@WW#HWXX#PWY#XWZ#`W\#hWd#pWe #xWf#Wg #Wi6#Wj#WlP#  ! 6^ 'A< X AM n A ^^ A  t       P  i ^ ^ p   6  p&P^  <tm8!!e#!e#!e#!e# !e#!e#!e#!e#!e# !l#(!#0 > eR"SR%R&#R'S#R(S#7"d p^ Q"Q%Q&#Q'#` ```'`)#`*Q#`,W#`-t#`/]# `1S#(`2t#,`3t#0`5#8`7c#@`8c#H`:#P`;#X``?ref`@#`A#get`E#` F0`K`M#`N#`Q#`R#`UF# `V#(`"j   c  Fi`H ^ c S^ c^ c F   cN,O E#E###Y6\i6ck  6p6rU #6e  6u6w #` S* t5:  5K5L #5O #5PO # .    e##### #(#0#8#@#H#P#X #`  #h"e#p&e#t(s#x,>#-L#.#2 #;~#D#E#F#G#H%#Je#L #> cEE M( PQ RNe#S #n s# #  # #e#{  t  XE  4142 #3h  2+ Q 22Q #2 #2#<2o      !"# std6 7%X,ZH]i_bijn_owpqrtvwy4|Q}n~ !Df Olքצd e g5hOifj~klmno s&tMvnwxz{|} !>Ul?b:;GH  >,fMl  > e,S0  > e,e ,z%  % ,qe (O0abs 00div     ,l* , ,}  > e,  > e,]  >,c  >. e,5 .I I +fe I,~e I,e I+e I,e I,e I  ,  e I+&I  ,Ma% % % I+nI   I,e I l e,e I  ,l I,e I1)e,  .! ,>e e I+UBe e+le +e  . I.- I ,2e I e %1I+ ,Ye e I+9"e  9 ,bee % 2,e I  9,e  9,ie %  9,e   9G`58#9#?#E#F# G#(H#0I#8J#@K#HL#PM#QO#RQ#SS#TU#U\#V]#W`#Xb#Yd#Zf#[m#\n#]+c} e 1pH/1!+! +! V+! +!  V, !  $ +@ !  +W !  +} !% %  _ , &  e,    ,   e ,    ,!e  ,7!fe e,U!ne 2,s!e 2,!  / ,!V%  % !} ,!4%   % !,".e "" } ,2"a%  n % !,O"   ,g"  ,"ye  % 2,"e  2,"  ,"e  9, #e  9,0#e  %  9,R#e   9,o#e  9,#e  9,#8%  !+#  +#e  +$e  +$  +:$%  ,a$8%  %  +x$% +$   %+$e   %+$   %,%g% % % !+$%%  ,A%(  A%,d%7  A%+%   A%,%,l  A% e,%00  A% e+%%   %,&*e ,$& e   %,F&   %,h&   %,&   %,&te 2,&e 2+&А  +&  +'Ӑ  +,'  ,N'   %,k'<  A%,'  A% e,'  A% e3%@4(0.35'.A%(5'.C%( (5 (.H%(%e6+(.K% ) (6L(.N% ) (6r(.S%( 0 7(.]%( 06(.a%% )7(.g%( (8.k%( 99'9) ')4h)J1#'#58)/a%h)5Q)/c%h) n):/i%h)%e)9t) ) ~) G!e4z<J8;K z<<K#  =)K%<=*K%< =4*K<%<=R*K 6%<=p*K$6%<>*K(%<=*K/%%< 0 >*K7%< 0 0 =+K?%%< 0 0=&+KG~)%< >I+KP  0>l+KY  0>+Kb 0 >+Ku 6 6>+Ky < <>+K} >,K  >D,L%< 0 0 0>^,L%<?K<.,K%<5,L%< n)5,L%< <5,L%< < 0 05-L%< < 0 0 n)5&-L%<  0 n)5D-L%<  n)5g-L%< 0 n).-K%<%e@-K<%< <@-K<%< @-K<%< @.K6%<@".K<%<A?.endK6%<A\.endK"<%<@y.K+%<@.K4%<@.K=%<@.KF%<@.KN%%<@ /KT%%<@'/KY%%<BJ/Lm%< 0 Bh/Kt%< 0@/K|%%<B/L%< 0B/K%<@/K~)%<@/K(%< 0@0K(%< 0A>0atK(%< 0A_0atK(%< 0@0K<%< <@0K<%< @0K<%< @0LI<%< <@1LZ<%< < 0 0@:1L.<%<  0@\1K3<%< @1L<%< 0 B1KV%< 61L<%< <@1Kt<%< < 0 0@2L<%<  0@72K<%< @^2K<%< 0 B2K%< 6 0 @2K<%< 0 <@2K<%< 0 < 0 0@ 3Ll<%< 0  0@13K<%< 0 @]3K2<%< 0 0 @3KC6%< 6 @3K[<%< 0 0@3Kk6%< 6@3K6%< 6 6@ 4K<%< 0 0 <@V4K<%< 0 0 < 0 0@4L<%< 0 0  0@4K<%< 0 0 @4K<%< 0 0 0 @5K<%< 6 6 <@A5K<%< 6 6  0@m5K+<%< 6 6 @5K@<%< 6 6 0 @5Kd<%< 6 6 @6Ko<%< 6 6  @16Ky<%< 6 6 6 6@b6K<%< 6 6 < <=6L<%< 0 0 0 =6L<%< 0 0  0C6L 0 n)@7L%%< 0 0B67L%< <@S7K%<@p7K%<@7K)%<@7L%%<  0 0@7K%%< < 0@8K(%%<  0@.8L%%< 0@U8KF%%< < 0@8L%%<  0 0@8Kb%%<  0@8L%%< 0@8K%%< < 0@"9L%%<  0 0@I9K%%<  0@p9K%%< 0@9K%%< < 0@9L(%%<  0 0@9K%%<  0@:K%%< 0@8:K%%< < 0@d:L=%%<  0 0@:K%%<  0@:LI%%< 0@:K5%%< < 0@;LT%%<  0 0@,;KR%%<  0@S;Li%%< 0@z;Kr)%< 0 0@;Ke%< <@;L}e%< 0 0 <@;Le%< 0 0 < 0 0@ <Le%< @L<Le%< 0 0 DLe%< 0 0  0 %< )))9)9<9)4<)KK%#K%#K)#4>)K#<#'L?z<'LD'LP>EK<6T=K~)%>6p=K~)%>7=K%<7=K%<7=K%< 06=K%<6=K%< n) n)@%>L< 0 0 n)7B>K%< n)B`>L%< n)6|>K%<DL]%< n) 0>%> <4AFDFFi FFj FFk FFl FFm FFn FFo  GallFq ? <FA#HF!AHF$AHF*AHF9v!?HFc Iid5?F|%A5 @F%A A5"@F%A 5E@F%A A  e5h@F%A A A e5@F%A%e6@FA%A AJ<)6@F@%A6@F~)%A A6 AF~)%A A@(AF> AJFAKUAF=%A ALF@LFC=AFFe eMFI%A A A eW? AA >9A >ANzB?F<F%#HF)>2BF%zB BOLBidF%zB BP`BidF%zBDF%%BA9B ABN'EW?(F<F)#<F'E#<F%#<F'E#<F># HF8EHF8EHF8EHF8EHF8EHF8EHFCE>CF%A>CF%AKCF %A YE %KCF %A  %KDF %A %KDF%A%eK9DF%A YE>XDF%A YE=vDF~)%A>DF!%A dE e>DF$%A dE NE>DF'%A dE B>EF*%A B -EMF2%A -E %-E3E ?CEBQNENEQTE B9_E B_E$B0$ȀEE Z+E$e jE+E$  uE+E$uE +E$jE NEFW^ ;^ EF;^ D^ a aNH6Mz<M|#.|FM%H.FM%H H@FM(%#H@FM%#H@FM.H%H@GMJF%H e@,GM.H%H@NGMJF%H e@pGM(%#H 4H@GM.H%H 4H@GMJF%#H 4H@GM.H%H 4H@GMJF%#H 4HDMH%#HJF9H )H JF9JF9:H 4H{-K-LH#-MH#7H-P H H7H-T%H H H7H-W%H7H-Z%H H8-]%H?H9?H(I'CIO   *(h    *)         ' 44{\CIEREz<<Er@#5JE%{\5JE%{\%e58JE%{\ \@ZJE\%{\ \BxJE%{\ \.JE %{\ \.JE%{\ \ % %.JE%{\  %.JE%{\ .KE#%{\ % .-KE)%{\ % @OKE5\%{\ \@qKE6\%{\ @KE7\%{\ @KE8\%{\ @KE:\%{\ \@LE;\%{\ \ % %@*LE<\%{\  %@LLE=\%{\ @sLE>\%{\ % @LE?\%{\ % @LEF\%{\ \@LEG\%{\ @MEH\%{\ @"MEI\%{\ B@MEJ%{\ B^MEK%{\ @MEM\%{\ \@MEN\%{\ \ % %@MEO\%{\  %@MEP\%{\ @NEQ\%{\ % @CNER\%{\ % @jNEY\%{\ % \@NEZ\%{\ % \ % %@NE[\%{\ %  %@NE\\%{\ % @OE]\%{\ % % @FOE^\%{\ % % @mOE`II%{\ II @OEaII%{\ II BOEb%{\ II % BOEc%{\ II % @PEj\%{\ % % \@FPEk\%{\ % % \ % %@wPEl\%{\ % %  %@PEm\%{\ % % @PEn\%{\ % % % @QEo\%{\ % % % @1QEq\%{\ II II \@bQEr\%{\ II II  %@QEs\%{\ II II @QEt\%{\ II II % @QEu\%{\ II II % B RE|%{\@0RE}\%{\ % %@MRE~\%{\@oREII%{\ II@REII%{\ II II@REe%\ \@REe%\ @SEe%\ % % \@[E%\@[[E%\@[E%%\ % %@[E%~)%\@[E(~)%{\ \@[E+~)%\ \@\E3~)%\@'\E6I%\ I@D\ECI%\@a\EJI%\DEQI%\I9\ I9I9\ @\9II9OI4]IIEeSE{JF#.\E%].\E%] ]6]Ep%]61]Er\%]6R]Es]%] e6n]Et\%]6]Eu]%] e.]E%] JFDEJF%]\9] \] !(a+(h^,                                     7^ 2 XB _ 2 Z7)_ Z7E_ 2 XBb_ 2 7~_ 7_ XB_ Z7_  Z7_ XB ` 7(`  7D` 2 Dn7``w 2 B}`  2 ۬B` 2 ~7` ~7` Dn7`w B a  ۬B(a ~7Da  ~,\a ,ya@ F TH 4a],%,&#,a,'a#:,(%a aaa a4,cB.35b.A%Cc50b.C%Cc Ic5Jb.H%Cc%e6kb.Ka%Tc 7c6b.N,c%Tc =c6b.Sa%Cc 0 7b.]%Cc a 06b.a%%Tc7c.g%Cc a =c8.k%Cc a2c a9a92ca9Oc aOc4c/S#a#5c/a%c5c/c%c c:/i%c%eZc9c Zc4dH.35c.A%e5c.C%e e5d.H%e%e68d.Kd%'e e6Yd.Nd%'e e6d.Sd%e 0 7d.]%e d 06d.a%%'e7d.g%e d e8.k%e de 99ec9"e c"e4e/S#c#5Ve/a%e5oe/c%e e:/i%e%e-e9e -eNf-<-8#=e-;d%f>e-?%f d@f-FZc%f@1f-JZc%f.Kf-M%f c.ff-R%f%e7~f0E%fBf-Y%f -e -e -e -eef eN{l-#e#=g-d%{l =c.g-%{l c.@g-%{l 0 =c c.Zg-%{l l6{g0xl%{l lBg- %{l 0 =c@g-:Zc%l@g-C%{l@g-L%lAhend-U%{lA/hend-^%l@Lh-g%{l@ih-p%l@h-y%{l@h-%l@h-~)%l@h-%%l@h-%%l7i0i%{l 0 a@9i-7c%{l@Vi-=c%l@si-7c%{l@i-=c%lBi-%{l =cBi-%{lBi-%{l =cBi-%{l6$j0U%{l  =cBLj-&%{l  0 =c6mj0_%{l @j-g%{l  Bj-x%{l lBj-%{lBj-%{l  lBk-%{l  l BCk-%{l  l  7`k0%{l =c7xk0%{l7k0%{l lBk-%{l7k0%{lUk0%{l 0 =c>l-c%{l  0 =c>;l-l%{l   >_l-q%{l  =cM-y%{l f9l f9fl4Dm],3S,Mf#S,N~)#7l,9%Dm a7m,>%Dm 7m,B%Dm5-m,D%Dm:,I%Dm%el4>nh^,iS,Dm#5ym,j%>n5m,l%>n Dn6m,nOn%>n Dn5m,p%>n%e7m,}%Un a7 n,%Un 7$n,%>nV,Dm%UnJm9Jn Jm9JmJn4wnn^1@W%^4nt^9#[n#W%R4o^06#Jm#a@n#Fn#Kn#Nn# Q#(5%oS%o n n n5?oV%o%e7Woa%o0sodupgo%o7oo%o n7ov%oX no n4#p^o#5 p%#p o8%)p Uno/p o4p ^o#5gp%p o8%p Un4pp 4p4Urz^#[n#8o#;~)#5p%Ur5p%Ur o5 q%Ur [r5%q%Ur%e6Aq~)%fr7cq%fr aBq%fr aBq %fr @q~)%fr@q~)%fr@r!~)%Ur ~)@r&~)%UrB6r+%UrD4lr%Ur [rp9ar par9p4 t^T)ST{Ur#5rT+% t5rT0% t t5rT=% t lr6rTBt% t t5sTK% t%e6*sTP~)% t6FsTU~)% t6bsTZ~)% t6sTa~)% t ~)6sTf~)% t7sTi% t6sTn~)% t6sTs YTv% t Urrr9t rr9rrt9,t ^4ht\I# # #4tbI$S3t#5t&%t t6t)Ur V6t%t thIht9ht9t ht4vnIE#ht#Smv#51uG%(v%e7IuJ%(v7euO  ZuX%(v t vCu_lr%(v [r ~)Cujlr%(v [r ~)Curlr%(v [r ~)Vu.v%(v 4v#v 1tt9t9:v tN w^#p#Bnv% w.v%w.v%w w@v w%w w[v%w%e.v%w X$%w ۬w ?v?v9w9?vNw^C#?v#.Qwc%w.kwl%w &t.wi%w X[w%w%e$i%w ۬&w(hx:&\;4 ];5hx*h/?];6hxdHI?];7hx~?];8hx?];9hx333333?];:hxHգp= ?];;hxS? *<^Atk=.xGdk>=_>t  CzGtk?        (y@0     `7y ^%/ 58 \%/ 5 *AJ*B0 6y9C C6y9x x 6 z9  aC-'DCs{'Ds{4g{y?$bid_?5I#5rz?&%g{5z?'%g{ m{5z?(%g{ \5z?)%g{ 5z?*%g{%e5z?,%g{ x{6{?-{%g{ x{62{?/~)%{ x{6N{?1I%{X?2%{Cz9s{ y9~{ Cz9Cz~{4|y*SWt#SXx#SYI#5{,%|5{4%| t x \5|=%| \ \56|?%| |6W|A }%| |6s|C~)%}6|Ht%}6|Lx%}6|PI%}6|TI%}W%|%e{9} {9{}4*~yP0SPJ#5E}P2%*~5^}P3%*~ 0~6}P5;~%*~ 0~Z}P8%*~ c}addPC%*~ A~c}addPD%*~ G~c}addPE%*~ M~c~addPF%*~ X~VPH %}96~ }9}9y9"y9S~ {I9(y4I'4S'#5~'%5~'%%e5~'% 5~'% 7~'% 6'% @9' ~)% @['~)% 6w'%@'~)%d'%.y^~9 ^~9^~4?y .S ?^~#5 2%5 3% 5/ 4%%e6K 6%Ui :% Y ;% |9.y 4aEy L##5ɀ O%a 5 U%a \ &t5  ]%a \ | &t5( c%a \ g5K l%a \ | gW%a%e9y4Ky p##5 r%W%%em4_Qy ##5 %_ x{ &t5 %_ x{ | &t5& %_ x{ g5I %_ x{ | gW%_%e4Wy ##bgr_ *~#5 % G~5ł % ;~ \ &t5 % ;~ \ | &tW%%ee4%I 8W%64I # # ̕# S#6w ~)% 6 ~)% 5 % S5ʃ %5 % 6 %6 %67 %@Y %% e@v %D %% eS %9%9S9%4؄ yD1idD2# UkUl#Uoe#Up#valUqe#ee ef xf !4yg eg >h ei exi exi >xjkit  zxi Lxk Ck jwin zxlk $xk %k *xk +jgr3 ,}xjgr2 4}xk <xk =jgr1 >}xk Kjgr0 L}Ќxk fxk gk mxk nm 'nnojnnmznpq&nnnprչ'ns); 'nQnFrf _nqr RprZ n|ppnet 's 'nuCpmΈ .n noAn nonѶnƶm% .n;n0oNjndnYmdwnpvF&nnnprչ'ns; .nQnFrf _nqr RnrZ n|ppnet .sL .nuCpm 0n noAn nonѶnƶmNJ% 0n;n0oNjndnYm+wnpv &nnnprչ'ns; 0nQnFrf _nqr RnrZ n|ppnet 0s 0nuCpm\ 2n noAn nonѶnƶm% 2n;n0oNjndnYmwnpvԌ&nnnprչ'ns~; 2nQnFrf _nqr RnrZ n|ppnet 2sڍ 2nuCpsf; 3nQnFrf _nqr RnrZ n|ppnet 3mǎ 6n noAn nonѶnƶm% 6n;n0oNjndnYm]wnpv?&nnnprչ'ns; 6nQnFrf _nqr RnrZ n|ppnet 6sE 6nuCpm 8n noAn nonѶnƶm% 8n;n0oNjndnYm$wnpv&nnnprչ'ns; 8nQnFrf _nqr RprZ n|ppnet 8s 8nuCpmY @n noAn nonѶnƶm% @n;n0oNjndnYmwnpvђ&nnnprչ'ns{; @nQnFrf _nqr RnrZ n|ppnet @sד @nuCpm Bn noAn nonѶnƶmR% Bn;n0oNjndnYmwnpv&nnnprչ'nsB; BnQnFrf _nqr RnrZ n|ppnet Bs BnuCpm Dn noAn nonѶnƶm% Dn;n0oNjndnYm}wnpv_&nnnprչ'ns ; DnQnFrf _nqr RnrZ n|ppnet Dse DnuCpm Fn noAn nonѶnƶm% Fn;n0oNjndnYmDwnpv&&nnnprչ'nsԘ; FnQnFrf _nqr RprZ n|ppnet Fs0 FnuCplwi Nek Oek Pexi Yxm \nnojnnmnpq&nnnprչ'ns; \nQnFrf _nqr RprZ n|ppnet \u \nuCps; hnQnFrf _nqr RnrZ n|ppnet hs); inQnFrf _nqr RnrZ n|ppnet isќ; jnQnFrf _nqr RprZ n|ppnet jm{ pnnojnnm\npq&nnnprչ'ns ; pnQnFrf _nqr RprZ n|ppnet psg pnuCps |n0p%r@ ]nKrW PpbrZ p|ppnet |ts |sǟ n0p%r@ ]nKrW PpbrZ p|ppnet ts s; nQpFrf _nqr RprZ n|ppnet ts mN nnonnm/&n<p1q&nnnprչ'nspN npt s̡ nuCp's nuCp't psl pnuCps \nuCpt \t jt iv.'nrWp t ts t ts t |ts |t t 3t FyH'nrWp y'nrWp y̤'nrWp y'nrWp yP'nrWp y'nrWp yԥ'nrWp r'nrWp 4y^:#[n#S= #5KB%y5dG%y 8L% 4^N#[n#Sj#5¦T%X5ۦY%X 7_%^ F8f%^ iz: . .R# .l# F%FL :d 9L4^(Se#Si#5O% i6ΧXDn%X_i% On io oN{^ ##o#.F%{ F .e%{ i d% 4!I#t#5%! t v6rr%! ' ~)6 rr%! 2 ~)W%!%e9- ^98 ^9C <4^[#[n#S^Ʃ#5c%̩5h%̩ ƩXne%ҩ =Ʃe <Hة HN^#p#@~)% =.*%.D% @f% [%%e$ % X ݩݩ99ݩN(^C#ݩ#.ު~%(.%( '.%( XW%(%e4R -c#?H#-da#wn9[n4^<#wn##7%5%5̫% XW%%e dd4^@#n#d#05/%% X5H)% 5b-%%e6}7 {dupJ 9 4۬^^7ɬc oEmn94_^(<#wn##7%_50%j5I%j ۬W%j%ee 4^X#n##05%% ۬5ŭ)% 5߭-%%e67 {dupJ p9 p4X%^^7Fc oEmn9ة4^<#wn#H#6e%5%5ʮ% X+Se% =W%%e ^^4+^@#n#^#05J%% X5c)% 5}-%%e67 {dupJ 9 41^~6~) o =En4z7^6ko#52g%z 5Kb% X5db% X:b% Dn9/p4=^6k4p#5g% 5Ұb% X5b% X:b% Dn9p42C^J8P X 298 4bI^J8P X 24O^J8P X 9 4U^J8P X 4ܱ[^J8W Dn 24a^J8W Dn  e2 |I !#} #S  #~o% 5 #%5 '%   +#%%e =%#% % ?#% % %6 E#% 6R G%%µ6n L%%6 M~)%6 O%%0³end Q%%6޳ TI%µ0end VI%µ6 YI%62 [I%6N ^I%µ6j `I%µ6 c%µ6 h%µ6ô m%µ 07۴ %7 %7  %6'  %6C %µi #%µC %%µV %%µ9 .y9##9 #gn1@ ^ K G  y11hƩ ̩ U 8U 6 Ҏ S ¦Y X޶޶O i'F {7n97 RSdS {{n ҩ =Χ  X 282b Xg z 9I 9 > X 2hKbh Xn X b Xg    X 4Ұb4 X]ñW]Wb Dn 2db Dn˹0˹й j ۬orepo #pF'', Xɬ[[`  XgptUn pWW Dn b Dnv  w>f>  yxyobj9Cyyobj9xyyobj9,w,r<nG kwrepcofʮS =ͯrepoa_1qknnvqXTnnnc =P^wPUUT 2 X9^w 2 Z _gg` Ze wvcp un _/wrepcof)_wUT 2 X9KE_wKP 2 b_gg` ~_wUT X/_w/4 Z_gg`  ZNprepo p̫<' 2bg79rg ef Ic ei estr  | {>? wopt w?g wio wIi ye؄z Yg Ye<[ }g79r ! XI1%I X}}~) ! ' } C  9]y ::U;V3EWoWq^NSZ2f    +x . / 0e 1e 2e 3e 4e FI I^U;V3EWoWq^ NS k]Z2f           I 9 n؄ 'DCs{'Ds{ww*h/?wdHI?w~?x?(x333333?=xHգp= ?RxS?' 4 ''%A"[E @[y)[y)[)['y)[(y)[+)[`y)[ay)[d)K z<'L?z<'LD'LP>;K z<'L?z<'LDFFj FFk FFl FFm FFn FFo  HF*A  HFc" HF8EHF8EHF8EHF8EHF8EHF8EHFCE \dec\\hex\ \\ oct\@\\\ \$\'\*\- \1@\4\7J\: \L!\O!\T!\W! in\vvout\yv cur\]3]4]5]6]7]8 ]9@]: F];F]<]= ;^;^;^ EF;^ ;^y);^y);^y);^y);^yy);^yy);^yy);^yy)REz< H_}F+y)F+y)F+y)F+y)F+y)F+y)F+y)F+y)F+y)F+y)h /usr/include/gtkmm-2.4/gtkmm/usr/include/sigc++-2.0/sigc++/adaptors/usr/include/sigc++-2.0/sigc++/functors/usr/include/sigc++-2.0/sigc++/usr/include/glibmm-2.4/glibmm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/usr/include/gtk-2.0/gdk/usr/include/glib-2.0/gobject/usr/lib/glib-2.0/include/usr/include/pangomm-1.4/pangomm/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/gdkmm-2.4/gdkmm/usr/include/asm-genericobject.hadaptor_trait.hptr_fun.hslot.hvisit_each.hmem_fun.hlimit_reference.hslot_base.hmain.cchelperlist.hcontainers.hmenushell.hmenu_elems.haccelkey.hsignalproxy.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h _G_config.hwchar.hstdio.h clocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.h refptr.hcontainerhandle_shared.hmarkup.hgtypes.h type_traits.htrackable.hstl_list.h new_allocator.h allocator.h list.tcc functor_trait.hgdkevents.hgdktypes.hgdkdrawable.hgobject.hgtype.hgdataset.h glibconfig.hdeduce_result_type.hfontdescription.hfont.henums.hcomponent.htypes.hstockid.hmenuitem.hbox.htable.hbutton.hstock.hustring.hlocale_classes.h atomic_word.h gthr-default.h pthreadtypes.h stringfwd.h basic_string.h basic_string.tcc stl_iterator.h gunicode.h unicode.hradiobuttongroup.hgslist.h glist.h gclosure.hconnection.hgetopt.hioctl.hgthread.h gerror.h gquark.h gstrfuncs.h limitsios_base.h ctype_base.h locale_facets.h main.hgmain.h :: >= :: >= :: >=    ktfJ<    PJ<<J   sJ~J J      PJ<<J     PJ<<J  6OHJ    PJ<<J  A      PJ<<J  <       PJ<<J  LZVfzt4&MKU vktut/sKx_%uuniu XuX fhLZKuZrXXwG@T?g:Ls1y%I_X\N8$Yg",?--ULiX.iJXwXrJ Xqqqq.lJ<$ZZs%h!K//1""}RK}~:tX ~ ~ ~ 8 <   "=~}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <    ~ 8 <  ~}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <   "=~}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1 ~ ~ ~ 8 <  }}XJ}RJ~St-tX1   ~ 8 <   'g=}RK}~:tX   ~# 8 <   "= ~% 8 < m  ~- 8 < m  ~2 8 < m "}RK}~:tX   ~ 8 <  6 V ~z =J  o } M ~z =J  o } M ~x 8 < m } $=">|RK|~:tX  ~X #~ Z"'-  ~ ~ 6  ~J~  }. }u J}  u, }  }2 }  }= } ~# G#J ~f 6OHJ 6OHJ #UM]X#JCVK)JW<)<VJK"X* #UM]X#JCW<)JW)<V(J"X-u #UM]X#JCVK)JW<)<VJK"X*HSHPH[HSHPH[HSHPH[L_AH0HHH>P8HHHHHH$HHOHwHVt HFHHLHVIHAH0HHHHH$HHHHHH$HHHw0HGH<$HGH1HHHHHH$HHH7HH6HHHHHH$HHH7HH6HHHHHH$Hno mixer dev available mixer_fd=%d can't query mixer device can't set rec source /dev/mixerHOME%s/.gtkguitunercrb options: --%s %s %s %s%lf%d+_Normal_Wien_Physical_EquidistantN_atural_USUS-_Alt_GermanG_erman-Alt_TuningNote _Scale_Recording Inputo_Optionsf_Fileh_Helpdevicearg=device audio-in devicetriggersampfreqarg=sample frequency in Hzsampnrarg=number of sampleswidtharg=width in pixelsheightarg=height in pixelsadaptivehelpthis helpVol Bass TreblSynthPcm Spkr Line Mic CD Mix Pcm2 Rec IGainOGainLine1Line2Line3Digital1Digital2Digital3PhoneInPhoneOutVideoRadioMonitorsetRecInput: item #%d selected usage: %s [--option []] arg=threshold of schmitt triggerarg=1|0 adaptive scaling of sample datagtkguituneHHw0HGH<$HGH1HHHw0HGH<$HGH1HH\$Hl$HLd$@H(LcHHHC0Hu0LeHEHEHHE HE(HE0HC8H,$HE8HH\$Hl$Ld$ H(HHH***Km.o.3./././/2///./C./3.662666#.66 . 6 6 26 6 6 #. 7 7 . 7 3 23 3 7 . 23 3. 37.552555#.55.552455.4C.44.442944#.88.882888#.87.992999#.90.932339.4.4.1/2//1(.1*. 1 20 1 .!1!20!1!!."0"20"0"."/".#/$.$/$/$2/$/%/%.%0%3%3%2&H2&2&3&3&0&.'2'2'2'2'H1(2(2(2(2(.)1)1)1)1)@1*1*1*1*1*.*/*K.++.+.,.,., 3-.- .-.-.--%..003444556777708888H\$Hl$HLd$XH(LeHHLcHCHs0HCHC HHC(HE0HC0HE8HC8HE@HC@HEHHCHHEPHCPH$HHl$H\$Ld$ H(HHHHHCHtHHfHHH\$Hl$HLd$@H(LcHHHC0Hu0LeHEHEHHE HE(HE0HC8H,$HE8HH\$Hl$Ld$ H(HHHx DDD G D +  D  D +D  D   D   D D$;AAF0R<BEB B(D0A8G$BNG D+D +D $JQ0$JQ0$JQ0<BBB B(A0A8GzPLRx $DDDdD G D +, D\ tD  D +D  D 4Ld | D    D $D<$T;AAF0|R4BEB B(D0A8G$BNG D +D $+D <JQ0\JQ0|JQ04BBB B(A0A8Gwwww w(w0w8wUxTxPPȁxȁxSSSSЁxЁxЁxVVVVV؁x؁x؁x؁x؁x؁x؁xVVVVVVVVVVVVVxxxxxxxxxxxxxVVVVVVVVVVVVVVVVVV_________xxxxxxxxxxSSSSxxxxxxxxxVVVVVVVVSSSSSUUPUSSSSSSSSSSSUPUSSSSSSSSSUPUSSSSSSSSUPUPSSSSSSSSSSUPUSSSSSSSSSUUUUUUUPUSSSSSSSSSUPUSSSSSSSSUPUSSSSSSSSSSUPUSSSSSSSSSUUUUUPUVVVVVVPxPxxxxxxxxxxxxxxxxxxxSSSSSSUUPUPPUUUPSSSSSUUPUSSSSUUVVVVPSSSUUVVVVPSSSUPSSSSUUUUUUUUUUUUUUUUwwUSwwUSwwUSUUwwUPTUTww UTUTUUTww UTUTww UTww UUTww UTUTPUTUTUTww UTUTPUTUTUTww UTwwUwwww0VVVRRddPSSS``wwww w(w0w8wU|T\\Q|U|R__P^^PPVQTQTV]PP]wwww UVTQQ\TwwUPPPPww Uww Uww0USSVV\\Uww0UVVVSS\\UUUUww0USSVV\\UhJImanage~managemanagesigc::adaptor_functor >::operator()1sigc::internal::slot_call0, void>::call_itsigc::internal::slot_call1, bool, GdkEventAny*>::call_itvisit_each, sigc::pointer_functor0 >`visit_each, sigc::pointer_functor0 >visit_each_type > >sigc::adaptor_functor >::operator()sigc::internal::slot_call0, void>::call_itvisit_each, sigc::pointer_functor1 > visit_each, sigc::pointer_functor1 >Uvisit_each_type > >visit_each, sigc::pointer_functor0 >visit_each, sigc::pointer_functor0 >9visit_each_type > >sigc::internal::typed_slot_rep >::destroy2visit_each, sigc::pointer_functor1 >vvisit_each, sigc::pointer_functor1 >visit_each_type > ><visit_each, sigc::trackable>visit_each, MainWidget, true>4visit_each, void, MainWidget>visit_each, sigc::bound_mem_functor0 >visit_each_type > >$visit_each, sigc::trackable>visit_each, MainWidget, true>visit_each, void, MainWidget>`visit_each, sigc::bound_mem_functor0 >visit_each_type > >4destroy_cbTsetRecInputset_option_defaultsload_configprint_helpEprocess_optionsigc::internal::typed_slot_rep >::destroysigc::internal::typed_slot_rep >::destroysigc::internal::typed_slot_rep >::dupsigc::internal::typed_slot_rep >::dupsigc::internal::typed_slot_rep >::dup#mainmenu_input_recoptions_audiodevoptions_triggeroptions_sampnroptions_sampfreq options_widthoptions_height)options_adaptive_scalel!  +   +   ++_S_app_ZNK4Glib7ustring12find_last_ofEcmgcharconfv~new_allocator_M_remove_referencedestroy__ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1_LOCK_MASKsignal_namemod_boolctimeList_Iterator_Base_ZN4Glib7ustring6insertEmRKS0__ZNK4Glib7ustring12find_last_ofERKS0_mmain.cc_ZNSt8ios_base7showposEoptions_triggerg_ascii_table_A_targetdifftime_ZNSs6assignERKSsmmGDK_WINDOW_STATE_ZNK4Glib7ustring16find_last_not_ofERKS0_m_ZN4Glib7ustring6appendERKS0__ZNK4sigc12mem_functor0Iv10MainWidgetEclERS1_n_cs_precedes_ZN4Glib7ustring4rendEv_ZNK4Glib7ustring12find_last_ofEjm_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4rendEvGDK_DROP_FINISHED~AccelKeytm_sec_M_facetsRefPtr_Ios_Iostateblockdestroy_cbpunctpop_backupperbasic_string,std::allocator >address_ZNSt17moneypunct_bynameIcLb1EE4intlE_ZNK4sigc8internal8slot_rep3dupEvmax_sizetyped_slot_rep >digit_ZN4Glib7ustring6appendEmcnamesNORMALIZE_DEFAULT_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5eraseES8_S8__ZNSt10money_base8_S_atomsEvfunc_table__ZN4Glib7ustringpLEcfreadvisit_each, MainWidget, true>_ZNSt15_List_node_base4hookEPS__ZNK3Gtk8AccelKey10get_abbrevEv_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE7addressERS5_listset_option_defaultsfputwcfputwsBuiltinStockID_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKcmSCALE_MEDIUM_GdkEventAny_M_init__gnu_debug_def_ZN4sigc8internal23trackable_callback_list12add_callbackEPvPFS2_S2_E_ZNK4Glib7ustring5rfindEjmoptions_audiodev_GSourceCallbackFuncsfgetcfgets_S_scientific_ZN4sigc8internal17with_type_pointerILb0ENS_16pointer_functor0IvEENS0_20limit_derived_targetIPNS_9trackableENS0_14slot_do_unbindEEEE8execute_ERKS3_RKS8_connect_callback_funcs_ZNSs12_S_constructEmcRKSaIcE_ZNSt14numeric_limitsIfE10has_denormEcollate_S_construct_S_atoms_lock_vptr.HelperList_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5beginEvrbeginSignalProxy1_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mcfunctor_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5frontEvGDK_UNMAP_ZNSt8ios_base6skipwsEblocked__S_initialize_oncetm_wdaystrtokstrtolback_ZNSt14numeric_limitsIeE12has_infinityElengthint_n_sep_by_space_ZNSs7replaceEmmmcperror_M_dispose_ZNSs4_Rep10_M_refcopyEv_M_assignoperator*operator+operator-emission_stopoperator=limit_derived_target_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7call_itEPNS0_8slot_repE_ZNSt6locale2idaSERKS0_wcstoullGDK_PROXIMITY_IN_ZNKSs4rendEv_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEE4baseEvptr_fun_Ios_Seekdir_ZN4sigc8internal23trackable_callback_list5clearEvset_parentmenu_input_rec_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE7destroyEPS5__GThreadFunctions_ZNSt6locale7_S_onceE_ZN4Glib7ustring5eraseEmmGDK_NOTHING_ZNK9__gnu_cxx13new_allocatorIcE8max_sizeEv_M_mutate_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE6removeERKS2__ZNK4sigc8internal14slot_do_unbindclEPKNS_9trackableEmbstate_t_M_cachesmbstowcschild_on_delete_event_ZNSs4nposE_M_node_ZNKSs13find_first_ofEPKcm_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE7addressERKS5_~_Impl_ZN4sigc5slot1IbP12_GdkEventAnyEaSERKS3_vscanf_S_eofbittmpfile_M_copyGPrivate_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_iputwchar_ZN4Glib7ustring9push_backEc_ZN4Glib7ustring9push_backEj_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZNK4Glib7ustring9uppercaseEvpointer_functor1~slot1_ZNK4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEdeEvwctype_tbound_mem_functor0GSList_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4sizeEv_ZNK4Glib7ustring8casefoldEv_ZNSt8ios_base7unitbufEinvoke_ZNK4sigc12mem_functor0Iv10MainWidgetEclEPS1__ZNSt15_List_node_base7reverseEvqsortfilenamebase_next_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKcmainbytesn_sign_posn_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_16pointer_functor1IP12_GdkEventAnyiEEE5valueE_S_copy_charsRadioMenuItem_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6uniqueEvgint_GSourceFuncsPango_ZN4Glib6RefPtrIN3Gtk8MenuItemEEaSERKS3_slot0 >connect_notify__ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5__ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE10deallocateEPS5_mlong doublehook_M_fill_assignconnectg_utf8_skip_ZNSt6locale8messagesEmon_decimal_point_S_beg_ZNSt6locale3allE_ZNKSs4findEPKcmm_ZNSt8ios_base4leftEdenorm_present_ZNK4Glib7ustring6lengthEv~slot_basemasklimit_reference_GObjectthread_selfadjustfield_ZNK4Glib7ustring7compareEmmPKc~StockMenuElem_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5eraseES8_._27call_it_M_capacityGDK_EXPOSE_ZN4Glib6RefPtrIN3Gtk8MenuItemEE5clearEvTable_Helpers_ZN4sigc8internal17with_type_pointerILb0ENS_16pointer_functor1IP12_GdkEventAnyiEENS0_20limit_derived_targetIPNS_9trackableENS0_14slot_do_unbindEEEE8execute_ERKS5_RKSA__Exit_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6insertESt14_List_iteratorIS2_EmRKS2__ZNK4sigc18bound_mem_functor0Iv10MainWidgetEclEvfreeGDataslot0bsearchhead_getcvprintfMOD4_MASK_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE9pop_frontEv._89gunicharpriorityslotnumericclosure_marshalcallback_list_typed_rep._90_ZNKSs8capacityEvthread_exit_ZN3Gtk16RadioButtonGroup3addERNS_15RadioToolButtonE_S_id_time_ZNSt6locale21_S_normalize_categoryEi_ZNK4sigc15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEclEv~SignalProxyNormalvisit_each, MainWidget, true>_ZNSspLERKSs_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE8max_sizeEvtm_zonedenorm_indeterminatenew_allocatorNORMALIZE_ALL_ZN4Glib7ustring6assignEPKc_ZN4Glib17SignalProxyNormal19slot0_void_callbackEP8_GObjectPv_ZNKSs4sizeEvreg_save_area_ZNSs6insertEmPKcm_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_RKS0__ZNSt10ctype_base5spaceE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6insertESt14_List_iteratorIS2_ERKS2__ZNK4sigc16pointer_functor0IvEclEvparent_instance_ZNSs6appendEmc_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6rbeginEv_ZNK4Glib7ustring4findEPKcmm_ZNK4Glib6RefPtrIN3Gtk8MenuItemEEneERKS3_tmpnam__in_chrgGDestroyNotifyswap_A_func_ZNK4Glib7ustring17find_first_not_ofEcm__invalid_size_argument_for_IOC_vtable_offset_ZNK3Gtk8AccelKey7is_nullEv_S_id_collate_ZN4Glib7ustring6rbeginEv_ZNKSs12find_last_ofERKSsmtv_sec_Z10destroy_cbvvfscanfstrerrorSCALE_XX_SMALLGDK_SELECTION_NOTIFYvisited__normal_iterator_ZN4sigc19is_base_and_derivedINS_9trackableENS_16pointer_functor1IP12_GdkEventAnyiEEE5valueEreserved1reserved2code_ZNKSs11_M_disjunctEPKcGDK_DRAG_STATUSlocaltimeslot0_void_callback~connectionwith_type_pointer,sigc::internal::limit_derived_target >_ZNSt10ctype_base5digitE_ZNK4Glib7ustring17find_first_not_ofEjmadaptor_functor >_S_basefieldGMainContextfwprintf_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4rendEvtm_isdst_M_put_nodefrac_digitsoptarg_ZNKSs13find_first_ofEPKcmmlong unsigned int_ZNK3Gtk7StockID5equalERKS0___time_t_ZNSt8ios_base3curE_ZNK4Glib7ustring8capacityEv_ZNK4Glib7ustring8is_asciiEvGDK_PROXIMITY_OUTwcscoll_ZN9__gnu_cxx3divExxdisconnect_ZNSs7replaceEmmRKSs_ZNSs3endEvatollasctime~_List_baseGMutex_shortbuf_ZN4sigc8internal17with_type_pointerILb1ENS_9trackableENS0_20limit_derived_targetIPS2_NS0_14slot_do_unbindEEEE8execute_ERKS2_RKS6_functor_nodemem_functor0_ZNKSs6rbeginEvsort_ZNSsaSEcpositive_signcopyrfindRadioToolButton_S_badbiteraseG_THREAD_PRIORITY_LOW_ZNSt6locale13_S_categoriesEdup_thread_createref_count_ZNSt10ctype_base5graphEcond_signal_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE14_M_fill_insertESt14_List_iteratorIS2_EmRKS2_wctrans_t_GData_ZN4sigc8internal8slot_rep7destroyEv_IO_save_endGDK_DROP_STARTGDK_MAP_ZNSt14numeric_limitsIfE13has_quiet_NaNE_ZN4sigc9slot_baseaSERKS0__ZN4Glib7ustring6appendEPKc_ZNK4Glib7ustring17find_first_not_ofEPKcm_M_grabtm_minset_slotGDK_SELECTION_REQUEST_S_normalize_category__normal_iterator, std::allocator > >_ZN3Gtk6manageINS_7MenuBarEEEPT_S3__ZNSs4_Rep9_S_createEmmRKSaIcE_ZNKSs5beginEvcond_newctype_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4sizeEvslot >fgetws_ZNK4sigc9slot_base30remove_destroy_notify_callbackEPvstdoutcurrency_symbolRELEASE_MASK_ZNKSs7compareEmmPKcm_ZNK4Glib7ustring5bytesEvnone_ZNK9__gnu_cxx17__normal_iteratorIPcSsEplERKl_ZN4Glib17SignalProxyNormal15connect_notify_ERKN4sigc9slot_baseEb_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idEmon_groupingtm_mon_ZNSt14numeric_limitsIfE12has_infinityEpthread_once_t_ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE3dupEPv_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1_invoked_ZNKSs5rfindEcmshowposGThreadFuncfseekfloat_denorm_styleallocatorsystempointer_functor0with_type_pointer >mutex_lockshowbasetm_mday_ZN4Glib7ustringaSEc_ZN4Glib7ustringaSEj_ZNSt6locale7classicEvgroup_ferrortransfer_ZN4Glib7ustring6resizeEmc_ZN4Glib7ustring6resizeEmj_ZN3Gtk12Menu_Helpers7Element9set_childEPNS_8MenuItemEMOD2_MASKElementwcsrtombs_ZN4sigc8internal10slot_call1INS_16pointer_functor1IP12_GdkEventAnyiEEbS4_E7call_itEPNS0_8slot_repERKS4_BUTTON2_MASKcheckact_optionspace_M_replace_auxxdigitnothrow_ZNKSsixEmg_type_instance_ZN4sigc19is_base_and_derivedINS_9trackableES1_E5valueEQUITwmemchrGSourceFunc_ZN3Gtk16RadioButtonGroup3addERNS_13RadioMenuItemE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE7reverseEv_mode_ZN4sigc9trackable16notify_callbacksEvg_type_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4sortEv_ZNSs4_Rep11_S_max_sizeE._88wmemcmpsigc_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEElimit_referencelocaleconvreverse_iterator, std::allocator > > > >appname_List_implstrxfrm_IO_lock_tGTimeValmessages_ZN3Gtk16RadioButtonGroup3addERNS_11RadioButtonElimit_derived_targetload_config_ZNSt6locale5_Impl16_M_add_referenceEv_ZNK4sigc5slot1IbP12_GdkEventAnyEclERKS2__ZN4Glib7ustring6appendERKS0_mm_ZNK4Glib7ustring3endEvList_ConstIterator >_ZN3Gtk5Stock5ABOUTE__clock_t_M_length_ZNK4sigc9trackable27add_destroy_notify_callbackEPvPFS1_S1_Elldiv_ZNSs6appendEPKcm_M_ibegin_ZNK4Glib7ustring16find_last_not_ofEcm_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE3endEvinternalinsert_ZNK4Glib7ustring9lowercaseEv~trackableCairoSCALE_X_LARGEfinalize_ZNK4Glib7ustring8validateEv_A_obj_S_in_ZNK3Gtk8AccelKey7get_modEvNORMALIZE_ALL_COMPOSE_ZNSs15_M_replace_safeEmmPKcm__countprivate_new_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1_operator+=after_S_cur_ZNK4Glib7ustring16find_last_not_ofEjm_ZNKSs5rfindERKSsm_ZNK4Glib7ustring12find_last_ofEPKcmmslot_do_unbindshort intwcsrchr_ZNSt8ios_base3decEObjectBasesizesource_funcsname_ZN4sigc8internal17with_type_pointerILb0ENS_16pointer_functor1IP12_GdkEventAnyiEENS0_20limit_derived_targetIPNS_9trackableENS0_12slot_do_bindEEEE8execute_ERKS5_RKSA__ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4backEv_ZNK9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE7addressERS3__S_id_ctypeList_Cpp_Iterator_ZNSt8ios_base9uppercaseE_M_get_Tp_allocatorvisit_each, void, MainWidget>with_type_pointer,sigc::internal::limit_derived_target >action__ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2_slot_call0,void>mblengraph_List_iteratorfloat_ZNSt10ctype_base5alphaE_ZN4Glib17SignalProxyNormalaSERKS0_notify_callback_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EEllabs_ZNK9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE7addressERKS3__GErrorthis_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1_get_stringlist >flagget_c_strvisit_each, sigc::bound_mem_functor0 >fflush_ZNSs7_M_moveEPcPKcmparent_int_p_sep_by_space_ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEclEvbasefieldwcstoldwcstoll_S_empty_rep_storage_ZNK4Glib7ustring13find_first_ofERKS0_m_ZNSt6locale5facet9_S_c_nameEkey__Ios_Fmtflagsconnection_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE9pop_frontEvfind_last_of_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE10push_frontERKS2_ABOUT_ZNK4sigc15limit_referenceI10MainWidgetLb1EE5visitEv_ZNKSs8max_sizeEv_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEEixEm_ZN4Glib17SignalProxyNormal13emission_stopEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN4sigc8internal8slot_rep6notifyEPv_ZNSt8ios_base5fixedEdata_size_t_ZNK4sigc9slot_base7blockedEv_ZN4sigc8internal8slot_rep10set_parentEPvPFS2_S2_E_ZNKSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE19_M_get_Tp_allocatorEv_ZNSs13_S_copy_charsEPcS_S__M_is_leakedGThreadFunctions_offset_ZNKSs4dataEv_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEc_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEj_M_is_sharedSCALEprivate_getpush_backmenu_optionsldiv_M_leak_hardwcstoulclearerrGSourceFuncs_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6__ZNSt8ios_base9basefieldE~HelperListungetc_IO_read_end_ZNK9__gnu_cxx17__normal_iteratorIPcSsEptEv_List_baseconnected_S_failbit_ZN4Glib7ustring6insertEmmc_ZN4Glib7ustring6insertEmmj_M_set_leaked_ZN4Glib7ustring5eraseEvustring_Iteratorvisit_each, sigc::pointer_functor1 >_S_showpointadd_callback_ZNSt8ios_base8showbaseEempty_ZNK3Gtk8AccelKey7get_keyEvswscanfslot1 >_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE9constructEPS3_RKS3_notifyslot_call1,bool,_GdkEventAny*>clock_ZNK4sigc10connection7blockedEv_M_leakunblock_IO_write_end_S_default_patternmutex_new_ZNK4sigc9slot_basecvbEvuniqueint_p_sign_posn_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1_casefoldSeparatorElemwctrans_ZNK4sigc10connection5emptyEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0_MODIFIER_MASKcall___ZN4Glib7ustring7reserveEm_ZNSs5beginEvnpos_ZNSt6locale9_S_globalEfind_first_not_of_ZNKSt6locale2id5_M_idEv_ZNKSs6lengthEv_ZN3Gtk8AccelKeyaSERKS0_connect_notifymem_functor0_M_clearallocator >_ZNK4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEptEvmbrtowc_ZNSt6locale7collateE_ZNK4Glib7ustring11collate_keyEv_ZNK4Glib7ustring8max_sizeEv_ZNK4Glib7ustring4rendEvGTypewith_type_pointer,sigc::internal::limit_derived_target >_ZNK4sigc15limit_referenceI10MainWidgetLb1EE6invokeEv_M_data_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE8pop_backEv_ZNK4Glib6RefPtrIN3Gtk8MenuItemEEeqERKS3_doubleg_class_S_facet_categoriesNORMALIZE_DEFAULT_COMPOSE_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5beginEv_ZNSs5clearEv_ZNSt8ios_base2inEvswprintf~RadioMenuElem_ZNSt10ctype_base5printE_M_create_node_ZN4sigc10connection8set_slotEPNS_9slot_baseE_ZNK4Glib7ustring13find_first_ofEPKcmGDK_3BUTTON_PRESS_ZN3Gtk12Menu_Helpers8MenuList9push_backERKNS0_7ElementEpop_frontm_widcond_waitreverse_iterator >_ZNK9__gnu_cxx17__normal_iteratorIPcSsE4baseEv_ZNSt6locale5_Impl11_S_id_ctypeE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6spliceESt14_List_iteratorIS2_ERS4_GdkEventAnycond_broadcast_ZNKSs5emptyEv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6spliceESt14_List_iteratorIS2_ERS4_S6__ZNSsaSEPKc~ustring_S_rightfeof_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE7gparentEvhas_arg_ZNKSs16find_last_not_ofERKSsm_Impl._117_ZNK4sigc5slot0IvEclEv_ZN3Gtk16RadioButtonGroup3addERKN4Glib6RefPtrINS_11RadioActionEEEfgetwc_S_dec_ZNSs6appendEPKcg_thread_functions_for_glib_useptr_fun_ZN9__gnu_cxx13new_allocatorIcE7destroyEPc_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE6rbeginEvtime_tungetwc_ZNK4Glib6RefPtrIN3Gtk8MenuItemEEcvbEv_S_skipws_ZNKSs15_M_check_lengthEmmPKcget_key_Z11setRecInputv_ZNKSs6substrEmm_ZNKSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE13get_allocatorEv_M_repvisit_ZN4Glib7ustring6assignEmcflags_ZN4Glib7ustring6assignEmj_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7addressEv~locale_ZNSt6locale2id11_S_refcountE_ZNSt8ios_base3outE_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEiwith_type_pointer >_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEvstdinlconv_S_id_messagesfield_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EEGDK_FOCUS_CHANGE_M_replace_facetint_p_cs_precedes_ZNSs9push_backEcget_pathend_connect_impl__ZNK4Glib7ustring13find_first_ofEcmGDK_CLIENT_EVENTGDK_NO_EXPOSE_ZNK4Glib7ustringixEm_ZN4Glib7ustringpLERKS0_data_ZNSs6insertEmPKclocale_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE10deallocateEPS3_mSCALE_X_SMALL_ZN3Gtk12Menu_Helpers7Element13set_accel_keyERKNS_8AccelKeyE_ZNSt6locale4timeEnegative_signchar_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE3endEv_ZNK4Glib7ustring5rfindERKS0_mslot >is_ascii_ZNKSs5c_strEv~allocatorsetvbuf_ZNK4sigc9slot_base10set_parentEPvPFS1_S1_E_ZNK4Glib7ustring13find_first_ofEjmint_n_sign_posn_ZN4sigc8internal10slot_call0INS_16pointer_functor0IvEEvE7call_itEPNS0_8slot_repE_A_action_ZNSt10ctype_base6xdigitEsetlocaleinfo__ZNK4Glib7ustring12find_last_ofEPKcmMain_A_typenotify_callbackshas_quiet_NaN_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE_ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE7destroyEPvcntrl_ZN4sigc9slot_base5blockEbRefPtrslot_base_ZNK4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEneERKS4__ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEvoptions_adaptive_scaleassign_ZNK4sigc15adaptor_functorINS_16pointer_functor0IvEEEclEvfrontwmemsetfloatfield_ZNKSs9_M_ibeginEv_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEi_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEvrealloctm_yday_ZNK9__gnu_cxx13new_allocatorIcE7addressERc_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEi_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEv_ZNKSs4findEcm_ZNKSs4copyEPcmm_ZNSt10moneypunctIwLb1EE4intlE_ZNK4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEeqERKS4_GTypeInstance_ZN4sigc8internal10slot_call1INS_16pointer_functor1IP12_GdkEventAnyiEEbS4_E7addressEv_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcmRadioMenuElemftell_ZN9__gnu_cxx13new_allocatorIcE10deallocateEPcm_ZNK4Glib7ustring17find_first_not_ofEPKcmm_ZN4Glib7ustring3endEvargcargv_ZNSs4_Rep10_M_refdataEv_IO_backup_base_Alloc_hiderdup__slot >GDK_GRAB_BROKENlist_tuning_ZN4Glib15SignalProxyBaseaSERKS0__ZNSt10ctype_base5lowerEtime_ZNK4Glib7ustring2atEm_ZNSt6locale8monetaryEprocess_optionslot0slot1_ZN4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEppEi_ZN4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEppEv_Ios_Openmodeslot__Rep_base_ZNSt10money_base18_S_default_patternE_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE8pop_backEv_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1__ZN4sigc19is_base_and_derivedINS_12functor_baseENS_16pointer_functor1IP12_GdkEventAnyiEEE5valueE_flagsstrtodstrtofleft_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2_monetaryright_RepsetRecInput_ZNK3Gtk7StockID9get_c_strEvget_childglong_ZNSs6assignEPKcvswscanf_ZNSt15_List_node_base8transferEPS_S0_qdatapattern_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEEcapacity_ZN4Glib6Source12vfunc_table_Eoptions_sampnrbasic_string_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEi_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEv_ZNKSs13get_allocatorEvMarkup_ZNSt8ios_base6badbitEHelperListSignalProxyBase_ZNSt6locale7numericE_ZNSt8ios_base9showpointE/home/floh/gtkguitune_ZNKSs7compareEmmPKcconstruct_ZNKSs12find_last_ofEPKcm_ZNSt10moneypunctIwLb0EE4intlEsend_event_ZNKSs17find_first_not_ofERKSsmoption_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EE~trackable_callback_listtm_gmtoff_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5mergeERS4_gparent__ZNKSs7compareERKSsoperator!=_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE14_M_create_nodeERKS2__M_destroy~RefPtr_ZNKSs4findEPKcm_ZNSs4_Rep15_M_set_sharableEvswprintf_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_16pointer_functor0IvEEE5valueEmbsinit_ZNSs6insertEmRKSs_IO_save_baseoptions_width_ZN4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEmmEiBox_Helpers_S_refcountmenu_scale_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1_contextoperator()_IO_FILEwprintf_S_adjustfield_ZNK4Glib7ustring5beginEv_ZNSt17moneypunct_bynameIwLb1EE4intlE_ZNKSs12find_last_ofEPKcmmfunc_ptr__ZNSt15_List_node_base6unhookEvblockedoperator++_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5glistEv_ZN4Glib7ustring7replaceEmmPKcfwidemanage~sloteventHelperList >normalize_ZNK4Glib7ustring16find_last_not_ofEPKcmmoperator--operator-=operator->_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6resizeEmS2__ZNKSs4_Rep12_M_is_leakedEvcallback_listatofatoiatol_ZN4sigc10connection6notifyEPv_ZNK4Glib7ustring9normalizeENS_13NormalizeModeE_List_node_base_ZNKSs13find_first_ofEcm_GTypeInstance_ZNK4Glib7ustring5emptyEv__wchb_M_indexVBox_M_add_reference_ZNSs4_Rep10_M_disposeERKSaIcE_ZN4sigc8internal8slot_rep10disconnectEv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5clearEvint_frac_digitsMOD3_MASK_M_fill_insertfclosedenorm_absentexecute_MenuItem_S_ios_openmode_end._281mem_fun_ZN4sigc8internal23trackable_callback_list15remove_callbackEPv_ZNK4Glib7ustring4findEcmbtowclist_file_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE9constructEPS5_RKS5_visit_each, sigc::trackable>rendGDK_DELETE_ZNSs4rendEvGSourcemutex_free_Z10print_helpP6optionPKcP8_IO_FILE._282._283GNU C++ 4.1.2 (Ubuntu 4.1.2-0ubuntu4)_ZNK4Glib7ustring4sizeEvrep__ZNSt8ios_base6eofbitEc_strGDK_CONFIGUREoperator==source_id_M_replace_categorywcsncatBUTTON4_MASKwscanf_filenoreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZN3Gtk16RadioButtonGroupaSERKS0_splice__delta_ZNSs4swapERSs_A_functor_ZNK4Glib7ustring7compareEPKcquot_ZNK4Glib7ustring4findEjm_S_end_M_disjunct_ZNSt8ios_base5rightE_ZNKSs7compareEmmRKSs_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E_ZNSs6insertEmRKSsmm_ZNSs6insertEmmcBUTTON5_MASK_ZN9__gnu_cxx3absEx_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE8allocateEmPKvallocator_ZNKSs2atEmint_n_cs_precedespoll_fds_ZNSt14numeric_limitsIdE10has_denormE_GdkDrawable_ZNSs6resizeEm_ZNSt6locale5_Impl13_S_id_collateESCALE_XX_LARGE_ZN3Gtk12Menu_Helpers8MenuList10push_frontERKNS0_7ElementE_ZNKSs7_M_iendEvwctomb_M_check_ZNSt14numeric_limitsIdE13has_quiet_NaNENORMALIZE_NFD_ZNSt6locale5_Impl19_M_remove_referenceEv_ZNK4sigc9slot_base27add_destroy_notify_callbackEPvPFS1_S1_Ewcsncmpcond_free_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEdeEv_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE13get_allocatorEv_S_ios_iostate_endfind_last_not_ofgetstm_year_ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE7destroyEPvmoney_basegetwcharwcsncpy_GSList__valuedata_to_slotstring__ZNSs4_Rep11_S_terminalE_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5emptyEv_ZN4Glib12SignalProxy1IbP12_GdkEventAnyE14connect_notifyERKN4sigc4slotIvS2_NS4_3nilES6_S6_S6_S6_S6_EEb_ZNKSs3endEvmenu_help_ZNKSs4findERKSsmvisit_each_type > >gp_offsetFILEmon_thousands_sepremove_callbackslotnew_allocator_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE3endEv_ZNK9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE8max_sizeEvset_accel_key_ZNK4Glib7ustring7compareERKS0_trackable_ZNSs2atEm_M_insertprint_ZNSt8ios_base9boolalphaE_ZNSs6resizeEmcskipwsMainWidget_ZN4sigc10connection10disconnectEv_ZN4Glib7ustringaSERKS0_GDK_KEY_PRESS_M_eraseguint_ZN4Glib7ustring6assignERKS0_mm_S_floatfield_ZN9__gnu_cxx17__normal_iteratorIPcSsEmIERKlglobal_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeEpos__S_goodbit_S_categories_M_replace_categories_pos_ZN4sigc19is_base_and_derivedINS_9trackableENS_16pointer_functor0IvEEE5valueE__state_ZNSs4_Rep7_M_grabERKSaIcES2_collate_keyg_threads_got_initializedtyped_slot_repvwscanf_S_truncreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >visit_each_type > >_sbufoperator[]_ZN4Glib7ustring6insertEmPKcalnumdecimal_pointNORMALIZE_NFKCNORMALIZE_NFKD_ZNKSs17find_first_not_ofEPKcmm_ZNSs6appendERKSs_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKT0__ZN4Glib7ustringaSEPKcwcscatputchar_ZN4Glib7ustring7replaceEmmPKcm_ZNK4Glib7ustring17find_first_not_ofERKS0_m_M_refcount_ZN4Glib7ustring7replaceEmmmc_ZN4Glib7ustring7replaceEmmmjremove_ZN4Glib7ustring6assignEPKcmvisit_each, sigc::trackable>strftimedeallocate_ZNKSs17find_first_not_ofEPKcmallocate_M_current_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE_S_uppercase_S_ate_old_offset_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE9push_backERKS2_Glibn_sep_by_spacewcschr_M_coalescevfwprintf_ZN3Gtk16RadioButtonGroupnwEmsrand_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc_M_refcopy_S_empty_rep_List_const_iteratorvsnprintf_S_globalustring_S_atoms_out_ZNK4Glib7ustring4findERKS0_m_ZNKSt6localeeqERKS_wcscmp~StockIDCONTROL_MASKadaptor_baseadaptor_functor >_ZNK4Glib7ustring6rbeginEvfacetwcscpy_ZNSs6rbeginEvclearing__ZN4Glib7ustring7replaceEmmRKS0_comparebegin__ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE11_M_get_nodeEv_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE7gparentEv_S_max_size_ZNK4Glib7ustring3rawEv_ZNK4Glib7ustring13find_first_ofEPKcmm_ZNKSs12find_last_ofEcm_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE6begin_Ev_GPrivatepointer_functor0_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4backEvtypeGDK_DESTROYbegin_ZNK4Glib7ustring4dataEv_ZNK4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPKcSsEEEEreverse_iterator >mutex_unlock_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4rendEv_ZNSt10__num_base12_S_atoms_outEtyped_slot_rep >_ZNSt8ios_base10scientificE_ZN4sigc19is_base_and_derivedINS_12functor_baseENS_16pointer_functor0IvEEE5valueE_ZN4Glib7ustring6insertEmPKcm_M_get_noderewind_ZNKSs8_M_checkEmPKcoperator() >_ZNSs7reserveEmcallback_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE11_M_transferESt14_List_iteratorIS2_ES6_S6_long long unsigned intgparentMenu_HelpersSignalProxy1_ZNSt6locale4noneE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEES3_EEvRKT_RKT0__unused2adaptor_functor__compar_fn_t_M_id_GMutexlimited_action_ZNSt6locale5_Impl13_S_id_numericEGDK_SELECTION_CLEAR_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6removeERKS2_StockID_ZN4Glib6RefPtrIN3Gtk8MenuItemEE4swapERS3_merge_ZN4sigc8internal10slot_call0INS_16pointer_functor0IvEEvE7addressEv_ZN4Glib7ustring5clearEv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE14_M_fill_assignEmRKS2__ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5frontEv_ZNSt8ios_base7goodbitEunsigned int_ZNSt6locale5_Impl10_S_id_timeE_ZNSt17moneypunct_bynameIwLb0EE4intlE_ZN4Glib7ustring5beginEv_Atomic_word_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_18bound_mem_functor0Iv10MainWidgetEEE5valueEwchar_tslot_ZN4Glib7ustring6assignERKS0_get_modGDK_DRAG_ENTER_ZNSt6locale5_Impl19_S_facet_categoriesE_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE7destroyEPv_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEEaSERKS9_with_type_pointer,sigc::internal::limit_derived_target >_S_ios_fmtflags_endBUTTON3_MASKboolalpha_ZN4Glib12SignalProxy1IbP12_GdkEventAnyE7connectERKN4sigc4slotIbS2_NS4_3nilES6_S6_S6_S6_S6_EEb_ZN4Glib7ustringpLEjintl_M_dataplusp_sep_by_spacevisit_each_type > >_S_c_name_List_base >slot_call0,void>RefPtrwcslen_ZN4Glib7ustring6insertEmRKS0_mmdigits~typed_slot_rep_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5clearEvreversethread_yieldGDK_DRAG_LEAVE_ZNSs6assignEmcreplaceGListtowctranswmemmove_ZNSs12_S_empty_repEvgetchartv_usec_ZNSspLEPKc_ZN4sigc8internal17with_type_pointerILb0ENS_16pointer_functor0IvEENS0_20limit_derived_targetIPNS_9trackableENS0_12slot_do_bindEEEE8execute_ERKS3_RKS8_casefold_collate_key_ZNKSt6localeneERKS_getenv_ZNSs4_Rep26_M_set_length_and_sharableEmsubstr_S_showpos_ZNK4Glib7ustring20casefold_collate_keyEv_ZNSs5eraseEmmhead_ZN4sigc10connectionaSERKS0_node_MenuListatexitList_ConstIterator > >func_destroy_notifyallocatormanageequalvisit_each, void, MainWidget>_ZNKSs7compareEPKcsetbuf_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE6rbeginEv_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE8allocateEmPKvvbox_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmc_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmjpath_a_repremove_destroy_notify_callback_ZNK4Glib7ustring7compareEmmRKS0_mmself__ZSt7nothrowgrouping_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE9_M_insertESt14_List_iteratorIS2_ERKS2__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKT0__ZNKSs8_M_limitEmmgulong_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE3endEv_ZNSt8ios_base8internalEshort unsigned int_ZNSs4_Rep12_S_empty_repEvmixer_fd_ZNSt6locale18_S_initialize_onceEv_ZNSt10ctype_base5alnumEp_cs_precedes_ZNSsixEm_ZNSs7_M_dataEPcSCALE_LARGE_ZNK4Glib6RefPtrIN3Gtk8MenuItemEEptEv_ZNSt10ctype_base5punctEpCppObject__ZNK3Gtk8AccelKey8get_pathEvwcscspn_ZN4Glib7ustring4nposE_ZN4sigc10connection7unblockEvModifierTypereservestrtoldstrtoll_ZNK9__gnu_cxx13new_allocatorIcE7addressERKcfpos_tunitbufgetwc_GTypeClass_M_check_lengthList_ReverseIterator >domain__off_tsnprintf_ZNKSs7_M_dataEvtrackable_callback_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mcgpointerList_Cpp_Iterator<_GtkMenuItem,Gtk::MenuItem>_M_clonevsscanf_S_id_numericwctob_ZN3Gtk7StockIDaSERKS0_nothrow_teofbitlong intshowpointfind_first_of_M_next_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5frontEvoperator std::string_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5beginEvlong_optionsRadioButtonGroup_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE3dupEPv_ZN4sigc8internal17with_type_pointerILb1ENS_9trackableENS0_20limit_derived_targetIPS2_NS0_12slot_do_bindEEEE8execute_ERKS2_RKS6__S_onceconfc_flags2_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mjstrtoulmemchrG_THREAD_PRIORITY_HIGH_M_pmbtowc_S_internalWindow__wch_chainptrdiff_tunsigned char_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE8max_sizeEvis_null_GList~SeparatorElem_ZNSt6locale5_Impl14_S_id_monetaryE_M_set_sharable_ZNKSs16find_last_not_ofEPKcm_ZNSt6locale6globalERKS__ZNK4Glib7ustring7compareEmmRKS0_Menuguint16slot_rep_S_construct_patternwindowslotguint32allstrMOD1_MASKmutex_trylockcleanup__M_check_same_name_ZN4sigc9slot_base7unblockEv_ZNSt8ios_base3octElist_input_rec_ZN4sigc9trackableaSERKS0__ZNSs4_Rep10_M_destroyERKSaIcEstrcoll_ZNSs7_M_copyEPcPKcm_ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE3dupEPv_Z19set_option_defaultsv_ZNK3Gtk12Menu_Helpers7Element9get_childEv_ZN4Glib7ustring7replaceEmmRKS0_mmStockMenuElem_M_limit_S_boolalpha_ZN4Glib7ustringaSERKSs_ZNK4sigc16pointer_functor1IP12_GdkEventAnyiEclERKS2__Z14process_optioni_S_unitbuf_ZNKSs13find_first_ofERKSsmGObject_ZNSs9_M_mutateEmmmfp_offsetdestroy_S_initializemktime_ZN4Glib7ustring6appendEmjSignalProxyInfowcspbrk_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4backEvthread_equal_ZNSs6appendERKSsmmoptions_sampfreq_M_replace_safeoperator()_ZNKSs6_M_repEvMenuElemG_THREAD_PRIORITY_URGENT__pfn_ZN4Glib17SignalProxyNormal8connect_ERKN4sigc9slot_baseEb_ZNSt10moneypunctIcLb0EE4intlE_List_nodegmtime_ZN4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEE_ZNK4sigc8internal12slot_do_bindclEPKNS_9trackableEgbooleanpush_frontgtkguitune_ZNSt8ios_base11adjustfieldEprepare_M_iendthread_set_priorityfunc__ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE8_M_eraseESt14_List_iteratorIS2_Estrtoull__normal_iterator, std::allocator > >__int32_t_ZNK4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4end_Evfreopen_IO_buf_endGErroroperator() >wcsxfrmBUTTON1_MASK__va_list_tag_M_set_length_and_sharable_ZNSt14numeric_limitsIeE10has_denormEiswctype_ZNKSs5rfindEPKcmm_ZNSt6localeaSERKS__ZNK4sigc10connection9connectedEvStockglistwcsspnvisit_each, sigc::bound_mem_functor0 >thread_join__gthread_once_tGDK_KEY_RELEASEobj_stderr_ZNSt14numeric_limitsImE6digitsEfunctor_base_S_id_monetary_ZN4sigc10connectioncvbEv_ZNSt6locale13_S_initializeEvGTypeClass_ZNK4Glib7ustringcvSsEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0_wctype~adaptor_functorappname_strputcGDK_2BUTTON_PRESScallbacks_wcsstrget_allocatorfailbitbadbit_cur_columnunref_ZN9__gnu_cxx13new_allocatorIcE9constructEPcRKclist_optint_curr_symbolGDK_ENTER_NOTIFYGCallbackalphavwprintf_ZNSt10__num_base11_S_atoms_inE_S_binvisit_each, sigc::pointer_functor0 >_ZNSt6locale10_S_classicE_ZNK4Glib7ustring16find_last_not_ofEPKcm_ZN4sigc9slot_base10disconnectEv_ZNSt8ios_base7failbitE_IO_read_ptr_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2__ZNSs7replaceEmmPKcmvfwscanfoperator()_A_arg1tm_hour_S_fixed_ZNK4Glib7ustring5rfindEPKcmmlist_scaleclear_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE8_M_clearEv_GSourceGCondrename_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEES3_EEvRKT_RKT0_~slot_rep_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZNSs14_M_replace_auxEmmmc_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6spliceESt14_List_iteratorIS2_ERS4_S6_S6_G_THREAD_PRIORITY_NORMAL_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE7destroyEPS3_mbsrtowcs_ZN4sigc10connection5blockEb_ZNSs4_Rep20_S_empty_rep_storageEnextappend_IO_write_ptr_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4swapERS4_visit_each, sigc::pointer_functor0 >_M_install_facet_ZN9__gnu_cxx17__normal_iteratorIPcSsEpLERKlSCALE_SMALL_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm_ZNKSt6locale4nameEv_M_prevwcsftime_ZNSt6locale5ctypeEreverse_iterator, std::allocator > > > >GDK_MOTION_NOTIFYvisit_each, sigc::pointer_functor1 >_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE_ZN3Gtk6manageINS_4MenuEEEPT_S3_lower_ZNK3Gtk7StockID10get_stringEvunhook_S_terminalgoodbit_ZNKSs4_Rep12_M_is_sharedEv_ZNK4Glib7ustring7compareEmmPKcmGdkWindow_ZNKSs7compareEmmRKSsmmmenubarthousands_sepset_childget_abbrev_Z11load_configPPPcPiS0_i_ZNSt10money_base20_S_construct_patternEccc__FILE_ZNSs7_M_leakEvputwcscientificbound_mem_functor0visit_each_type > >_ZNSs13_S_copy_charsEPcPKcS1__S_createclosure_callback_M_facets_size_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE_S_ios_seekdir_end_S_octvalidatetrackable_callback_listfsetposGDK_BUTTON_RELEASE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EEaSERKS4_cond_timed_waitdestroy___IO_buf_base_M_refdata_ZNSs4_Rep8_M_cloneERKSaIcEmmessage_ZNK4Glib7ustring4findEPKcm_ZNKSs17find_first_not_ofEcm_ZNK4Glib7ustring5c_strEvresizeoption_index_ZNSs9_M_assignEPcmc_ZNSt14numeric_limitsIeE13has_quiet_NaNE_ZNSs7replaceEmmRKSsmmhas_denorm_ZN4Glib15SignalProxyBase12data_to_slotEPv_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE4rendEv_ZNSt10moneypunctIcLb1EE4intlE_M_install_cacheclock_t_ZN4sigc19is_base_and_derivedINS_12functor_baseENS_18bound_mem_functor0Iv10MainWidgetEEE5valueERadioButton_ZN4sigc5slot0IvEaSERKS1_manageGDK_DRAG_MOTIONustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >slot_do_bind_ZNKSs16find_last_not_ofEPKcmm_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiERKlclassicfwscanfoperator bool_M_imploptions_heightGDK_BUTTON_PRESS_ZNSt6locale5_ImplaSERKS0_findglibmm_null_pointerNormalizeMode_S_atoms_in_ZNSt8ios_base3hexENORMALIZE_NFC_ZNK4Glib7ustring5rfindEcm~SignalProxy1slot1dispatchmenu_tuning_S_showbasecall_GDK_SCROLL_ZNSsaSERKSs_GCondrecmaskoperator new_ZN3Gtk6manageINS_4VBoxEEEPT_S3_visit_each_type > >_ZNSbIwSt11char_traitsIwESaIwEE4nposE_ZNSt10ctype_base5cntrlE_ZN4Glib7ustring4swapERS0_ustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZNSt15_List_node_base4swapERS_S0__ZNKSs5rfindEPKcm_S_out_ZNSt6locale5_Impl18_M_check_same_nameEvAccelKeyfgetpostyped_slot_rep >_ZNSs12_M_leak_hardEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZNSt8ios_base10floatfieldE~basic_stringwint_tList_Iterator_BaseGDK_LEAVE_NOTIFY_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE7_M_initEvsigned char_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcGDK_VISIBILITY_NOTIFY_S_hex_M_movevisit_each_type > >_ZNK4sigc9trackable30remove_destroy_notify_callbackEPvGDK_PROPERTY_NOTIFYcallback_dataslot0 >__pad1__pad2__pad3__pad4__pad5__off64_t_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5eraseESt14_List_iteratorIS2_E_ZNSs4_Rep13_M_set_leakedEv_ZNSs7replaceEmmPKcstringmbrlen~slot0_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKvSHIFT_MASK_GMainContextadaptor_functor >wmemcpy__gnu_cxx_ZNK4Glib7ustring6substrEmm_A_a1~MenuElemadd_destroy_notify_callback_ZNK4sigc9trackable13callback_listEv_IO_marker_ZN4Glib7ustringpLEPKcwcstombs_IO_read_base_ZNSt14numeric_limitsIdE12has_infinityE_M_nameslist_help__gnu_debug_ZN4Glib7ustring6appendEPKcm_ZNSt6locale11_M_coalesceERKS_S1_i_ZN3Gtk5Stock4QUITE_ZNSs6assignEPKcmgint8_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE5emptyEvwcstodwcstofwcstokwcstollong long intlowercaselimit_derived_target_ZNKSs16find_last_not_ofEcmprivate_set_ZN4Glib17SignalProxyNormal13connect_impl_EPFvvERKN4sigc9slot_baseEb_ZNK4Glib7ustring5rfindEPKcm_IO_write_basepointer_functor1<_GdkEventAny*,int>GQuark_ZNK9__gnu_cxx17__normal_iteratorIPcSsEixERKlprevGSourceDummyMarshal_ZN4Glib10HelperListIN3Gtk8MenuItemEKNS1_12Menu_Helpers7ElementENS_17List_Cpp_IteratorI12_GtkMenuItemS2_EEE8max_sizeEv~Elementprint_help_S_classicGSourceCallbackFuncs_ZN4Glib17List_Cpp_IteratorI12_GtkMenuItemN3Gtk8MenuItemEEmmEv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5eraseESt14_List_iteratorIS2_ES6__ZNSs6assignERKSs_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6assignEmRKS2__ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5beginEv_ZNK4sigc9slot_base5emptyEv_ZN4sigc19is_base_and_derivedINS_9trackableE10MainWidgetE5valueE_S_leftvalue_M_transfer__posp_sign_posnrandnew_allocatorSignalProxyNormalfixed_markers_ZN4Glib19glibmm_null_pointerE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6rbeginEvnew_allocator >Container_Helpershas_infinity_GTimeValwcrtombGDK_SETTINGMOD5_MASK_ZNSspLEc_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4_fopenGDK_OWNER_CHANGEuppercase_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4_overflow_arg_area_ZNSt17moneypunct_bynameIcLb0EE4intlE_ZNSt10ctype_base5upperEmenu_fileMenuBar_ZNK4Glib7ustring4copyEPcmm_ZNSt6locale5_Impl14_S_id_messagesEGCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4).symtab.strtab.shstrtab.rela.text.rela.data.bss.debug_abbrev.rela.debug_info.rela.debug_line.text._ZN3Gtk6manageINS_7MenuBarEEEPT_S3_.text._ZN3Gtk6manageINS_4MenuEEEPT_S3_.text._ZN3Gtk6manageINS_4VBoxEEEPT_S3_.text._ZNK4sigc15adaptor_functorINS_16pointer_functor0IvEEEclEv.rela.text._ZN4sigc8internal10slot_call0INS_16pointer_functor0IvEEvE7call_itEPNS0_8slot_repE.text._ZN4sigc8internal10slot_call1INS_16pointer_functor1IP12_GdkEventAnyiEEbS4_E7call_itEPNS0_8slot_repERKS4_.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKT0_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1_.text._ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEclEv.rela.text._ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7call_itEPNS0_8slot_repE.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1_.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKT0_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1_.rela.text._ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE7destroyEPv.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEES3_EEvRKT_RKT0_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEES3_EEvRKT_RKT0_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1_.rodata.str1.1.rodata.str1.8.rela.rodata.rela.text._ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE7destroyEPv.rela.text._ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE7destroyEPv.rela.text._ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE3dupEPv.gcc_except_table.rela.text._ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE3dupEPv.rela.text._ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE3dupEPv.rela.debug_frame.rela.eh_frame.rela.debug_loc.rela.debug_pubnames.rela.debug_aranges.rela.debug_ranges.debug_str.comment.note.GNU-stack.group@aHcPdXe`fhgphxijklmnopqrstuvwz{|}~ (08@HPX `!`*%+@#  &`'1`$< 6`$ Iy.JD.+Z Ux-f    #  3{! !w0! r(7@!@9`!+! X<\!! p?!AB!! Dw"rF "+HTP"`" K p" ME "@ 0O " HQ\ " W `S "  xU " WG #B Y # [b # ]]0# _@#aN2X#]2&q&( l e~'+y8g(+PiA0(<hk(-np. p]/PX@ro`4j't~095yh,dvnlxGpzP.|0ݽT*UUa ؞#%')*+-/01235679;<>?ACDFHJKMOQSUWY[]_a %cdegikmnp,e@ 8' Ee`rtvxz|~      !"#$U"/y"0"1"2 "3 \"5"6G"7 "9b";+"< ">"? C"A"CX"D "Fw"H+"JR"K "M "O  ] "Q "S "U , "W "Y* a "[ "] "_ 6"a% %0;) &Jpw|%pR) ) ),)()0)4%/6>DJQb%%@)8"g+!"i+w"k"nOf"p%/PrC4H_}1Fg1Opw[m>xmain.cc_Z15on_delete_eventP12_GdkEventAnyappname_strlong_options_ZZ4mainE5C.571_ZN3Gtk6manageINS_7MenuBarEEEPT_S3___gxx_personality_v0_ZN3Gtk6manageINS_4MenuEEEPT_S3__ZN3Gtk6manageINS_4VBoxEEEPT_S3__ZNK4sigc15adaptor_functorINS_16pointer_functor0IvEEEclEv_ZN4sigc8internal10slot_call0INS_16pointer_functor0IvEEvE7call_itEPNS0_8slot_repE_ZN4sigc8internal10slot_call1INS_16pointer_functor1IP12_GdkEventAnyiEEbS4_E7call_itEPNS0_8slot_repERKS4__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKT0__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1__ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEclEv_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7call_itEPNS0_8slot_repE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKT0__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor0IvEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor0IvEEEEEEvRKT0_RKT1__ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE7destroyEPv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKT0__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_16pointer_functor1IP12_GdkEventAnyiEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_16pointer_functor1IP12_GdkEventAnyiEEEEEEvRKT0_RKT1__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEES3_EEvRKT_RKT0__ZN4sigc8internal8slot_rep6notifyEPv_ZNK4sigc9trackable27add_destroy_notify_callbackEPvPFS1_S1_E_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1__ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEES3_EEvRKT_RKT0__ZNK4sigc9trackable30remove_destroy_notify_callbackEPv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1__ZN3Gtk4Main4quitEv_Z10destroy_cbv_Z11setRecInputvmenu_input_rec_ZN3Gtk9MenuShell5itemsEv_ZNK3Gtk12Menu_Helpers8MenuListixEm_ZNK3Gtk13CheckMenuItem10get_activeEvprintfopenstderrfprintfioctlclosefwrite_Z19set_option_defaultsvoptions_audiodevoptions_triggeroptions_sampfreqoptions_sampnroptions_widthoptions_height_Z11load_configPPPcPiS0_igetenvsprintffopenfgetcmalloc__stack_chk_fail_Z10print_helpP6optionPKcP8_IO_FILEfputc_Z14process_optionioptargsscanfoptions_adaptive_scaleexit_ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE7destroyEPv_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE7destroyEPv_Unwind_Resume_ZN4sigc8internal14typed_slot_repINS_16pointer_functor1IP12_GdkEventAnyiEEE3dupEPv_Znwm_ZN4sigc9trackableC2Ev_ZdlPv_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE3dupEPv_ZN4sigc9trackableD2Ev_ZN4sigc8internal14typed_slot_repINS_16pointer_functor0IvEEE3dupEPvmaingetopt_long_only_ZN3Gtk4MainC1ERiRPPcb_ZN10MainWidgetC1Ev_ZN3Gtk6Widget16set_size_requestEii_ZN10MainWidget10setDSPNameEPKc_ZN10MainWidget13setTriggerValEd_ZN10MainWidget14setSampFreqValEi_ZN10MainWidget12setSampNrValEi_ZN10MainWidget14setAdaptiveValEi_ZN3Gtk7MenuBarC1Ev_ZN3Gtk4MenuC1Ev_ZN4sigc9slot_baseC2EPNS_8internal8slot_repE_ZN3Gtk5Stock4QUITE_ZN3Gtk7StockIDC1ERKNS_14BuiltinStockIDE_ZN3Gtk12Menu_Helpers13StockMenuElemC1ERKNS_7StockIDERKN4sigc4slotIvNS5_3nilES7_S7_S7_S7_S7_S7_EE_ZN3Gtk12Menu_Helpers8MenuList6insertEN4Glib17List_Cpp_IteratorI12_GtkMenuItemNS_8MenuItemEEERKNS0_7ElementE_ZN3Gtk12Menu_Helpers7ElementD2Ev_ZN3Gtk7StockIDD1Ev_ZN4sigc9slot_baseD2Ev_ZN3Gtk16RadioButtonGroupC1Ev_ZN10MainWidget13setTuningNormEv_ZN4Glib7ustringC1EPKc_ZN3Gtk12Menu_Helpers13RadioMenuElemC1ERNS_16RadioButtonGroupERKN4Glib7ustringERKN4sigc4slotIvNS8_3nilESA_SA_SA_SA_SA_SA_EE_ZN4Glib7ustringD1Ev_ZN10MainWidget13setTuningWienEv_ZN10MainWidget13setTuningPhysEv_ZN3Gtk12Menu_Helpers13SeparatorElemC1Ev_ZN10MainWidget13setTuningEquiEv_ZN10MainWidget12setTuningNatEv_ZN10MainWidget10setScaleUSEv_ZN10MainWidget13setScaleUSAltEv_ZN10MainWidget10setScaleGEEv_ZN10MainWidget13setScaleGEAltEvmemcpy_ZN3Gtk12Menu_Helpers8MenuElemC1ERKN4Glib7ustringERNS_4MenuEabout_cb_ZN3Gtk5Stock5ABOUTE_ZN4Glib7ustringC1Ev_ZN3Gtk8AccelKeyC1ERKN4Glib7ustringES4__ZN3Gtk12Menu_Helpers8MenuElemC1ERKN4Glib7ustringERKNS_8AccelKeyERNS_4MenuE_ZN3Gtk4VBoxC1Ebi_ZN3Gtk3Box10pack_startERNS_6WidgetEbbj_ZN3Gtk6WindowC1ENS_10WindowTypeE_ZN3Gtk9Container3addERNS_6WidgetE_ZN3Gtk6Window16set_default_sizeEii_ZN3Gtk6Widget8show_allEv_ZN3Gtk6Widget19signal_delete_eventEv_ZN4Glib17SignalProxyNormal8connect_ERKN4sigc9slot_baseEb_ZN4sigc10connectionC1ERNS_9slot_baseE_ZN4sigc10connectionD1Ev_ZN4Glib17SignalProxyNormalD2Ev_ZN3Gtk4Main3runEv_ZN3Gtk6WindowD1Ev_ZN10MainWidgetD1Ev_ZN3Gtk4MainD1Ev;BMUj )qz (U ( ( %1@ (?EN] (%b (` (e). (v6s )  (y ( ( (  (N *Z_ d (t { (      (" *@' ,JSj o (t  "-5aDOWcdq| s  j  fLT\dnyc   +}>S (^ lc|  F W }j  ( l       " > F r }  ( l     % 5 n v      }# 8 (C lH a        + < }O d (o lt         c9D` h  } ( l/7?Gep   } ( l "[cks   }% (0 l5N   )}<Q (\ lazc (U+ (29Q *` s  j& f+Ic ( DLTa (i ( 3;CMX`cmz s  j  fU]emz ( (('/7@HUbo (1w (<(0=MZ (Bbx (M /7dNk}   o3 g8H[cksx ( (%$-?GUj8Rc:BKSz!9o(S(Z (u0)@@(}P(`(p(((((()h((   :(h :! :^& :<1 :!8 :? :F :M :ͲT :2[ :Pm :t : :_ :! :|0 :! :Q :e :QL :~ : :( :G  : :" :- :8 :> :*I :\T :_ :j :u :q :6 :% : :. :i : :^ : : :7& :4 :B :ȪQ :)u :} :# : :C : :" : :- : :{ := :  :mB :* :- :| :g  :&. :-$< :IJ :HX :yf :lt :,2 :> : :# : :y : :A : :?b :p :%~ :{ :* :o( :m :M  :U :m! :f_ :_ :'! :) :P7 :ZE :ѸZ :Qe :$ : :n :P :Z :  := :g : :  :F :23  : $ :a( :6 :RMD :hR :Rk` :Ѹn :Z| :m :w : :t :S :> : :1 :, : :1* :8 :pG :, :ָ : :5 :o% :q3 ::A :V :Ea :'p :Hx :H- :V :e :G : :U : :E, : $ :G\ :o :a# :j[2 :A :?P :2_ :in :f} :LB : :֛ :` :DX :$ : : :h :В :w" :G2 :<B :"R :b :=r :< :C :J :Q :X :- : : :Y :- : :y :He) :$27 :nJ :R :<` :ru :. : :k :st :r :3 :k : : :I :$ :)|3 :B :s^V :J^ : d :gj :.|p :v :| :* : :CH :& :q : : :s :O :h :$ : : : :% : :U :7" : : : : :$ :  :CP : :TP :$ :* :{0 :޼6 :X : :$k :) :g :&f :p :^ :TX :Z :TX :hs :h :P :h: : :YK# :) :)/ :f5 :"; :B :AJI :P :W :@^ :je :Ll :.t :w| :b :  :r :C :Y : :w : :1 : :_s :Ff :+ :zr :# : :? :lm :  :0 :2 :i :\ :mb :M\k :$O| :d : ::. :) :D :2 : :. : :. :u8 :W6 :x :H :| :2, : :{& :2 :ѕN :.o :U  : :< :Zf :i :h :i :"h :i: :e :߈} :d :d :d :c :L" :3: :>W :K6t : : :_ :W :N :U :rx' :q[J :\ l :4 :) :) :l : :j :Q"1 :|7 := :%C :SI :U :0r :" : : :x[ : : :# :r7; :>U :fl :JJ :* :o9 : :+ : :ؼ, :#S :Λt :) : :W :q :V :m : ' :D :u[ :Avr : :2~ :  :cR : : :?# :vE :h : : :x :e :O :t :$ :! :/ :l'= :K :oY :b(g :#u :Q :e :! : : :n :(x :B : :O :9 :@k : + :B9 :RM :ASe :/.w : :B : : :X :" :/ :aF :] :v~ : :f :RK :'' :V! :] ! :@c=! : [! :y! :B! :m! :! :ME! :`" :8" :U" : m" :k`" :4A" :XL" :Jx" :N# :G6# :\X# :ßu# :Ws# :s# :u# :Yy# :I"$ :y$$ :@$ :ҥg$ :8~$ :h$ :l$ :n$ :+% :*% :gM% :nj% :u% :|% :>% : % :{& :-*& :L& :7n& :5U& :a& :h& :7x& :×& :3' :#2' :,T' :9q' ::' :L ' :)p' :)p' :6( :( :U1( :7( :R( : wX( :x( :v~( :W( :( : ( :0^( :Y( :{( :K*) :a>) :aS) :XR) :) :) :7D) :) :) :Y) :[) :F) :ȏ) :F* :* :*M#* ::* :0A* :HUX* :9_* : lv* :Q, :o`, :xg, :@w, :!], :!], :!], :!], :!] - :!],- :!]J- :!]m- :K- : - : - : - :,J- : - :#- ::|- :)D . ::|. :q&/. :"L. :nb. :C i. :y. :C . :l#. :g. :g. :g. :f . :-3. :. : . :D/ :/ :W;-/ :#4/ :eqP/ :#W/ :kn/ :\u/ :/ :/ :x~/ :/ :G/ :A/ :I/ :yt/ ::,0 :yt0 :)0 :4kJ0 :0qe0 :u2l0 :0 :u20 :f0 :u20 :0 :_0 :t0 :_0 :L1 :_ 1 :0@1 :_G1 :`Kb1 :_i1 :.1 :>1 :O1 :T1 :-1 :T1 :1 :T1 :۶2 :T"2 :\=2 :TD2 :d2 :]1k2 : 2 :]12 :`2 :]12 :j2 :]12 :3 :]13 :P73 :]1>3 :jc3 :]1j3 :xx3 :#3 :3 :#3 :[3 :#3 :[3 :4 :q"&4 :-4 :u\4 :c4 :94 :4 :۴4 :4 : 4 :4 :P5 :5 :`WG5 :N5 :ٲs5 :z5 :5 :5 :825 :5 :6 : 6 :76 :>6 :(h6 :,o6 :,6 :q6 :26 :6 :U6 :#6 :V7 :%7 :i<7 :hC7 :IRY7 :P`7 :=v7 :*}7 :]7 :V7 :I7 :V7 : o7 :V7 :<` 8 :V8 :yV48 :#;8 :2[8 :#b8 :8 :#8 :8 :#8 :)8 :8 :98 :9 :!(9 :/9 :O9 :V9 :ev9 ::}9 :9 ::9 :Tb9 ::9 ::^9 ::9 :@{: :TD: :~^>: :TDE: :tj: :TDq: :v: :TD: :: :m: :J: :m: : ; :m; :42; :m9; :߷Y; :c`; :L; :"z; :_; :"z; :j; :"z; :< :"z < :&< :"z-< :^N< :"zU< :'< :0< :< :u< :z< :-= : = :5n= ::= :8)= :x/= :>= :=D= :ndZ= :>`= :v= :@|= := :$= :M`= :C= ::= := :+X= :%= :s> :~ > :R&+> : 1> :neH> :)`O> :f> :xl> : ~> :\> :> :'> :-> :&> :ۥ> :h> :]> :? :UE? :X? :Q"? :[(? : Y4? :/:? :L? :7X? :J^? :n? :uu? :s? :y? :xA :A :OeB :HaB :MB : B :4 bB :iB :fDB :uB :B :B :B :hB :z4B :(IC :m C :C :gC :k(C :/C :;C :BC :NC :OUC :aC :GhC :ĂyC :]eC :/C :EC :blC :JC :JC :JD :~$D :J?D : FD :;^D :DeD :|D :rD :D :hD :SD :OD :.(D :8D :E :TE :kE :ivE :$E :E :-E :BCE :ݞE :ZBF :YF :F :$F :+F :aXF :wmF :F :F : F :TF :dF :?F :bF :NVF :bF :#VG : dG :Y]2G : d9G :.]TG :yt[G :vG :u2}G :IG : G :'G :dG :rG : G :ǭG :fH :HLH :ːZH :ʥmH :sH :H :*H : \H :H :6H :H :H :H :ybI :#x I :oI :ZI :TlI :2G%I :+I :1I :t7I :1=I :tDI :yJI :=PI :VI :J]I :cI :]iI :"3oI :uI :]|I :DTI :"I :I :.I :J I :dcI :0I :dI :I :[I :I :7DI :I :-nI :y J :8J%J :y>J : EJ :q`J :gJ :"~J :yJ :yJ :yJ :yJ :yK :y3K : :K :̖UK : \K :uwK : ~K :*K : K :*K :TK :K :TK :q L :TL :Hv0L :T7L :RL :TYL :XMyL :TL :7ML :u2L :xPL :u2L :L :u2L :̈́M :u2 M :(M :>/M :/FM :>MM :dM :_kM :"M :_M :/M :_M :M :_M :=%M :_N :"N :_)N :9IN :]1PN :;pN :]1wN :?N :]1N :~N :]1N :tN :]1N :? O :]1'O :?LO :]1SO :G>sO :]1zO :=O :]1O :GO :]1O :O :O :zP :P :LP :SP :u}P :P :!cP :P :#vP :P :v Q :Q :'7Q :>Q :shQ :oQ :qQ :Q :ؒQ :Q :k Q :Q :R :#R : 6R :#=R :(@SR :#ZR :-uR :#|R :?R :"zR :qR :"zR :iR :"zR :k S :"zS :ʋBS :"zIS :٧sS :"zzS :S :"sS :kES : S :uS :ytS :bPT :XT :c#T :CT ::|JT :gT : X}T ::|T :bT :0T :C T :uT :gT :|T :C T :yU :gU :E+U :V2U :&yRU :VYU :~U :VU :ЪU :VU :iU :VU :fU :#U :QV :#!V :FV :#MV :LmV :#tV :HV :#V :V :V ::V :V :{W :W :H5W :^ :B/D^ :J^ :;5P^ :V^ :E\^ :ENb^ :*i^ :&qo^ :ӝu^ :vy{^ :]T^ :^ :v:^ :W^ :)^ :N#^ :.^ :^ :o^ :^ :x^ :Ԯ^ : ^ :K^ :y^ :^ :u^ :^ :_ :_ :_a/_ :R@5_ :hCK_ :R@R_ :^h_ :on_ :b_ :_ :i_ :_ : w_ :j_ :B_ :_ :J_ :_ :` :8` :7.` :Vg4` :@J` :)P` :U\f` :m` :*O` :8` :L` :s` :(` :ev` :` :~` := ` :4` :6a :a :<.a :٨4a :wZJa : ba :`f{a :Ka :<a :Ma :Ua :ُ b :)pb :)p6b :6Pb :Vb :)4qb :wb :x7b : wb :jb :vb :Pb :b :pb :0^b :nAc :{c :uc :ac :ac :XRc :)pc :)pd :6d :#d :>d :Dd :_d : wed :d :vd :nd :d :d :0^d :fd :{d :& He :a\e :aqe :XRe :e :&~e :1ze :v!e :+je :4f :I=f :*!f :L7f :?Qf :"lf :Drf :f :f :f :Gf :_g :="g :=Fg :=`g : fg :9g :Tg :?g :*g :"mg ::|g :g ::|g :LGh :1h :Q5h :C oh :gvh : }h :gh :h :Ah :Nnh :-3h :h :h :i :#i :*d"i :/U)i :Q?i :/UFi : \i :c ci :3yi :c i :{i :i ::i :Hi ::i :>i :wi :Oi :Fj :]1 j :*j :]11j :Rj :#Xj :isj :#zj :Թj :j :tj :j :ej :ij :IIj :ij :Ik :i#k :GIk :AvOk :'fk :Blk :b~k :k :p_k :k :,k :|#k :O-k :k :k :fk :9$l :0l :~Al :;qHl : al :qhl :l :l :yl :@l :l :ol :fm : m : m :/m :M_Wm :km :&qm :&qm : m :m :1m :Ƶm :0m :m :n :Sn :!-&n :d,n :in :ӝn :vyn :n :n :Yn :#n :;n :9o :+o :Eo :{Ko :$co :yo : o :=o :f"o :eo :Ao :<o :gho : p :ap :Ap :ghTp :2ip :aop :p :ghp :1 p :]Tp :]Tp :]Tq :+q :1q :wBGq : Mq :kRiq :Ƶpq :lq :q :.'q :Aq :źq :bq :<q :8q :)Tr :DB r :W#r :f"*r :8r : ?r :"%r :Yr :v:r :v:r :v:r : r :r :s :As :JC0s :?6s :Ls :bRs :Bhs :8ns :s :DBs :Žs :f"s :qs :s :s :As :ds :%s :G>t :Lt :~Zt :6ut :t :]t : nt :t : t :X u :KSu :k7u : =u :;Ou :Uu :ku :u :=u :٘u :u :'u :Pu :v : v :6[v :abv :Jtv :1Yv :1Yv : v :٬v :v :v :Bw :Ww :qw :'w :Xcw :Rw :w :>w :w :?Qw :vx :)x :/>x :1Sx :knx :1x :x :2x :x :iyx :#x :s+x :fx :~x :x :(x :+x :Wx :hx :jx :|'x :Cy :l y :dy :"y :ޑy :ͬ#y :T)y :#/y :=f9y :@y :}+Fy :Ly :4CRy :Xy :W^y :ֈiy :>oy :UHy :y :ky :y :{ :P{ :8V{ :[{ :c:{ : { :{ :"{ :"| :"#| :"<| : B| :D]| :c| :Ky| :L| :A| :| :1| :P| :| :<| :| : #} :*7} :ޑK} :ޑd} : j} :di} :ޑ} :/} :,} :K} :~ :<~ :Txk~ :z~ :$~ :4`~ :$~ :$~ :~ :t~ :  : :h$ :F? :_F :a :dg :;} : :`L : : : :}+ :}+ :a5 :[; :ZQ :2W :<+k :pq :MQ :π : : :. :M : :4C :́ : : :, :K : :W :W˂ :W :G :`; :kI :Ј\ :hb :V} :_ :gT :4 :4Ѓ :4 : :) :d : E! :b' :|Y= :bD :=Y_ : df :x : d :`݄ :^ :?3 :J :8) :3;!C 6X :!Xb 6g :&Xq 6v : , 6$ :* :ʒ :0Ʌ :Hڅ : 6Z : 6 9 : 6$ :f/ 6D4 :? 6D :XO 6]v :Ta 6d : 6 : 6Ȇ :>ӆ 6؆ : 6 :o 6 :q 6  9@& 9p@ 9Q 6y Z 9t 6 Pć̇55 6 !5 6. .P6XJ`Rhg`oh 6Q 9 9@ 9p׈ 9 9 9@ 6t ' 9pA 6U K"S*muljω 6x .6F 6 U 9k 9 9 9@ 9Њ 9 6 9 6y N V 4 < V ^ r z   6  ċ ؋    6  9P2 9H 9e 9{ 90 9 6 9ό 6ٌz     % 9 A U ] q 6  ! ) ! č) ԍ 69 r 9 W !9 )W =C EW Y 6kr sz 9 9  9PЎ 9 9 9  6 9P : 6D L fe n e  e  o ȏ ܏ 6    ' / ? 6*N 9 d 9 z 9 9 9p ɐ 9 ڐ 6M 9  6 3 ; - 5 O W k s 6+  6  Ց ݑ   6 90 / 9` E 9 b 9 x 9 9` 6 9 ̒ 6֒ޒ3"6>RZn 63;CKCKѓ 6 9 9 90 ) 9` ? 9 [ 9l 6y 90 6&ǔ_&D&D0!D5 6G_Ogcokwow 6 9p 9ӕ 9 9 9P" 93 6(@ 9Z 6dlRRpĖR̖p\p 6*2GO_ 6<n 9 9@ 9p 9͗ 9 9` 6_ 9! 6+ 3(M~Uo~w~ 6=ǘ 6٘* 65 9C 6H :4S 6aX :c 6h 90m :T 9p 9 9Ǚ 6_Й 9 6M :MBjVM^jm 6vV~j 6'Ěٚ 6J H$,-@H-\d-x 6mHPțЛ 6.6JR7lt 6Ĝ 6֜7ޜ? 9@ 9" 93 6< 9V 6ai Y > ʝ>ٝ 6*> 6Ya,i4qIiQqa 6px+ 6ɞ 6vҞڞ 6 6+ 3;$D8@U 6+^fz 6t 6 6̟ԟ#, 6)&.BJY 6rbj~ 6 Š 90۠ 9p 9 6 9) 64< W<__ug}oowowơ 67ա;ݡC;C 6Zv19NVf 6}u} 6͢բ 9 &4( 63;KSck{2>FOãrˣۣ+3B 6 QYmu 6/   Ƥ 6R դ ݤy  y  6u y  3y ; J 6 Y a u } 6  9! 9!Υ 6 ٥9!!9!! 6!) :ob= :{Q :{f :al : :ob :DȦ :D :a : :a :@ :Ә+ :iM :|q| : :) : :1M :";Ч :֧ :dF :- :rL :rg :an : : Ũ :˨ :n :D :n :Ʈ^ :obr : : :a : :a :/ :7Y0 :7YJ : Q :l :" : :T :gZ : p :/Uv :Ӑ :c :˗ :yt :i;ɴ :Hϴ : :O :Z : :w :  :z- : 3 :OJJ :ܜP :bo :*zu :X{ : P :Z׵ :7 :7 : :7& :K :7g :7r :~ :I# :7 :ȶ :7Ӷ : :7 :1 :- :7I :7e :7p : :7Է :7߷ :{S :7 :SP :7[ :{S :7 :{Sϸ :7ڸ :S :7' :{SF :{SR :St :7 :{S :7 :7 :i :7 :7 :iE :7P :iy :7 :{S :SϺ :7ں :{S :7 :) :74 :S[c 6$!s 6\!   6! 6! Ż ͻ 6"ݻ 68"   :7 6n"  ; C Z 6"` :x :7 :s   6"ļ 6"Լ 6"#ڼ : 9 90 (5 :SC :ijr  :S 6E# : 6h#Ľ 6#ɽ :Sӽ 6#ؽ :i 6# : :7(0+= :7F 6 $S 9`^ 6,$hp  6O$ :˾Ӿ :S :i * :S5 6r$; :F 6$_go 6$t :S~ 6$ :i 6% :ʿ :Sؿ :i  :S 66% :* 6Y%CKS 6|%X :Sb 6%g :iq 6%w : :7 :7 :+ 6% :P 62& :!<DQ :S_ :i :S 6U& : 6x& 6& :S 6& :i 6& :# :7FNZ :Sd 6'i :is 6<'| :S 6r' :% 6'>F S :S^ 6'd :o 6'  :S 6' : 6!(!! 6D( :S 6|( :i 6( :."6"B :SL 6(Q :i[ 6(d"l"""""## :S 6) : 6>) $($ 5 :S@ 6a)F :Q 6)j%r%  :S 6) : 6)&& 6) :S 6%* :i 6H* : : 6k*% :^c/ 6*7 :>= :A I%[ :[a :Le0mku 6* 6&+ 6o+ :4 6+ : 6+K : 69, :B :Ap :/ :G  6q, :0* 6#-/ :ʒ9 6\-> :&XH 6-M :!XW 6.e 6P.s 6. 6. 6Q/ : :] :j :g= 6/ 6 0 :.! 6C00 6y0L :"YR :V@^f 60k : ,u 60 :7 :+++ 6i1 :P 61 :++ :7 :#,+,+3 618 :PB 61H :W,_,} :7 :7 :D : :aX :7 : :7-'-/ 624 :P> 6W2D :W 9g 62u 9 62 6 3-f-j :7// 6/3 :P 6g3 :$ 94 63B 9@W 63` 6/4n/v///// 6R4 :700 64 :P 64 :3 9C 65Q 9f 6R5o 65y0f0j : :7 : :7 : :7 : H :7s :7 :7 :7 : :7 : :1 :2 :7= :[ :7f : :7 : :7 : :7 : :7 :' :7M :7d :7 :7 : : :7 : :7 :3 :7> : [ :7f :r :2 :7 : :7 : :! :, :qK: :.sH :V :d : Or :e' : : :c : :] :` :` : :T : :  :ё :!+ :9 :qKG :.sZ :s : : O :e' :!1V*@v :; :g0 :, :Ƕ :[ :( :2,. :: :`A :N :\U :v(b :Si :$v :} :s :\ :@ :S :+l : :[k :\ :h :S :L : :^ :7D : :z :-& :, :5n7 ::= :8H :7DO :Z :z` :Brk :q :)| :& :ۥ :h :] : :UE :X :Q :[ : Y :/ : :r :# :y :E:( :z4/ :(I; :mB :N :gU :ka :h :t :{ : :O : :G :Ă :d :Kq :3 : :< : :T1 :z :[ :[2 :t? :[F :iS :Z :}h :*o :@} : :] :) : :uq : :: : : :4 : : :9 :\? :=U :/( :@/ :]< :C :lhP :8W :נd :k : :G :M :! :X :r :} :X : :6 :3 :f :+, :'S! :,' :5 :Eq; :GI :Q6O :$\ :#Tb : n :It :a :t : :y :K} :} :̟ :ZB :Y : : : :5 : : : :V : :T^$ :+ :L6 := :H :O :ցZ :a :.bl :7Dr : : :\ :* : :* :t` :* :} :* :" :* :m :* : :* : [ :* :r& :*, :8 :*> :U,u      ( > c        C h ~        !9 "T #j $ % & +,-C/0ehikmnpq rtu xywz{| ~W (08s`( h(p(x(($(*(0(6(<(B(H(N(T(Z(`(f(l(r({((((( ( v +? G oo+7 C }+? sG oj 4 < 4@ \ 4` | 4 4 4 4 4 4 4 4 48L 4Pd 4h| 4 4 4 4 4  4$ 4(< 4@\ 4`t 4x 4 4  4! 4" 4#  4$$ 4(%< 4@&\ 4`| 4  40 4p 4 4< 4@@\ 4`+| 4, 4- 4/ 40 4 b( H h    0 H ` x         8 P h   ! " # $ % &( @  X 0 p   @ +( ,@ -I .` /i . 0 .0  .B(0<DPXdlx!!!$P,W7x?Z>bpx!> 1CM[b`&!DkLW _1jbrr}tbbtv !)7?!]ep x1bt4E[l:#E.U6 A I dlbzbrv*2:@EHUV ^ l t!e 1br *"2E=[ElPXckv~:EU   !  &11v9DLW_jr"}lbbrv !)7?"MEU[cukyT 1"ui   b' b/ r= vE S [ i q    E [   t    1 v    % 0 8 C EK [V 2^ ry x     1 b f     {   !. !6 PQ cY ht | o   1 b f r t     4 4 [ [   ' 2 E : U U ] x         1 b f     4% 40 [8 [C  K 5 V e ^ u y           1bf#.6A4I4T[\[gu o ! &   $ ) C r  T ) 11<bDfOWbju4}4[[    o  * 2 M U ` h1sb{f44[[u  +3> F Q Y d@ lC wl o       @ 1b!f,4?GR4Z4e[m[x:EUCH3FKl* 21=bEfPXckv4~4[[%!e!ot0_r w(0A; C1NbVfait|44[[   !!!\!<D_gmr z1bf"E[lu!!!!"=EP-X0cYk\v~egg   1+3>Fagiwtw|bbrv !)"7E?[MlUckbbrv" E[#l+9A_g7r z1luS V'V/JRmuH7'2 :1EMX`ks'**Ylq"- 51@EH[S[rv~ 1E[r++3> F1QY2t| 12)1'< D1OWrzT17br7r?wZ>bC}247<^g  / +7 -R Z u ) } +       !I! !K!$!,!8!@!\!d! o! w!! ! ! ! ! ! ! ! " " " " 8" @" K" S" n" v" " " " " " " " " " # "# *# E#M# h#p####### ## $$(,$4$+O$W$r$z$ $$$$$$$$ %%6%>% Y%a%|%%%%%% %%%&&&+2&:&U&]& x&&&&&&&& &&'!'<'D'O'W'r'z''''' ''' ( !( )( D(!L(!X(!`(!|(!(! (!(!("(" ("("(")")##)#>)#F)#a)$i)$ )$)$)%)% )%)%)&)&*& *&%*&-*& H*&P*&k*s***** *0*1*1*2*2*8+8 +k&+8.+9+A+L+T+ko+w+++)++++K++++, ,,,k9,A,M,"U,Kq,y,,,,,,,,,,,,,,-#-+-6->-\-d-o-w---------\-\-...".-.5.P.:X.=c.@k.v.~.._.w.w..K.......=/P/u/#/./6/Q/KY/d/l/%w/P/X//////////= 00 0(0.C0K0V0^0y00008080=0@0D0D00@1W 1W1j 1s(131;1F1N1i1+q1+}1+1++1+1+1,1,1,1,+1,2,2-'2-32-;2-W2-_2-j2-r2-{}2-2-2-'2-2-2-2-$2-2-2- 3-*3-//3/73/C3/K3/g3/o3/z3/3/3/3/3/3/3/'3/3/3/3/$4/ 4/4//4/*74//R4/Z4/e4/m4/x4/4/4040404040404040{405050'$50/50750R50$Z50e50m5050*50/   0 @ P ` p  0@P`p !"#$%&+ ,0-@/P0    0 8 @ H `hpx+- -$-'-s-'-/-N-^-7-K/ /$// /'(/@/'H/;P/RX/Z`/?h/O0 0$0'0s0'0/0N0^070K>!vr (@kHPXpkxxx (@HPXpxZbJZb (J@H/PXpx  (@HP Xy ` h pxv  y   v [  y  & (6 0 8 P X ` h           y      0 8 @y H P X ` h   y   & R b 2 J      ( 0 8 P X ` h    9!? G  /    9!? G   /  (  0  8 9!P  X  `  h  p  x                (  0 8  @ k H s P  X [ p  x    k s  [  @            0 8 /@ 4H 8` h /p 4x 8  / 4 8 / 4     8  / 4 ( 0 8 @ 8H ` @h p x  @ H t  T l K [ ` d K [ ` d0 K8 [@ `H d` [h `p 9!x !   d  [ ` 9! !   d l9!!0l8t@HPXpwxww  ,(408PX` h p,x4   (@HPXpx[&IX`H[ &(I0X8`@HH`h-p[x&I 0w8@HPXpx"*"* (@tHPX`ht08!@MHfP/X7px!Mf/7 &(I0[8gtkguitune/main.cc0000644000175000017500000003027611064663614013160 0ustar flohfloh// main.cc // // guitune(gtk--) - program for tuning instruments // (actually an oscilloscope) // Copyright (C) 1999 Florian Berger // Email: florian.berger@jk.uni-linz.ac.at // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License Version 2 as // published by the Free Software Foundation; // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // // #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "aboutbox.h" #include "guitune.h" Gtk::Menu * menu_input_rec; char options_audiodev[256]; double options_trigger; int options_sampnr; int options_sampfreq; int options_width; int options_height; int options_adaptive_scale; enum optionType { OPT_AUDIODEV, OPT_TRIGGER, OPT_SAMPFREQ, OPT_SAMPNR, OPT_WIDTH, OPT_HEIGHT, OPT_HELP, OPT_ADAPTIVE, OPT_DUMMY }; static const char appname_str[] = "gtkguitune"; static struct option long_options[] = { {"device", required_argument, (int *)"arg=device audio-in device", OPT_AUDIODEV}, {"trigger", required_argument, (int *)"arg=threshold of schmitt trigger", OPT_TRIGGER}, {"sampfreq", required_argument, (int *)"arg=sample frequency in Hz", OPT_SAMPFREQ}, {"sampnr", required_argument, (int *)"arg=number of samples", OPT_SAMPNR}, {"width", required_argument, (int *)"arg=width in pixels", OPT_WIDTH}, {"height", required_argument, (int *)"arg=height in pixels", OPT_HEIGHT}, {"adaptive", required_argument, (int *)"arg=1|0 adaptive scaling of sample data", OPT_ADAPTIVE}, {"help", no_argument, (int *)"this help", OPT_HELP}, {NULL, 0, NULL, 0} }; void process_option(int act_option) { switch(act_option){ case OPT_AUDIODEV: sscanf(optarg,"%s",options_audiodev); break; case OPT_TRIGGER: sscanf(optarg,"%lf",&options_trigger); break; case OPT_SAMPFREQ: sscanf(optarg,"%d",&options_sampfreq); break; case OPT_SAMPNR: sscanf(optarg,"%d",&options_sampnr); break; case OPT_WIDTH: sscanf(optarg,"%d",&options_width); break; case OPT_HEIGHT: sscanf(optarg,"%d",&options_height); break; case OPT_ADAPTIVE: sscanf(optarg,"%d",&options_adaptive_scale); break; case OPT_HELP: exit(1); break; case OPT_DUMMY: break; } } void print_help(struct option * opt, const char *appname, FILE * io) { int i; fprintf(io,"\nusage: %s [--option []]\n",appname); fprintf(io," options:\n"); for(i=0;opt[i].name!=0;i++){ fprintf(io,"--%s %s\n",opt[i].name,opt[i].has_arg?"":""); fprintf(io," %s\n",(char *)(opt[i].flag)); opt[i].flag=NULL; } // printf("the color <0xrrggbb> means one byte for each red, green, blue\n"); // printf("the transparency specification is optional e.g. <0xrrggbb>\n"); fprintf(io,"\n"); } int load_config( char *** confv, int * confc, char ** argv, int argc ) { FILE * f; int c,i; char * str; char allstr[64000]; char filename[512]; *confc=1; str=allstr; sprintf(filename,"%s/.gtkguitunerc",getenv("HOME")); if( (f=fopen(filename,"rb")) != NULL ){ do{ str[0]='-'; str[1]='-'; for( i=2 ; (c=fgetc(f))!='\n' && c!=EOF ; i++ ){ if( c!=' ' && c!=0x13 && c!=0x0A ) str[i]=c; else { str[i]=0; (*confc)++; // while((c=fgetc(f))==' ' && c!=EOF); } } str[i]=0; if( str[2]!=0 ){ (*confc)++; /* fprintf(stderr,"confstring:<%s> confc=%d\n",str,*confc);*/ str+=i+1; } } while( c!=EOF ); *confv = (char **)malloc( (argc+*confc)*sizeof(char *) ); str=allstr; /* fprintf(stderr,"allstr:<%s>\n",allstr);*/ (*confv)[0]=argv[0]; for(i=1;i<*confc;i++){ (*confv)[i]=str; /* fprintf(stderr,"confstring2:<%s>\n",(*confv)[i]);*/ if( i!=(*confc)-1 ){ for(;(*str)!=0;str++); str++; } } for(i=1;iitems()[i]))->get_active()) && i<10 ; i++); printf("setRecInput: item #%d selected\n",i); if( (mixer_fd=open("/dev/mixer", O_RDONLY)) == -1 ){ fprintf(stderr,"no mixer dev available\n"); } else { fprintf(stderr,"mixer_fd=%d\n",mixer_fd); if (ioctl(mixer_fd, SOUND_MIXER_READ_RECMASK, &recmask) == -1){ fprintf(stderr,"can't query mixer device\n"); } else { for(j=0;j= 0){ process_option(act_option); } Gtk::Main kit(argc, argv); // Gtk::Window::set_default_icon_name("guitune_logo"); MainWidget m_wid; // m_wid.set_size_request( 380, 220 ); m_wid.set_size_request( 380, -1 ); m_wid.setDSPName ( options_audiodev ); m_wid.setTriggerVal ( options_trigger ); m_wid.setSampFreqVal ( options_sampfreq ); m_wid.setSampNrVal ( options_sampnr ); m_wid.setAdaptiveVal ( options_adaptive_scale ); Gtk::MenuBar * menubar = manage( new Gtk::MenuBar()); // Activate the helpers for easy menu setup. { using namespace Gtk; using namespace Menu_Helpers; // Create the file menu Menu * menu_file = manage( new Menu()); MenuList& list_file = menu_file->items(); list_file.push_back(StockMenuElem(Gtk::Stock::QUIT, sigc::ptr_fun(destroy_cb))); // submenu tuning Menu *menu_tuning = manage( new Menu()); MenuList& list_tuning = menu_tuning->items(); RadioMenuItem::Group gr3; list_tuning.push_back(RadioMenuElem( gr3,"_Normal", sigc::mem_fun(&m_wid, &MainWidget::setTuningNorm) )); list_tuning.push_back(RadioMenuElem( gr3,"_Wien", sigc::mem_fun(&m_wid, &MainWidget::setTuningWien) )); list_tuning.push_back(RadioMenuElem( gr3,"_Physical", sigc::mem_fun(&m_wid, &MainWidget::setTuningPhys) )); list_tuning.push_back(SeparatorElem()); RadioMenuItem::Group gr2; list_tuning.push_back(RadioMenuElem( gr2,"_Equidistant", sigc::mem_fun(&m_wid, &MainWidget::setTuningEqui) )); list_tuning.push_back(RadioMenuElem( gr2,"N_atural", sigc::mem_fun(&m_wid, &MainWidget::setTuningNat) )); // submenu scale Menu *menu_scale = manage( new Menu()); MenuList& list_scale = menu_scale->items(); RadioMenuItem::Group gr1; list_scale.push_back(RadioMenuElem( gr1,"_US", sigc::mem_fun(&m_wid, &MainWidget::setScaleUS) )); list_scale.push_back(RadioMenuElem( gr1,"US-_Alt", sigc::mem_fun(&m_wid, &MainWidget::setScaleUSAlt) )); list_scale.push_back(RadioMenuElem( gr1,"_German", sigc::mem_fun(&m_wid, &MainWidget::setScaleGE) )); list_scale.push_back(RadioMenuElem( gr1,"G_erman-Alt", sigc::mem_fun(&m_wid, &MainWidget::setScaleGEAlt) )); // submenu Input Channel menu_input_rec = manage( new Menu() ); MenuList& list_input_rec = menu_input_rec->items(); RadioMenuItem::Group gr0; { int i; int recmask; int mixer_fd; if( (mixer_fd=open("/dev/mixer", O_RDONLY)) == -1 ){ fprintf(stderr,"no mixer dev available\n"); } else { fprintf(stderr,"mixer_fd=%d\n",mixer_fd); if (ioctl(mixer_fd, SOUND_MIXER_READ_RECMASK, &recmask) == -1){ fprintf(stderr,"can't query mixer device\n"); } else { for(i=0;iitems(); list_opt.push_back(MenuElem( "_Tuning" , *menu_tuning )); list_opt.push_back(MenuElem( "Note _Scale" , *menu_scale )); list_opt.push_back(MenuElem( "_Recording Input" , *menu_input_rec )); Menu * menu_help = manage( new Menu()); MenuList& list_help = menu_help->items(); list_help.push_back(StockMenuElem(Gtk::Stock::ABOUT, sigc::ptr_fun(about_cb))); // Create the help menu // Menu *menu_help = manage( new Menu()); // menu_help->items().push_back(MenuElem("About", slot(void_void_cb))); // Create the menu bar // Gtk+ does not have O(1) tail lookups so you should build menus // backwards whenever you plan to make lots of access to back(). menubar->items().push_front(MenuElem("_Options", Gtk::AccelKey("o"), *menu_options)); menubar->items().push_front(MenuElem("_File", Gtk::AccelKey("f"), *menu_file)); menubar->items().push_back(MenuElem("_Help", Gtk::AccelKey("h"), *menu_help)); } Gtk::VBox *vbox = manage( new Gtk::VBox() ); vbox->pack_start (*menubar, false, false); vbox->pack_start ( m_wid, true, true ); // Gtk::Window window (GTK_WINDOW_TOPLEVEL); // window.show(); Gtk::Window win (Gtk::WINDOW_TOPLEVEL); win.add(*vbox); win.set_default_size( options_width, options_height ); win.show_all(); win.signal_delete_event().connect( sigc::ptr_fun(on_delete_event) ); kit.run(); return(0); } gtkguitune/logview.o0000644000175000017500000056475011064666203013567 0ustar flohflohELF>@@B?!#%')+-/0H\$Ld$H+wH4vD$SH\$)DDLd$HÐSHH D$*O $ST$ $\S0)*Y^XX H [,fDUSHHH@HHLJHHGHtHHHxHPH8H0H(H HHHHHHHhHH[]H8HH0H(H HHHHHHHhHHHHHHDHHsH_HKUSHHH@HHLJHHGHtHHHxHPH8H0H(H HHHHHHHHh[]H8HH0H(H HHHHHHHhHHHHHfHHHŐuHaHMf.ATUHSHHHPHHFxHH@HHHGtHHHxHPH8H0H(H HHHHuH[]A\H8IH0H(H HHHHuHLIIIIIIĐIIxUHSHHuHH[]H\$HHt$4HHT$HT$H$HD$D$4E Ht$8H߃D$8E$Ht$HD$;HD$;HD$;HD$f9HD$fH$CH$^H$]H$\H$DVH$WH$XAWAVAUATUHHSHH|$ H@H@L|$ HD$ML|$@tILHxHPH|$0Ht$@H\$0HtHHHxHPH@H@HtHHHxHPHtHHHxHPHT$@HtHHHxHPHD$H H8Du$HAAHD$]De HHHT$PtHHHxHPEHt$PD4$ED$A)LHT$PHtHHHxHPE@f.4HAŋE H(D$HD$H8EAUA] H9ADM+E9HD$De$HHHT$`tHHHxHPD$D)Ht$`DKDLD$AD$DD$$HT$`HtHHHxHPHD$HH8HD$]$HHHT$ptHHHxHPD$Ht$pEL$DLDLHT$pHtHHHxHPMtILHxHPHĈ[]A\A]A^A_H+]HHtHHHxHPHT$@HtHHHxHPMtILHxHPHHT$PHHuHHDHT$pHHuHT$`HHuAWAVAUATUSHhH$H|$(dH%(H$X1HH$HHt$(H$H$HHT$PHH$HHHH|$PHHH$HH$HHt$(H$HHL$XH$HH$HHHH|$XHHHD$(HT$(H@H@HD$0H$pHH$pHH$ tHEHHxHPH$H$ H$HtHHHxHPHL$(H@H@HtHHHxHPHtHHHxHPH$ HtHHHxHPHtHEHHxHPH$Ht$(HT$(H$1I?\HHD$`B0XB8*Ld$D$f(T$T$YYCHXH uL$H$1H<LH1*$*$HL$(HcA(YDH^HD$(ܠf.@8v\ܠHHuHt$(HT$0H0H:E1AFH|$(*^YXźgfffDHL$(DEDa HL$0)A)HAۃH$0HtHHHxHPEH$0AA)DH|$`H$0HtHHHxHPHL$0AHD$(ۃHDh D`$HH$@tHHHxHPCL%H$@AH|$`D H$@HtHHHxHPAAxHD$(HT$(HzHD$ ;H$PHHH|$XHH|$XH$`H$HD$(H$hH$$dHT$0D$hHD$lL$lHD$ HH:HL$(HcA(HHL$0AHD$(Hh X$HH$`tHHHxHPLG,?H$`EDH|$`FL) H$`HtHHHxHPHD$(HT$0HH:H$HHL$XHH$ptHHHxHPHL$0HD$(Hh X$HH$tHHHxHPD$lLH$L$pH|$`؉D$@DL$@DA)AL AT$H$HtHHHxHPH$pHtHHHxHPHT$0Ht$ H:HL$XHH$tHHHxHPHL$0HD$(Hh X$HH$tHHHxHPLL$@H$L$DH|$`AL H$HtHHHxHPH$HtHHHxHPHt$(HD$0H8H8E1DBH|$(HT$(HL$0ADb j$HHH$tHHHxHPغVUUUEA ,H$EH|$`)R)DDFL H$HtHHHxHPIIMHD$xHT$x\$xH$H4H$H|$XH$H|$XHL$xH$hH$`H$H$D$hD$dD$l̠H|$($HD$0H$H8HT$XHH$tHHHxHPHD$0HL$(HDi i$HH$tHHHxHPغVUUUADd$DAAL-H$L$H|$`)DRDD$A)ԋT$DEA)ƍL AVA H$HtHHHxHPH$HtHHHxHPHL$0Ht$ H9HD$XHH$tHHHHxHPHD$0HL$(Hi Y$HH$tHHHxHPT$DLH$L$H|$`L DA H$HtHHHxHPH$HtHHHxHPHD$xH|$xvHL$0Ht$ H9H|$(HL$0AHD$(HX hHH$tHHHxHPH$AED$ىH|$`H$HtHHHxHPH|$(HL$0AHD$(Hh X$D`HH$ tHHHxHPLH$ EEDH|$`AH$ HtHHHxHPHD$p@HT$(HD$pHD$HHD$0HL$(HI HH$0L$LtHHHxHPDL$LDD$HH$0L$LH|$`ADH$0HtHHHxHPHT$(zuiHL$0Z$HHH$@tHHHxHPL$LDD$HH$@H|$`DDIH$@HtHHHxHPHHT$pH$PHH4HH|$PHH|$PHL$(H$H$`HD$0H$hH$H$h$lHL$8HH8HT$PHH$`tHHHxHPHL$0HHH$ptHHHxHPD$LH$pL$`H|$`)ʼnM؋\$H)ÍSH$pHtHHHxHPH$`HtHHHxHPHT$0Ht$ H:HL$PHH$tHHHxHPHD$0HHH$tHHHxHPMH$L$H|$`H$HtHHHxHPH$HtHHHxHPHT$(zvE1HL$pHD$(H$DHDY*ȸYH$H$H$H|$XH$H|$XH$H$`HD$0H$hH$D$hD$lHt$8H8HT$XHH$tHHHxHPHD$0HL$($dHi$HH$tHHHxHPDL$LAAH$DDd$HL$EBL1 H|$`A)AL AT$H$HtHHHxHPH$HtHHHxHPHT$0Ht$ H:HL$XHH$tHHHxHPHL$0HD$(HX$HH$tHHHxHPL$LH$L$DH|$`AL AL H$HtHHHxHPH$HtHHHxHPAAHD$pH|$p`iH|$`tHL$`HHHxHPH|$XtHL$XHHHxHPH|$PtHL$PHHHxHPH$XdH3%(uHh[]A\A]A^A_HIH|$`tHT$`HHHxHPH|$XtHT$XHHHxHPH|$PtHT$PHHHxHPLH$@IHtHHHxHP|H$0IHugI_IH$ HtHHHxHPHSHEHHxHP=IHLIH7I/H$IHtHHHxHPH$H3IH$IHtHHHxHPH$HIH$IHtHHHxHPH$pHIH$IHtHHHxHPH$HH$`IHnHIHIH$`H=H$@IH$H$0IH H$ IH~H$IHeH$IHtHHHxHPH$H/II@/I3IH@IHH$IH$IHtHHHxHPH$HIH$pIHHHHxHPH$IHtHHHxHPH$HGIH$I-H$IHIIfDIHIHHHxHPyfH\$Hl$HHHSE 9~ S E$9~HHH\$Hl$H% : ; I$ > $ >   I : ; : ;I8 : ;I  : ;  : ; : ; I : ; I8 I!I/ &I : ; : ; 9: ; : ; : ;<  : ; ( <  : ; I8 2 .? : ;< I4 I : ; 4: ; @I? < !9: ; ":: ; #9: ; $.? : ; I< %.? : ;I< &&' : ; I8 (I)*.? : ;I< +.? : ;< ,.? : ;I< -.? : ; @I< ..? : ; I< /0G : ; 1G : ; 2.? : ; < 3.? : ; @I< 4.? : ; @< 5.? : ; @< 6 I7.? : ; < 84: ;@I? < 9 : ;I8 2 :.? : ;@I2 < ;.? : ;@2 < <.? : ;@I2 < =.? : ;@I< >.? : ;@I< ?.? : ;@< @.? : ; @I2 < A.? : ;@I< B.? : ; @I< C4: ; @I? <  D4: ; @I? <  E4: ;@I? 2 < F< G.? : ;@I< H.? : ;2 < I.? : ;@2 < J.? : ;@2 < KG : ;L.? : ;2 < M.? : ;< N!OPIQ5IR4: ; @I? <  S : ; I8 2 T4: ; I< U4: ; I<  V.? : ; @I< W9: ; X : ;I8 Y.? : ; I< Z : ; [ : ; I8 2 \.? 4 < ].? : ; L < ^.? : ;@IL M 2 < _.? : ; @2 < `.? : ; @2 < a.? : ;@< b.G cI4 d: ; Ie4: ; If g.G@hI4 i: ; Ij: ; Ik.1@l1m1UX Y n1o Up4: ;I q1X Yr.G@ s4: ; It: ;Iu: ;Iv4: ;I w: ; Ix1X Y y1X Y z1X Y { |41}4: ; I~4: ; I 411UX Y 4: ; I 1X Y1UX Y1X Y4: ; I? < 4G 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < ޚ8,minttttt .  m# # # # #  #( #0 #8 #@ #H #P #X #` #h "m#p &m#t ({#x ,F# -T# .# 2# ;# D# E# F# G# H-# Jm# L# > cM ._1M ._2P Q R Nm# S# 1._3 {# #71 M# M# # #  # # m# XFmt| std67-X Z ] _ b  i/  jX  n  o  p6  qN  rf  t  v  w  y  |  }  ~D  f        / G t ˁ  ͤ Μ и ѷ   c  A ؀ d e g h i j k1 lH m` n o s t v  w+ xS zk { | }     # 7 P w       < c:;<C D EGHIJK%LGMjNOH!>[x)Ls(Jq 'C_{Ie¥ +Ceɇʩ5Qm   F5P#5#5| G7   Gk  G GQS;T;\;e;h <i!<^ I I # An! ."/ #+$ km11$ o-1-$ Ȱ1% m$( C( m-. &X  c dm#'rem em#  k lt#'rem mt#  w x #'rem y #=M3m   ( m( ( %  xm  )%6  1%N  m1%f  t1%  ( ( -- * div !/ mm+  [%  1%  #X tt%  jm1-%7  v-7 1-= %f  nm7 1-+  -- , m%  Y-+  M%  H1 %  Mt1 m%/ S81 m%G m1%i z-i-o= % qm= ! -abs  -div   % *   %  1%A } 1 m%c  1 m% ] 1 % c1 + m%   + $ m% m%1 m$H m%` m%} m}% m$ 11% a---$  11%+ mtm%H mHN%k t% m.)m% + 1% mm$Bmm$ m1$# m11+7 +P -%w 2mm-. $ % Ymm$"m1B% em-1/% m1%< m1%c im-1% m11`5 8# 9# ?# E# F# G#( H#0 I#8 J#@ K#H L#P M#Q O#R Q#S S#T U#U \#V ]#W `#X b#Y d#Z f#[ m#\ n#]$}m1.  tm8 m# m# m# m# m# m# m# m# m# t#( 1#02/ . $  $¼ $  $<<B%__e $_$_$--1<_%&m%%!7 7 m%>= %[mi%xfmm%nmi/%mi/%,%V-1-%)4-7 1-%A.mAG%sa-7 <-%= %= %ym7 -i/%mii/%%(mi%Jmi%qm7 -i%mii%mi%mi%8-= $ 7 7 i$'mii$Cmii$_7 7 i${-ii%8-7 -i<$-i$7 7 i-$mii-$7 7 i-%Cg-C-i$e-ii%(i7 %7 i$7 7 i%,tim% 08im$+-7 i-%C*m%e mii-%7 7 i-%7 7 i-%7 7 = -%tmi/%mi/$7 i= $57 ii$Q7 i= $m7 ii%7 i= -%<i% im% im0i@1-6326A9216C9?2K6H9m3l6KJ-36N1J336S98( 46]9836a-J46g9356k96676EE1o41#2y7a27c77imP6Pu61!m124885 295#:: 52:] 52:{ 522: 5 2: 5$2; 5(2: 5/-281;"!572881:J!5?-288:m!5G21;!5P18;!5Y18;!5b8;!5u;"5y;?"5};b"511;"82888;"82<52+"522"822"8222"#822882J#822882m#82182#8212#828+#52m=#5222= $5221=/$522=L$52=i$52>$end52>$end5"2=$5+2=$542=$5=2=%5F2=4%5N-2=Q%5T-2=n%5Y-2?%8m28?%5t28=%5|-2?%828?&52= &52=B&5328=d&5-28>&at5328>&at5-28=&5222=&5221= '522=.'8I222=Z'8Z22288='8.2218='53221='8228?'5V23 (8222=5(5t22288=\(82218=~(5221=(5228?(528=(52282=%)5228288=Q)8l22818=x)52281=)522288=)5C2=)5[2288=*5k2=;*52=g*522882=*52288288=*8228818=*522881=++522888=W+5222=+52218=+5+221=+5@228=,5d22=G,5o2211=x,5y22=,522:,822888: -8228818@3-88=_-8-288?}-822=-512=-512=-5P2=.8-2188='.5-228=N.5(-218=u.8-28=.5F-228=.8-2188=.5b-218=/8-28==/5-228=i/8-2188=/5-218=/5-28=/5-228= 08(-2188=105-218=X05-28=05-228=08=-2188=05-218=08I-28= 155-228=L18T-2188=s15R-218=18i-28=15r288=15m22=28}m2882=E28m288288=g28m21=28m2881A8m28818-2 6 6261&3 5 5-# 5-# 5#14 52# 8?2 8D7 8P4B523354335443524352445283 4523F452=l482884452?4823452A8]284-4&3170DC0iC0jC0kC0lC0mC0nC0o Dall0q?907#E0!7E0$7E0*8E096E0cVFid2760|82P60882i6081260881m260888m2608m3608884<3706$83270$883S70$88=o7058G08H70=87I0@I0C:70FmmJ0I888m588156858K86090-#E0;y8088L8id088M8id08A0-8*868*88Kn;5(090#90n;#90-#90n;#90 # E0;E0;E0;E0;E0;E0;E0;;907;907H:0 7;-H.:0 71-HI:0 7-He:07mH:07;;:07;::07;:0!7;m;;0$7;;;);0'7;8;M;0*78t;J027t;-t;z;6;8N;;N;86;8;B8;;b$;m;$ <;$!<;1$8<;1K<: I 8I <8I 1AI D D KY>9z99|#+<9Y>+<9Y>_>=<9-j>==9j>=4=9u>Y>=V=9<Y>m=s=9u>Y>==9<Y>m==9-j>{>==9u>Y>{>==9<j>{>=>9u>Y>{>=?>9<j>{>A9_>j><6e>p><6<6>6- T-#F-(M)+t,m->0F182M5HR!?'?O2? ?8?> I?u?>#>#> ?D">C??C C ?# C!># C"u?#B/??(? ? ?@B1BC>BD)@BE:@BHK@ABJ BKA# BLA# BMA# BNA# BOA# BPA#( BQA#0 BRA#8 BTA#@ BWB#H BXA#P BY,B#X BZAB#` B\WB#h BdB#p Be #x Bf!?# Bg # BiB# Bj!?# BlB#PA@AOAAA(A>AAPA@AOAAAOAAAA( B>AA B=?A(&B&B?/@B(AB ?&B2BOWB&B ?GBOB? ?>>>? ?BB?]BOB ??B(B> ? ?B?"BB(B> ?L"B'CL% L& ?# L''C#BK8CKIC D`K' K) ?# K*D# K,D# K-># K/D# K1>#( K2>#, K3>#0 K5'C#8 K7D#@ K8D#H K: ?#P K; ?#XKDNDK?'refK@!?# KA!?#'getKED#K YDD0KK KM(E# KN=E# KQ\E# KRmE# KUD# KVE#(K"B DND-C>COD ?DD{?DDKH ("E>D"E>E(=E>D.E(\E>DD ?CEOmEDbE:>B.\>.cEE.p .rE#.eEE.u .wE#EQ>>:E(F>K >LE# >OE# >P~E#!FpF;#h# 4 ?1YpF/R/29/r6#2G/Y2.G/Ym2GG/YY=iG/YYY?G/YY+G/ YY+G/YY--+G/Y1-+G/Y1+H/#Y-sE+YY-sE=I/?YY-=I/FYYY=I/GYY1=J/HYYsE=1J/IYY?OJ/JYsE?mJ/KY=J/MYYY=J/NYYY--=J/OYY1-=K/PYY1=+K/QYY-sE=RK/RYY-=yK/YYY-Y=K/ZYY-Y--=K/[YY-1-=K/\YY-1=)L/]YY--sE=UL/^YY--=|L/`vFYvFsE=L/avFYvF?L/bYvF-sE?L/cYvF-=M/jYY--Y=UM/kYY--Y--=M/lYY--1-=M/mYY--1=M/nYY---sE=N/oYY---=@N/qYYvFvFY=qN/rYYvFvF1-=N/sYYvFvF1=N/tYYvFvF-sE=N/uYYvFvF-?O/|Y=?O/}YY--=\O/~YY=~O/vFYvF=O/vFYvFvF=O/mYY=O/mY1=P/mY--Y=KP/mY--Y--=|P/mY--1-=P/mY--1=P/6Y=P/6Y=Q/sEY->%Qat/sEY-=LQ/FY--=iQ/vFY>Qend/vFY=Q/|FY>Qend/|FY=Q/^ Y=Q/^ Y=R/d Y=4R/d Y=[R/-YY-=R/-Y1--=R/-Y1-=R/-YsE-=R/-Y-=#S/-YY-=OS/-Y1--=vS/-Y1-=S/-YsE-=S/-Y-=S/-YY-=T/-Y1--=>T/-Y1-=eT/-YsE-=T/-Y-=T/-YY-=T/-Y1--=U/-Y1-=-U/-YsE-=TU/-Y-={U/-YY-=U/-Y1--=U/-Y1-=U/-YsE-=V/-Y-=CV/-YY-=oV/-Y1--=V/-Y1-=V/-YsE-=V/-Y-=W/Y=W/-Y=;W/-Y=XW/-Y?{W/Y-sE?W/Y-=W/-Y=W/-Y?W/Y-=X/6Y>0Xraw/YY=MX/1Y=jX/1Y=X/-Y--=X/%Y=X/(YY=X/+YY=Y/3Y=6Y/6FY3F=SY/CFY=pY/JFYA/QFYF6YF6F6Y6Y6vF6|F1ZvF/eS/{<#+Y/Z+Z/ZZ3$Z/psEZ3@Z/rYZ3aZ/sZZm3}Z/tYZ3Z/uZZm+Z/Z<A/<ZY6ZYZ>![# (& [M[(T'x(Um#'y(Vm# (Wm# (Xm# !\!&T"4U"5H^*h/?U"6H^dHI?U"7H^~?U"8H^?U"9H^333333?U":H^Hգp= ?U";H^S?1 ^X[)S[#25\4 ^2]\5 ^mmmm2v\6 ^&^4\; ^m4\@ ^m4\E ^m4\J ^m3]Om1^3"]Tm1^3>]Ym1^3Z]^m1^3v]em1^3]lm1^3]sm1^3]zm1^3]1^<^3^B^ ^V&^1^\,^[7^\67^[##WAtk$.+Af^^+'x+>#'y+># +># +># +\^^ ,+ ,,>#'red,-># ,.># ,/>#+b_#_=1 =2E#+h__+t   ^^#_@)_`@R @S># @T._#@*`I`@X'use@Y#a#'min@Z?#'max@[?#@+T``H@_ @`E# @cu?# @d`# @ea#$ @f>#( @h>#, @i`a#0 @k>#8 @lfa#@a@6#a@>`a@E`_<,waa8< < b#< _#< >#< [^#<_#(<>#0<0abP<1<2b#<3_#<4>#<5>#Xx<6?#Xy<7?# <8c#(<9>#0<:>#4<;c#8<<?#@<<?#Hc3eAIf3eAKmf4 fALf3'fAMmf4DfANf3`fAOmf4}fAPf3fAQmf5ARfdf[^[^fd6d6f1jjc*0S*M_#B*6E2+g*:jj_2Dg*<jjpj3eg*={jjjpj2g*?jjm4g*Ajj{j3g*D_jj3g*Gjj3g*J_j2h*Wjj2h*_jjY4:h*djj>4Wh*ejj4~h*ljj>>>4h*sjj4h*ujj4h*vjj-iset*jjY35i*jjY3Qi*>j3mi*>j3i*>j4i*jj>4i*jj>4i*jj>4i*jjj3j*>j35j*j3Qj*jV*jf6vjf6fj^vj6jF6jFjGtk'alaZmp)Fj#S):#[x0);m#[y0);m# [h);m#$S)#@S)?w#HS)@w#S)Af#S)Bf#S)Cf#S)Df#S)Ef#S)Ff#S)Gf#S)Hm#\lxm xx27l/xm x]\lLjxm x3}lOmx3lVmxm4lwx4lxm?l]x?mcx?(mrx^SmCjxj^~mMjxj_m\x`x1nF4Sn#2mn2mnm2nnn2(nno4Enno3fnono=n oo=noo3nno=noanedm6 om6m o1hpF4Shp#2Konp2eonpm2~onphp2onpj4onptp3otpnpj=o zpj=pzpj35phpzp=Rpzpanpjdo6oj1qF4Sq#2pq2pqm2pqq2pqj4qqq39qqqj=[q qj=}qqj3qqq=qqaqpdp6pj1IsF4SIs#2rOs2-rOsm2FrOsIs2_rOsUs4|rOs`s3r`sOsUs=r fsUs=rfsUs3rIsfs=sfs?3sOs7Osjvdq6[sq6q[s1tF4St#2st2stm2stt2stt4ttt3%tttt=Gt tt=ittt3ttt=tt?tt7totedls6tls6lst1EvF4SEv#2(uKv2BuKvm2[uKvEv2tuKvQv4uKv\v3u\vKvQv=u bvQv=ubvQv3vEvbv=/vbvaKv^[t6Wvt6tWv1wF4Sw#2vw2vwm2vww2vww4www3!wwww=Cw ww=ewww3www=ww?ww7wQvw^[hv6whv6hvwx jxx&6xjb8x^c8x1^bRx}qcRxqblxnclxobxucxbvbx(ncxd׻xexnonbxnclxbx>]c8xbyZ]c8xfby"]c8xgUy}lhUyiposVmxgy\lhUyjObymcxcby7lcUyccy xkzylymyLnykRzylymyLnykzylylymyLnybzpczcqg-{mhUyo{pvdqzzqzzr{lwhUyjweysldfysizmezmg|lhUyo{phd@qznqznrA|lwhUyt]g|SmhUyup0MjvxOmdvyOm`r|lwhUyjmb|mcxb|pc|zpb}Koc}cnpbD}|dwlhs&^cwrhs&^cbm}lcUyccm} xk|~D}lN}x}|/l|y|;y|y|?y|@y|@zyInykD}lN}lb}x~|/l|y|;y|y|?y|@y|@zyInyb3scwsrc˴OsjbEncxwsrcem{|xobncxwsrcob4rccbTtcTwsrcYtob}scTcgz~mhUy}x^m}y^m}x1^m}x2^m~win`p~xcnnxcnn|x^nxxnxxyyyycx؁cn4fnHn>mWxnaxx%^fnhQ4pnHn>mWxnaxxr^pnh4snHn>mWxnaxx^snhyztyycxcn$^snhyztx\^fnhz^pnhbwcwsrc˟wQvbÃvccb(uccKvgmhUy}im}km}xm}ym}x2m~str~eёёx}zm}nmtzty~winpyopyxnnxnn|xQnx{xnxxyyyyx˅nyz4nHn>mWxnaxx0^nh\4nHn>mWxnaxx}^nho\y†4nHn>mWxnaxx^nhx znn54nHn>mWxnaxKxnxxl^nhxnxznn߇4nHn>mWxnaxx^nhx!nM4nHn>mWxnaxxn^nhxznn4nHn>mWxnaxֈxnxx^nhxn@znnm4nHn>mWxnax^nhn݉4 nHn>mWxnax^ nh-4 nHn>mWxnaxP^ nhop\y4nHn>mWxnax^nh4nHn>mWxnax ^nh1znnv4nHn>zWxnax^nhnz$nn)4$nHn>zWxnaxL^$nho$nz1nnČ41nHn>mWxnaxیx1nx^1nh!1nIz8nnv48nHn>mWxnax^8nh8nqz<qÃ<qÃ<qz<qÃ<qÃ<xj^nh8nx^nhxÎnyz^8nh ^1nhC1nxd^nhxnx^nhxǏnx^nh n.^nhQ^nht^ nh^ nh^nhݐn^$nh#$nF^nhxg^nhxnx^nhyyёcg(mhUytCj::  Bo@@Bq>:$E27))"l#l$l%l'<)̓  Bo@@Bq>2?:$<ZE27))|1     ϒ ܓ1ݒ d[r[*h/?[dHI?[~?[?[333333?[Hգp= ?[S? 4 ? AnFE@FFFF'F(F+F`FaFd5 2 8?2 8D7 8P485 2 8?2 8DoC0jC0kC0lC0mC0nC0o E0*8VFE0cnFE0;E0;E0;E0;E0;E0;E0;GdecGGhexG GG octG@GGG G$G'G*G- G1@G4G7JG: GLmGOmGTmGWm| inGv˜outGy˜ curGH3H4H5H6H7H8 H9@H: CH;CH<H= 8I18I18I <8I 18I8I8I8I8Iy8Iy8Iy8IyR/2NDEJɚ /usr/include/glibmm-2.4/glibmm/usr/include/pangomm-1.4/pangomm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/include/sigc++-2.0/sigc++/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/gdkmm-2.4/gdkmm/usr/include/gtkmm-2.4/gtkmm/usr/include/pango-1.0/pango/usr/include/gtk-2.0/gdk/usr/lib/glib-2.0/include/usr/include/glib-2.0/gobject/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/extlogview.ccrefptr.hrectangle.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h_G_config.hwchar.hstdio.hclocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.hcontainerhandle_shared.hmarkup.hcontainers.hgtypes.htype_traits.h trackable.h fontdescription.hfont.henums.h component.h types.h window.h stockid.h pango-types.hlogview.hcolor.h gdktypes.hgdkcolor.hglibconfig.hgtype.hustring.hlocale_classes.hatomic_word.hgthr-default.hpthreadtypes.hstringfwd.hbasic_string.hnew_allocator.hallocator.hbasic_string.tccstl_iterator.hgunicode.hunicode.hgdkevents.hgdkdrawable.hgobject.hgdataset.hgdkinput.hrectangle.h gthread.hgerror.hgquark.hgstrfuncs.hlimitsios_base.hctype_base.hlocale_facets.hmain.hgmain.hgslist.h :>/Wv.iBWKyttYtYtJtt<J/W/gg~֑~tJ%WY-0 x=WY/N~Y~t"Km=WYw~ zXwX rXL ȯ Xu JtX_sLw:o@YMYRYRYRYRY+w_oX twXNO8uuvt]@YMYOYRYRYRY,wC8Z:Z/rLus7JX6J,<:Z/44<MX3<,<:Z/?YBz  YslL6xXx|%=?E#&t:/ZYXtYYY"ƅ9ZY=eY*WuzJ f,[%X[%<}CYxgs&XZ&<:/yf6*VhVdQ/X>OX1<a:/[%&w#Z:/S9XGX9<sf:/JfS.o Z:/SXX<kf:/K*6?XX?t,<:/D=7<6xXR4V8ZJZ:/SXX<Vt:/)~t<~JXWR Z:/S.XX<Nf:/1->X!X<If:/6X<H:/7XX<B<:BJ/>'X<,<:/$5VVrZ:/S,:/7 Z:/S,:/"A4VZ:/SX~Xt<<:/~t<~<<< Z:/SX~X<<:/~-d<IIJU*III-s/ J++&w/ v2J/I@JCf>Y>DB.??DB.?U?DB.?U?$@?LIzH@<FR^jv@<FR^jv5@JVbnz  n#<I x                         #Vj ~    UWd&S<9N&kx&&*&&*&**(*8*,%+,%,*%%A% % E% $ % ( H% , ' , 7%,(,j%,8%,%,+,:%*)*d%)D%)`%)6%)#%$%(+(7%+*+k%*s% '!'!'!7%"'"&#'#%#*#&$%&LIzHpointer:%d,%d grundton=%d blackwhite#999green#666redSans 13pxSans 8px%d/%dKey%.2fABHCDbDEbEFGbGAbBbC#D#F#G#A#25/2416/159/87/675/646/55/432/25125/964/325/1845/3236/253/225/168/55/3125/7216/99/515/848/25125/64hHX8 hHX8 hHX8 hH hH X8 X8 7LogViewx GN ZAG0$AAG $AAG $?BAD $ADD`l$ADDP $mBDG0X<BIB B(A0G8G<BFB B(A0D8M<rBBB B(A0G8G<~BGB B(A0A8G QJG zPLRx $GN DZAG0$dAAG $AAG $?BAD $ADD`l$ADDPD $\mBDG0X4BIB B(A0G8G4BFB B(A0D8M4 rBBB B(A0G8G4D~BGB B(A0A8G |QJG wGw $U$,STPQwQXwXw0PmUmSPmamhwww?w UuSu{U{?S@AwABwBIwIw @uUuSSwwww  U tSxSTuVxVwwwwU(V)VlU2a27b7Taglapqwquwuywy7wp~U~VV@IU@ITPRwRVwV]w]w0PlUlSPgTg\UUUUTTTT "w"+w+-w-/w /0w(07w07>w8>/ w 6U6 V / V- } }0 2 w2 8 w8 : w: < w < = w(= A w0A N w8N w0 X UX VV0 G TG SSNSSA}}wwww w(w0w8bw U VV$,V36V8;VBJVRZVs]]$]8b]~$~8b~Q^^$^8b^ESS$S8BSRbSzQQQprwrywy{w{}w }~w(~w0w8+w pU+wVV^E S !^!$_%%'_%''^''_''^''_'"(S2(2(_2(G(S\(\(_\(d(S((^((_))D)^))^),*_**^**_**^*F+_F++S!'w'"(w2(G(w\(d(w(D)w),*w**w*F+w!'w'"(w2(G(w\(d(w(D)w),*w**w*F+wV \E]w V''V''w'"(]2(2(w2(G(]\(\(\\(\(]\(_(w(D)w))\)*w**w*+w++]++\Xd(~()~)*~**~*+~Xd(~()~)*~**~*+~8TQTiQiqQ+,w,A,w + ,U ,7,V+ ,T ,2,SyLogView::pos_noteZyLogView::lfreq_posyLogView::~LogViewzLogView::~LogViewRzLogView::~LogViewzLogView::invalidate_arrow-{LogView::change_lfreq{LogView::invalidate|LogView::set_nat_tuningA|LogView::on_button_press_event|LogView::setScaler}LogView::LogView|~LogView::LogView}LogView::draw_arrowLogView::draw_itLogView::on_expose_event|note_gernote_usnote_ger_altnote_us_altnoteܓtuning_nat,A,IPj07=BEb=BEHBR++g((27VkKS?B27?BP F++^**D)),  afpafps  !$!9!V!,!/!!$!,!/!!+'*F+),*(D)2(G(''!!!!!!!!!!!!?"D"G"g"?"D"G"J"%%%%%%%%%%%%%%%%&&&&&&&&&&2(G(( )llabs_ZNK4Glib6RefPtrIN3Gdk6WindowEEcvbEv_ZNSt10ctype_base6xdigitEoperator==_S_octstrtodstrtof_ZN4Glib7ustringaSERKSs_IO_buf_endstrtol_ZNK3Gdk5Color9get_greenEvgetwc_GMutex_ZNK4Glib7ustring7compareEmmPKcm_ZN7LogView9lfreq_posEdprintg_ascii_table_ZNK4Glib6RefPtrIKN5Pango6LayoutEEcvbEv_ZNKSt6locale4nameEv__gthread_once_tLayoutswprintf_ZNKSs5rfindERKSsmmbsinitfrac_digitsfailbitthread_equalVISIBILITY_NOTIFY_MASKGObject_ZNSt6locale5_ImplaSERKS0__M_indexKAMMERTON_GdkRectangleGData_ZNK5Pango9Rectangle12get_lbearingEvvfscanf_ZNK5Pango9Rectangle4gobjEv_M_check_same_name_ZNK9__gnu_cxx17__normal_iteratorIPcSsE4baseEv_ZNSs7reserveEm_ZN5Pango9Rectangle5set_yEioperator bool_ZN4Glib7ustring6rbeginEv_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6__ZNSt6locale10_S_classicE_ZN4Glib7ustring7replaceEmmPKcmremove_ZNKSs11_M_disjunctEPKcsize_tbool_ZNSs4_Rep7_M_grabERKSaIcES2__M_copyBUTTON2_MOTION_MASKrect_ZNK4Glib6RefPtrIN3Gdk8DrawableEEptEvfreadKEY_PRESS_MASK~localesnprintf_ZNSt10ctype_base5upperEon_button_press_eventBUTTON1_MOTION_MASKGDK_BUTTON_RELEASEatexitatofatoiatol_ZN4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEE_ZNK3Gdk9Rectangle4gobjEvget_widthnote_ger_alt_M_install_facet_ZNSs4_Rep10_M_destroyERKSaIcErend_ZN3Gdk5Color9set_rgb_pEddd_ZNSs6insertEmPKcm_ZNKSs6lengthEv_ZNK4Glib6RefPtrIN3Gdk6WindowEEptEv_ZNKSs5beginEvfind_first_ofn_cs_precedesasctimewcstombsALL_EVENTS_MASKGdkColor_S_right_S_empty_rep_ZNSt6locale13_S_initializeEvhas_cursor_ZNK4Glib7ustring9uppercaseEv_ZNKSs5rfindEPKcmm_ZN4Glib7ustring4swapERS0__ZN4Glib6RefPtrIN3Gdk2GCEE5clearEvtm_hourSCALE_XX_SMALLi_GC_ZNSt6locale3allE_S_outget_greengbooleanstdin_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc_IO_read_endoperator*operator+operator-GDK_NOTHINGoperator=KEY_RELEASE_MASKsystemwcsrtombsquotrfindatollg_typecollate_key_ZNK4Glib7ustring7compareEmmRKS0__ZN7LogView15on_expose_eventEP15_GdkEventExpose_S_hexint_p_sep_by_space_ZNSs7replaceEmmPKcfpos_tunref_ZN4Glib7ustring6insertEmPKcmGDK_AXIS_X_ZNSs4_Rep10_M_disposeERKSaIcE_ZNSs15_M_replace_safeEmmPKcmfputws~basic_stringnat_freq_M_move_ZNSs4_Rep15_M_set_sharableEv_ZNKSs12find_last_ofERKSsm_S_ios_openmode_end_ZN9__gnu_cxx13new_allocatorIcE10deallocateEPcmstrtoldstrxfrm_M_destroy_ZNSt6locale5facet9_S_c_nameE_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idE_ZNSt6locale18_S_initialize_onceEvgetenv_ZNKSs7_M_iendEvpos_tm_ydayputwcharftellcompareaxes_ZNSs7replaceEmmmcthread_selfint_curr_symbol_IO_save_end_ZNK9__gnu_cxx13new_allocatorIcE7addressERKcwcstoul_ZNSt8ios_base6skipwsEwchar_t_markers__pad1__pad2__pad3__pad4__pad5lowermemchrgetwcharprivate_setGSListfwscanf_ZNSt10money_base18_S_default_patternE_ZN9__gnu_cxx3divExx_ZNSt6locale11_M_coalesceERKS_S1_i_ZNSt14numeric_limitsIfE13has_quiet_NaNEgetccond_free_ZNK4Glib6RefPtrIKN3Gdk2GCEEptEvnat_tuning_ongets_ZNSt14numeric_limitsIeE12has_infinityE_ZNSt8ios_base3hexEadjustfieldFOCUS_CHANGE_MASK_GCondnum_axesGDK_DESTROY_ZNKSs16find_last_not_ofEPKcm_ZN4Glib7ustring6insertEmmc_ZN4Glib7ustring6insertEmmj_IO_write_basewmemsetpush_backsubstr_ZN3Gdk5Color8get_typeEv_ZNSt6locale6globalERKS__S_terminalreg_save_areaset_rgb_pstrtoul_ZN4Glib7ustring6appendEmj_ZNKSs4findEPKcmfieldGErrorputwcGDK_MOD1_MASKBUTTON_PRESS_MASKctype_ZN4Glib6RefPtrIN5Pango6LayoutEE5clearEv_M_leak_hard_ZNKSs13find_first_ofERKSsm__clock_t_ZNK4Glib7ustring13find_first_ofEPKcm_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEi_ZN3Gdk5Color10set_grey_pEd_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEvcntrl_M_set_sharableref_count_S_once_ZNK3Gdk5Color8get_blueEv_GMainContext_S_id_messages_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE_ZN4Glib6Source12vfunc_table_Embrtowc_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKvnat_lfreq_M_limit_IO_read_ptr_ZNSt8ios_base7unitbufE_GObject~RefPtr_S_basefieldset_hslnormalize~_Implerasewctype_t_ZNKSs5rfindEPKcmNormalizeModeset_grey_p_ZNSt8ios_base3decEgp_offsetreverse_iterator, std::allocator > > > >_ZNK4Glib6RefPtrIN3Gdk2GCEEcvbEv_ZNSt17moneypunct_bynameIcLb0EE4intlEGDK_AXIS_LAST_GSourceFuncs_ZNKSs4findERKSsm_ZNK4Glib7ustring5rfindEPKcmm_S_atoms_iniswctypepreparevwscanfkeysfind_last_ofreserved2gdoubleclock_t_M_install_cache_GSListg_threads_got_initialized_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm_M_ibeginget_blue_p_ZNK5Pango9Rectangle11get_descentEvhas_infinity_ZNK4Glib7ustring11collate_keyEv__gnu_cxx_M_current_ZNSt6locale13_S_categoriesEKAMMERTON_LOGDrawingArea_ZNSt8ios_base8showbaseE_S_createGDK_SUPER_MASK_ZN4Glib7ustring6appendERKS0_gintPOINTER_MOTION_HINT_MASKBUTTON_MOTION_MASK_GError_ZNSbIwSt11char_traitsIwESaIwEE4nposE_ZN3Gdk5Color7set_redEt_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE_ZNK4Glib7ustring8capacityEvset_blue_ZNKSs13find_first_ofEPKcmmungetwccurrency_symbolGDK_EXPOSE__wchbshort unsigned int_ZNK4Glib7ustring8max_sizeEv_ZN3Gdk5ColoraSERKS0__ZNK4Glib6RefPtrIN3Gdk2GCEEeqERKS3_equal_M_check_S_classic_ZNK4Glib7ustring16find_last_not_ofEPKcmmSCROLL_MASK_ZNKSs5emptyEvRefPtr_S_scientific_ZN4Glib6RefPtrIN3Gdk2GCEEaSERKS3__ZNK4Glib6RefPtrIKN5Pango6LayoutEEeqERKS4_GDK_MOD2_MASK_ZN4Glib6RefPtrIKN5Pango6LayoutEEaSERKS4__ZNSt8ios_base9boolalphaE_M_check_length_S_app_ZNKSs7compareEmmRKSsmmmutex_unlockp_sep_by_spaceGDK_AXIS_PRESSURE_ZN4Glib7ustring4rendEvmktimeappendbaseon_expose_event_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc_mode_ZNSt6locale5_Impl14_S_id_monetaryE_S_boolalpha_ZNSt6locale5ctypeE_ZN4Glib6RefPtrIN3Gdk6WindowEE5clearEvtuning_nat_ZNSt8ios_base3curE_ZNKSs4findEPKcmm_ZNSt6locale5_Impl10_S_id_timeE_S_ateG_THREAD_PRIORITY_NORMAL_pos_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEc_ZNSsaSEc_ZNK4Glib6RefPtrIN3Gdk8ColormapEEcvbEvcount_ZNK4Glib7ustring7compareEmmRKS0_mm_ZNSs6appendERKSsconstruct_ZNK5Pango9Rectangle12get_rbearingEvgetchar_ZNK4Glib7ustring5bytesEvuppercase_ZNKSs4findEcmblue_ZNK4Glib7ustring16find_last_not_ofEjmGDK_KEY_RELEASE_ZNK5Pango9Rectangle5equalERKS0__M_grab_ZNSt6locale5_Impl14_S_id_messagesE_ZN4Glib6RefPtrIKN3Gdk2GCEE4swapERS4_fgetc_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEi__gnu_debug_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEvmonetary_S_categoriesfwide_ZNSt6localeaSERKS_window_M_facets_ZN3Gdk5Color14rgb_find_colorERKN4Glib6RefPtrINS_8ColormapEEE_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mcset_widthlfreqGDK_AXIS_IGNOREtmpfilewcsspnthread_exitmutex_new_ZNSs12_M_leak_hardEvi_col_pointer_Ios_Iostate_ZNSsixEm_ZN4Glib7ustringpLEPKc_ZNSspLERKSs_ZNK5Pango9Rectangle9get_widthEvsrandfree_ZNK4Glib7ustring6substrEmmGSource_ZNSt14numeric_limitsIdE13has_quiet_NaNEother_M_dataplusg_type_instance_ZNSs4_Rep10_M_refdataEv__pos_ZN4Glib7ustring7replaceEmmmc_ZN4Glib7ustring7replaceEmmmjwcsstr_ZNSt6locale5_Impl18_M_check_same_nameEvsource_funcsget_lbearingGDK_BUTTON1_MASK_ZNKSs5c_strEvGDK_VISIBILITY_NOTIFY_ZN3Gdk5Color5parseERKN4Glib7ustringEset_greenvfwprintfbtowcGdkEventButtonNORMALIZE_DEFAULT_COMPOSEpriority_ZNKSs7compareERKSsBUTTON3_MOTION_MASKwctombGDestroyNotify_ZNSt17moneypunct_bynameIcLb1EE4intlEfopenmldfGDK_SHIFT_MASK_S_badbit_ZNSs7_M_dataEPc_ZSt7nothrowunsigned int_ZN7LogView14set_nat_tuningEb_ZNK4Glib7ustring5beginEv_M_replace_facet_Exit_ZNSt6locale5_Impl19_S_facet_categoriesERefPtrwcstoullboolalphahas_denorm_ZNSs3endEv_ZNK5Pango9Rectangle10get_heightEv_ZN4Glib6RefPtrIN3Gdk8ColormapEE4swapERS3_casefold_ZN3Gdk9Rectangle9set_widthERKiswapget_blue_GThreadFunctions_S_showposcallback_funcs_M_remove_referencei_col_shad_ZNSt6locale2id11_S_refcountE__FILE_S_end_ZN4Glib6RefPtrIN3Gdk8DrawableEE5clearEvget_allocatorcond_signal_ZNK4Glib7ustring4findERKS0_mGDK_SCROLL_ZNK4Glib7ustring3rawEv_ZN4Glib7ustring6appendEPKc_ZNK4Glib6RefPtrIKN5Pango6LayoutEEptEvlong unsigned intintlhas_quiet_NaNtm_isdstint_n_sign_posnNORMALIZE_DEFAULTGDK_PROPERTY_NOTIFY_ZNSt8ios_base5fixedE_ZN5Pango9Rectangle4gobjEv_ZNSt10ctype_base5graphE_ZNKSs6substrEmmlocale_ZNK4Glib7ustring12find_last_ofEcmfixed_ZN5Pango9Rectangle10set_heightEi_IO_read_basedevice__int32_t_ZNSt10moneypunctIcLb0EE4intlESCALE_XX_LARGEwcstodObjectwcstok_IO_write_ptrwmemcmppoll_fds_ZNSs7replaceEmmPKcm_ZN7LogView10invalidateEv_M_id~Colorget_type_ZNSt6locale4timeEoperator!=_ZNKSs9_M_ibeginEv_ZNSt8ios_base9showpointE_ZNSt14numeric_limitsIdE12has_infinityEtv_seccond_broadcast_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcm_unused2GTimeValtm_minbasic_stringSCALE_X_SMALLGDK_MOTION_NOTIFY_ZNSt10__num_base11_S_atoms_inEnext_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmc_ZNSs4swapERSs_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmj_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEE_ZNK4Glib7ustring12find_last_ofEjmsetScaleint_frac_digitsGType_M_disjunct_M_refcopy_S_floatfield_ZNSt6locale7_S_onceE_ZNKSs7compareEmmPKc_ZNKSs8_M_limitEmmRectangleqsortGDK_CLIENT_EVENTPangocode_ZN4Glib6RefPtrIN3Gdk6WindowEEaSERKS3__ZNK4Glib6RefPtrIN3Gdk2GCEEneERKS3___in_chrgeofbit_M_is_leaked_ZNSs4_Rep26_M_set_length_and_sharableEm_S_id_collatetm_mon__off_t_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEinone_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEv_ZNSs6insertEmRKSs_ZN3Gdk5Color8set_greyEtx_rootGDK_SOURCE_PEN__wch_ZNSt10ctype_base5alnumE_S_construct_pattern_GTimeValparseoperator++_ZN9__gnu_cxx3absExoperator+=_ZNSt10ctype_base5printEclosure_callback_ZN4Glib6RefPtrIN3Gdk8ColormapEE5clearEv_ZNSt10__num_base12_S_atoms_outE_ZNSs6assignEPKc_GdkEventButtonNORMALIZE_ALL_COMPOSEdigitwcsncatLEAVE_NOTIFY_MASKthread_create_ZN4Glib7ustringaSEc_ZNSt10ctype_base5cntrlE_ZN4Glib7ustringaSEjoperator--_ZN4Glib6RefPtrIN3Gdk8ColormapEEaSERKS3_operator-=operator->grundtong_thread_functions_for_glib_use_ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEv_ZNK4Glib6RefPtrIN3Gdk8DrawableEEeqERKS3_reserved1_ZNSt8ios_base6badbitEallocatebytes_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEdeEv_IO_write_end_ZNK5Pango9Rectangle10get_ascentEvbsearch_IO_save_basetm_wday_ZNK4Glib6RefPtrIKN5Pango6LayoutEEneERKS4_cond_timed_wait_ZN4Glib7ustring6insertEmPKc_ZN3Gdk5Color7set_hslEddd_S_initialize_oncenoteset_hsv_ZNK4Glib7ustring7compareEmmPKcn_sign_posn_ZNK9__gnu_cxx17__normal_iteratorIPcSsEplERKlGDK_HYPER_MASKSTRUCTURE_MASK_ZN4Glib7ustring6assignERKS0_mmgulong_ZNK4Glib6RefPtrIN3Gdk8DrawableEEcvbEv_ZN4Glib7ustring6assignEmc_ZN4Glib7ustring6assignEmj_ZNSs7_M_copyEPcPKcm_ZNK4Glib7ustring12find_last_ofERKS0_m_ZNSt8ios_base10floatfieldE_ZNSt6locale5_Impl19_M_remove_referenceEvSCALEGQuarkreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZN4Glib6RefPtrIN3Gdk2GCEE4swapERS3_ferrorungetcthousands_sepfreqs_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKccopyget_pixelstrerrorskipws_GSource_ZNSt6locale5_Impl13_S_id_numericE_ZNSt8ios_base10scientificEclosure_marshalgmtimepunctnew_allocatorEXPOSURE_MASKctime_ZN9__gnu_cxx17__normal_iteratorIPcSsEpLERKl_ZN4Glib19glibmm_null_pointerEthread_set_prioritywcslenwcsncmp_ZNK4Glib7ustring16find_last_not_ofEPKcmRefPtr__compar_fn_t_ZNKSs7compareEmmPKcmGDK_SETTINGtowctrans_ZNSs2atEm_ZNK4Glib7ustring13find_first_ofERKS0_m_ZNSt14numeric_limitsIfE10has_denormEchar_ZN4Glib7ustring7replaceEmmRKS0__S_refcountGDK_MOD4_MASKGDK_BUTTON_PRESSvswprintfsetlocaletv_usecnote_us_alt/home/floh/gtkguituneGdkDeviceAxislengthCairoSCALE_X_LARGE_M_set_leaked_M_clonecapacity_ZN7LogView10draw_arrowEvvsscanfGDK_MODE_SCREEN_ZNSspLEPKc_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEE4baseEv_ZNSt8ios_base9uppercaseEmbsrtowcs_S_beg_ZNSt10ctype_base5spaceE_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE_ZN4Glib7ustring4nposEfgets_ZN4Glib7ustring3endEvmutex_lock_ZN9__gnu_cxx13new_allocatorIcE7destroyEPc_M_cachesgraph_M_iend_ZN7LogView16invalidate_arrowEvbig_layout_S_empty_rep_storage_IO_backup_base_ZN7LogView12change_lfreqEdlocaltimewmemcpy_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEv_S_c_nameGDK_META_MASK_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2__S_id_timearea_ZNSt8ios_base3octE_S_binGDK_MOD3_MASKint_n_sep_by_spacevsnprintf_IO_markerGSourceCallbackFuncs_ZNSs6assignERKSsmmGDK_PROXIMITY_INlfreq0lfreq1checkfreopen_ZNK4Glib7ustring13find_first_ofEcmthisclock_ZNKSs7compareEmmRKSs_ZNK4Glib6RefPtrIN3Gdk6WindowEEeqERKS3__ZNSt14numeric_limitsImE6digitsE_ZNK4Glib7ustring16find_last_not_ofEcm_ZN4Glib6RefPtrIKN5Pango6LayoutEE4swapERS4_GNU C++ 4.1.2 (Ubuntu 4.1.2-0ubuntu4)_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2_lfreqswctrans_S_trunckeyval_ZNKSs7compareEPKc_S_ios_iostate_end_ZNSs6resizeEmc~new_allocator_ZNSt8ios_base7goodbitEvalidatewidth_S_default_patternGCond_ZNSt10ctype_base5alphaEinvalidate_arrowempty_ZN3Gdk9Rectangle9intersectERKS0_Rb_ZNSs6appendERKSsmmfeof_S_internal_cur_columni_col_drawvprintf_ZNK4Glib7ustring4rendEv_M_facets_sizesigcGDK_AXIS_XTILTreserveGTypeInstance_ZN4Glib7ustring6appendEPKcm_M_leak_ZNSs7_M_leakEvfp_offset_ZNK4Glib6RefPtrIKN3Gdk2GCEEcvbEvfloatfieldfclose_S_unitbuf_ZNK4Glib7ustring9lowercaseEvright_ZNKSs15_M_check_lengthEmmPKc_ZNK4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPKcSsEEEE_S_inGDK_CONTROL_MASKglobal__vtt_parmget_height_ZNSs6insertEmPKc_M_lengthunsigned charinsert_ZN3Gdk5Color4gobjEvspacembstate_t_Ios_SeekdirfinalizefsetpospCppObject_._203._205GDK_ENTER_NOTIFY._207__normal_iterator, std::allocator > >tm_yearinternalfgetposnothrow_t_ZN4Glib7ustring5clearEvgreen_ZNKSs13find_first_ofEPKcmrewindintersectDrawablepositive_sign_ZN9__gnu_cxx13new_allocatorIcE9constructEPcRKcdifftime_ZNSt6locale5_Impl13_S_id_collateE_M_replace_category_ZNSs5clearEv_ZN4Glib7ustring7replaceEmmRKS0_mmnote_us_ZN4Glib6RefPtrIKN3Gdk2GCEEaSERKS4__ZNKSsixEmalphaint_n_cs_precedes_IO_buf_basename_ZNK3Gdk5Color11get_green_pEv_ZNSs6appendEmcwcstofwcstol_ZNKSs16find_last_not_ofERKSsm_S_failbit__normal_iteratorpixel__normal_iterator, std::allocator > >tm_zone_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEEGDK_NO_EXPOSEsetbuf_GdkRegionGDK_MAPtypetime_t_Alloc_hider_ZNSt14numeric_limitsIeE10has_denormEGdkRectangle_ZN4Glib7ustringaSEPKc_ZNKSs17find_first_not_ofERKSsmcontext_ZNSt6locale9_S_globalEint_p_cs_precedes_GPrivate_ZNKSs2atEmmon_grouping_ZNKSs4rendEv_ZN4Glib7ustring7reserveEm_offset_chain_old_offset._181y_rootregionget_redget_rbearing_ZNK4Glib7ustring13find_first_ofEjmcond_newget_green_psize_M_namesget_descent_ZNKSs5rfindEcmflags_ZNKSs4_Rep12_M_is_leakedEvoperator[]rgb_find_colorp_cs_precedeswint_tmblendecimal_pointgpointerdispatch_S_id_numeric_S_ios_fmtflags_end_ZNK4Glib6RefPtrIN3Gdk6WindowEEneERKS3__M_p_ZNK4Glib7ustring7compareEPKc_M_is_shared_M_set_length_and_sharableis_asciiGDK_CONFIGURE_ZNKSs16find_last_not_ofEPKcmm_M_data_ZNK4Glib7ustring4copyEPcmm_ZNSs6appendEPKcmGDK_PROXIMITY_OUToverflow_arg_areapos_notedenorm_presentfflushGdkWindowoperator std::stringcallback_data_M_dispose_ZNSs7replaceEmmRKSsmmdigits_shortbuf_S_goodbitn_sep_by_space_ZNK4Glib7ustring20casefold_collate_keyEvthread_joinstrtok_ZNK3Gdk9Rectangle5get_xEvguint16GSourceDummyMarshal_ZNK4Glib6RefPtrIN5Pango6LayoutEEcvbEv_ZNK4Glib6RefPtrIN5Pango6LayoutEEneERKS3_vswscanfshowpointdoublePROXIMITY_IN_MASKreallocwcsncpy_S_initialize_ZN3Gdk9Rectangle4gobjEv_ZNKSs17find_first_not_ofEPKcmmguint32_ZNK4Glib7ustring17find_first_not_ofEcm_ZNSt8ios_base11adjustfieldEmbtowc_ZNSs4rendEvG_THREAD_PRIORITY_HIGHdraw_arrowfloat_denorm_styleRefPtrldiv_ZNK4Glib7ustring17find_first_not_ofEPKcmcond_waitmessagestdout_GdkEventExposeGdkRegion_ZNKSs4sizeEv_ZNSt10ctype_base5punctE_ZNSs6assignERKSs_ZNSs4_Rep8_M_cloneERKSaIcEm_ZNK4Glib7ustring5rfindEcm_GdkDrawable_ZN4Glib7ustring6insertEmRKS0_Markupperror_S_leftfind_first_not_of_ZNK4Glib7ustring4dataEv_ZNKSs13get_allocatorEv_ZNSt17moneypunct_bynameIwLb1EE4intlElocaleconvGDK_UNMAP_M_mutate_ZN7LogView21on_button_press_eventEP15_GdkEventButtoncollatebegin_S_construct_S_facet_categoriesp_sign_posn_ZN3Gdk9Rectangle8get_typeEv_ZNSt8ios_base6eofbitE_ZNSs4nposE_ZN4Glib6RefPtrIKN3Gdk2GCEE5clearEv_ZNK4Glib7ustring17find_first_not_ofEjmPangoRectangle__gnu_debug_defget_ascentlowercase_ZNSs4_Rep10_M_refcopyEv_PangoRectangle_S_uppercasegroupingmessagesaddresslconvbasic_string,std::allocator >Container_Helpersnpos_ZNSs14_M_replace_auxEmmmcnew_allocator_ZNK4Glib7ustring5rfindEjm_ZNSt10moneypunctIcLb1EE4intlE_ZNKSs6_M_repEvgobject_state_ZNK4Glib7ustring6rbeginEvglibmm_null_pointer_ZNKSs6rbeginEv_ZNSt14numeric_limitsIdE10has_denormEreplaceGThreadFunctions_M_refcount_ZNSs4_Rep9_S_createEmmRKSaIcENORMALIZE_NFCSCALE_SMALL_vtable_offset._17._18._19_S_atoms_ZN4Glib6RefPtrIKN5Pango6LayoutEE5clearEv_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4__M_implvwprintfclearerr_GTypeClass_ZNSt6locale5_Impl11_S_id_ctypeE_S_id_ctypexdigit_S_skipwsGDK_BUTTON2_MASKGDK_3BUTTON_PRESSGdkDeviceKeyallocator_ZNSs13_S_copy_charsEPcS_S__ZNK4Glib7ustring6lengthEvlong double_ZN4Glib7ustring6appendERKS0_mmwctob__va_list_tag_ZNKSs8capacityEv_ZNSt8ios_base2inE_ZNKSs4dataEvfacet_ZNK4Glib7ustringcvSsEvmoney_base_ZNSs4_Rep11_S_terminalEGDK_KEY_PRESSGDK_AXIS_Yeventwcsftime_ZNKSs8max_sizeEv_ZNSt8ios_base9basefieldE_ZNSt10ctype_base5digitE_ZNSs6insertEmRKSsmmG_THREAD_PRIORITY_LOWGDK_SOURCE_CURSOR_ZNK3Gdk5Color10get_blue_pEv_ZN7LogView8setScaleEi._95destroy_ZNSs5eraseEmm_ZNK4Glib7ustring5rfindEPKcm_ZNSt6locale5_Impl16_M_add_referenceEv_ZNK4Glib6RefPtrIN3Gdk8DrawableEEneERKS3_GSourceFuncs_ZNSt10money_base8_S_atomsE_ZNK5Pango9Rectangle5get_xEvshowpos_S_eofbitGDK_GRAB_BROKEN_M_capacity_ZNSt14numeric_limitsIeE13has_quiet_NaNEFILE_filenoclassic_ZNSt10moneypunctIwLb1EE4intlE_ZNK3Gdk5Color4gobjEv_ZNKSs3endEvtmpnam_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEjvfunc_table_GDK_MODE_WINDOWGDK_SELECTION_NOTIFYshowbaseustring_Iterator_ZNK4Glib7ustring9normalizeENS_13NormalizeModeE_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mc_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mjfseek_ZN3Gdk5Color3setERKN4Glib7ustringEptrdiff_tGDK_DRAG_LEAVEwmemmovebuttonset_grey_ZN4Glib7ustring6assignERKS0_wcrtombclearmutex_trylockfputwcguint_ZN4Glib6RefPtrIN3Gdk6WindowEE4swapERS3_numericset_x_ZNSsaSEPKc_ZNK3Gdk5Color7get_redEvset_y_Rep_base_ZNSspLEc_ZN4Glib6RefPtrIN3Gdk8DrawableEE4swapERS3_i_col_bg2_GSourceCallbackFuncs_M_replace_safe__state_ZNK4Glib7ustring4findEcm_ZN3Gdk9Rectangle10set_heightERKi_ZNSt10moneypunctIwLb0EE4intlEinvalidateNORMALIZE_NFKCNORMALIZE_NFKD_ZN5Pango9Rectangle9set_widthEiGTypeClassmax_size_ZNK3Gdk9Rectangle10get_heightEv_ZNK4Glib7ustring7compareERKS0_wcscollRefPtri_col_ticks_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKcm_ZNSs7_M_moveEPcPKcm_ZNK4Glib7ustring4findEPKcm__time_tglong_Impl_ZNSt10ctype_base5lowerE_ZN4Glib7ustringpLERKS0_private_newustringdata_ZNSs6resizeEm_ZN7LogView8pos_noteEi_ZN4Glib7ustring6insertEmRKS0_mm_flags2_flags_ZNK4Glib7ustring4findEPKcmm_ZN3Gdk5Color4swapERS0__S_atoms_out_ZNK4Glib7ustring4findEjmwmemchrmutex_freeGDK_SOURCE_MOUSEget_red_p_ZNKSs12find_last_ofEPKcmmlong long unsigned int_S_id_monetary_ZNKSs16find_last_not_ofEcm_GdkDevicenothrow_ZNSs4_Rep20_S_empty_rep_storageE_ZNK4Glib6RefPtrIKN3Gdk2GCEEneERKS4__ZNSt17moneypunct_bynameIwLb0EE4intlEreverse_iterator, std::allocator > > > >GDK_DROP_START_ZNKSs4copyEPcmmGDK_AXIS_YTILTbasefield_ZN4Glib7ustring6appendEmctm_mday_M_add_referenceRefPtrustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZNK3Gdk5Color9gobj_copyEvGMainContext_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2__ZNK4Glib7ustring5emptyEv_ZNKSs13find_first_ofEcm_Ios_Openmode_ZNSs6appendEPKc_S_curGDK_SOURCE_ERASER_ZNKSs4_Rep12_M_is_sharedEvgint8vscanfreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >gobj_ZN5Pango9Rectangle5set_xEi_ZNSt6locale8monetaryEdomain_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_inegative_signshort int_ZNSs12_S_constructEmcRKSaIcEwctype._204_ZNK4Glib7ustring12find_last_ofEPKcmm_ZN4Glib7ustring7replaceEmmPKcfind_last_not_of_S_copy_charssource_idrbeginstrftimemon_thousands_sep_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalEwcscatlogview.ccnote_ger_ZNSt6locale7classicEv_ZNSt6locale8messagesE_ZNK3Gdk9Rectangle9get_widthEv_ZN3Gdk5Color8set_blueEt_ZNSt8ios_base7showposELogView_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1__ZNK9__gnu_cxx13new_allocatorIcE8max_sizeEv_ZNK9__gnu_cxx17__normal_iteratorIPcSsEptEv_ZNSt6locale21_S_normalize_categoryEi_ZNSt6locale7collateEGDK_SELECTION_CLEAR_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_RKS0_scientificsetvbufGSourceFunc_S_global_ZN4Glib7ustring5eraseEv_ZN4Glib7ustring9push_backEc_ZN4Glib7ustring9push_backEjfreq_ZNSs6insertEmmcgobj_copyGDK_DRAG_ENTERGDK_DRAG_MOTION_ZNK4Glib7ustring5rfindERKS0_mNORMALIZE_ALLassignPROXIMITY_OUT_MASK_ZN3Gdk9Rectangle5set_yERKi_GdkDeviceAxisputcGDK_BUTTON4_MASK_ZNK4Glib7ustring8is_asciiEvprivate_get_S_adjustfieldfindwcschrGDK_LOCK_MASK_ZNK4Glib7ustringixEmstring__IO_FILEchange_lfreq_ZNK4Glib7ustring16find_last_not_ofERKS0_mheightwcsrchrdenorm_indeterminate_ZNK4Glib7ustring5c_strEvset_redpattern_ZNSt8ios_base7failbitEsend_event_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5_GliblldivscaleGPrivate_ZN4Glib7ustring6assignEPKcmGDK_OWNER_CHANGEstrtollgushort_ZNK4Glib6RefPtrIKN3Gdk2GCEEeqERKS4__ZNSt6locale4noneEswscanfwcscspnlfreq_posset_rgbi_col_marksGDK_BUTTON5_MASK_ZN4Glib7ustring5beginEvwcscmp_ZN3Gdk5Color7set_rgbEttt_ZN4Glib6RefPtrIN5Pango6LayoutEEaSERKS3__GdkDeviceKey_ZN7LogView7draw_itEv_S_max_size_lockdraw_it_ZNSs12_S_empty_repEvsource_ZN4Glib7ustringpLEcvfwscanf_ZN4Glib7ustringpLEj_ZNKSt6localeneERKS_~ustring_ZNK3Gdk9Rectangle13has_zero_areaEv_ZNSs5beginEv_ZNSs13_S_copy_charsEPcPKcS1__S_normalize_category_ZNSs6rbeginEvwcstoldSCALE_LARGEwcstollwcsxfrmtimeleftprevwcscpy_S_showbase_M_assign_ZNSs6assignEmcGDK_MODE_DISABLED_ZNK4Glib7ustring2atEmrename_GTypeInstanceGDK_SELECTION_REQUEST_ZNK4Glib7ustring4sizeEv~allocatorGDK_MOD5_MASK_ZNKSs8_M_checkEmPKcGDK_AXIS_WHEELqdata_ZNKSs12find_last_ofEPKcmWindow_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEi_S_fixed_GData_ZN4Glib7ustring6resizeEmcsigned charmbstowcsSUBSTRUCTURE_MASKGDK_DRAG_STATUSG_THREAD_PRIORITY_URGENTwcspbrk_ZNK4Glib6RefPtrIN3Gdk2GCEEptEv_M_refdatatm_gmtoffPROPERTY_CHANGE_MASK_sbuf_ZNSs4_Rep11_S_max_sizeEextents_ZN4Glib7ustringaSERKS0_strtoullfwprintflong intjoinNORMALIZE_NFD_ZN4Glib6RefPtrIN5Pango6LayoutEE4swapERS3__ZNK4Glib6RefPtrIN3Gdk8ColormapEEneERKS3_Colormap_ZNKSs7_M_dataEvoperator|_ZNK4Glib7ustring13find_first_ofEPKcmmtemp_ZNSs4_Rep13_M_set_leakedEv_ZN3Gdk5Color7set_hsvEdddgcharPOINTER_MOTION_MASK_ZNK4Glib7ustring12find_last_ofEPKcmwctrans_tg_utf8_skipget_xget_y_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiERKl_ZNK3Gdk5Color9get_pixelEv_ZN3Gdk9Rectangle4joinERKS0__Atomic_wordcasefold_collate_keyGdkDeviceallocator_ZNK9__gnu_cxx17__normal_iteratorIPcSsEixERKlGDK_2BUTTON_PRESSGDK_LEAVE_NOTIFYwprintf_ZN3Gdk9Rectangle9intersectERKS0__ZNSs9_M_mutateEmmmthread_yieldfloat_ZNK4Glib7ustring8casefoldEvnum_keys_M_repmbrlen_ZNK4Glib7ustring17find_first_not_ofERKS0_m_ZNSs9push_backEcupperGThreadFunc_Repputchar_Ios_Fmtflags_M_replace_auxrandresize_ZNSt6locale2idaSERKS0_GDK_DROP_FINISHEDColor_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKc_next_ZNSt14numeric_limitsIfE12has_infinityEEventMask_ZNKSs17find_first_not_ofEcm_ZNK9__gnu_cxx13new_allocatorIcE7addressERcset_heightmode_ZNK3Gdk5Color9get_red_pEvSCALE_MEDIUM_ZNSt8ios_base4leftEgunichar_ZNSt8ios_base3outEhas_zero_area~LogView_ZNSsaSERKSsRefPtr_ZN3Gdk5Color9set_greenEt_ZNK3Gdk9Rectangle5get_yEvg_class_M_coalesce_ZNK4Glib7ustring17find_first_not_ofEPKcmm_ZNK4Glib7ustring3endEvGMutexGDK_RELEASE_MASKustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >c_strdenorm_absentsmall_layout_ZNK4Glib7ustring8validateEvbadbit_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4___countwin___value_ZN4Glib6RefPtrIN3Gdk8DrawableEEaSERKS3__M_replace_categories_ZNSt6locale7numericEfgetwc_ZNSs6assignEPKcm_ZNSt10money_base20_S_construct_patternEcccfgetwsmodifiersGDK_DELETEint_p_sign_posn_ZNKSt6localeeqERKS_set_nat_tuning_ZN4Glib7ustring5eraseEmmtm_sec_GdkColorGdkEventExposealnum_ZNK4Glib6RefPtrIN5Pango6LayoutEEptEv_ZNSt8ios_base5rightEparent_instance_ZNK5Pango9Rectangle5get_yEv_ZN3Gdk9Rectangle5set_xERKi_S_ios_seekdir_enddeallocatepthread_once_tBUTTON_RELEASE_MASK_ZNK4Glib6RefPtrIN5Pango6LayoutEEeqERKS3_strcollGDK_BUTTON3_MASK_ZNKSt6locale2id5_M_idEv_ZNSs4_Rep12_S_empty_repEvmon_decimal_point_ZN9__gnu_cxx17__normal_iteratorIPcSsEmIERKl_ZNKSs17find_first_not_ofEPKcm__off64_tunitbuf_ZNK4Glib6RefPtrIN3Gdk8ColormapEEptEvGDK_FOCUS_CHANGE_ZNSt8ios_base8internalEwscanfENTER_NOTIFY_MASK_ZNSs7replaceEmmRKSs_S_showpoint_IO_lock_ti_col_bg_ZN4Glib7ustring6assignEPKcGDK_WINDOW_STATEGDK_MODIFIER_MASK_ZN4Glib7ustring6resizeEmjstringlong long intRefPtr_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs_ZNSs9_M_assignEPcmcgoodbit_ZNKSs12find_last_ofEcm_S_dec_ZNK4Glib6RefPtrIN3Gdk8ColormapEEeqERKS3_GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4).symtab.strtab.shstrtab.rela.text.rela.data.bss.debug_abbrev.rela.debug_info.rela.debug_line.rodata.cst8.rela.text._ZTv0_n32_N7LogViewD0Ev.rela.text._ZThn16_N7LogViewD0Ev.gcc_except_table.rela.text._ZTv0_n32_N7LogViewD1Ev.rela.text._ZThn16_N7LogViewD1Ev.rodata.str1.1.rela.rodata._ZTV7LogView.rela.rodata._ZTT7LogView.rela.rodata._ZTC7LogView0_N3Gtk11DrawingAreaE.rela.rodata._ZTC7LogView0_N3Gtk6WidgetE.rela.rodata._ZTC7LogView0_N3Gtk6ObjectE.rela.rodata._ZTC7LogView0_N4Glib6ObjectE.rela.rodata._ZTC7LogView16_N3Atk11ImplementorE.rela.rodata._ZTC7LogView16_N4Glib9InterfaceE.rela.rodata._ZTC7LogView328_N4Glib10ObjectBaseE.rodata._ZTS7LogView.rela.rodata._ZTI7LogView.rela.debug_frame.rela.eh_frame.debug_loc.rela.debug_pubnames.rela.debug_aranges.debug_ranges.debug_str.comment.note.GNU-stack.group@@@7@H@8@P@B@X@C@`(@;@@@@~ A,P"@+-8 & @ 18/68/:Ir7D@ZTU@fXHx s@ @ @ @ 2! ( @; 6H@U@ P @!   @# 8 @% X@'` H@)0 +P@+^p Y@@-0 @H@0X0@20p@4@700@9@ 0 1j'<*0ffG0hA3 6   !#%')+-/024679;<> ! '(-0389@=?GVrPZ" " ! !1Jah" " @?3Oqlp@ PmJmtX `  ` `` ` 3L^u%0 5rO$p~:p  $+/[+Q'Z!0g ' F y    - k     ; g    3 c    A z   ?}=y+^U>v%Fg-R!!t!#!%!'!)!+ !-p1Ib{  3Le 0D`|2Si!/ logview.cc.LC0.LC1.LC2.LC13.LC17.LC18.LC20.LC22.LC24_ZN7LogView8pos_noteEi_ZNK3Gtk6Widget9get_widthEv__gxx_personality_v0_ZN7LogView9lfreq_posEd_ZTv0_n32_N7LogViewD0Ev_ZThn16_N7LogViewD0Ev_Unwind_Resume_ZN7LogViewD0Ev_ZTV7LogView_ZN3Gdk5ColorD1Ev_ZTT7LogView_ZN3Gtk11DrawingAreaD2Ev_ZN4Glib10ObjectBaseD2Ev_ZN4sigc9trackableD2Ev_ZdlPv_ZTv0_n32_N7LogViewD1Ev_ZThn16_N7LogViewD1Ev_ZN7LogViewD1Ev_ZN7LogViewD2Ev_ZN7LogView16invalidate_arrowEv_ZNK3Gtk6Widget11is_realizedEv_ZNK3Gtk6Widget14get_allocationEv_ZN3Gdk9Rectangle5set_xERKi_ZN3Gdk9Rectangle5set_yERKi_ZN3Gdk9Rectangle10set_heightERKi_ZN3Gtk6Widget10get_windowEv_ZN3Gdk6Window15invalidate_rectERKNS_9RectangleEb_ZN7LogView12change_lfreqEd_ZN7LogView10invalidateEv_ZN7LogView14set_nat_tuningEb_ZN7LogView21on_button_press_eventEP15_GdkEventButton_ZNK3Gtk6Widget11get_pointerERiS1_printf_ZN3Gtk6Widget21on_button_press_eventEP15_GdkEventButton_ZN7LogView8setScaleEinote_us_altnotenote_gernote_usnote_ger_alt_ZN7LogViewC1Ev_ZN4sigc9trackableC2Ev_ZN4Glib10ObjectBaseC2Ev_ZN3Gtk11DrawingAreaC2Ev_ZN3Gdk5ColorC1Ev_ZN4Glib7ustringC1EPKc_ZN3Gdk5Color3setERKN4Glib7ustringE_ZN4Glib7ustringD1Ev_ZN3Gtk6Widget12get_colormapEv_ZN3Gdk8Colormap11alloc_colorERNS_5ColorEbb_ZN3Gtk6Widget10set_eventsEN3Gdk9EventMaskE_ZN7LogViewC2Ev_ZN7LogView10draw_arrowEv_ZN3Gdk2GC6createERKN4Glib6RefPtrINS_8DrawableEEE_ZN3Gdk2GC14set_foregroundERKNS_5ColorE_ZN3Gdk8Drawable14draw_rectangleERKN4Glib6RefPtrIKNS_2GCEEEbiiii_ZN3Gdk8Drawable9draw_lineERKN4Glib6RefPtrIKNS_2GCEEEiiii_ZN7LogView7draw_itEv_ZN3Gtk6Widget19create_pango_layoutERKN4Glib7ustringE_ZN5Pango15FontDescriptionC1ERKN4Glib7ustringE_ZN5Pango6Layout20set_font_descriptionERKNS_15FontDescriptionE_ZN5Pango15FontDescriptionD1EvKAMMERTON_LOGpowKAMMERTONtuning_natsscanflog_ZN5Pango6Layout8set_textERKN4Glib7ustringE_ZNK5Pango6Layout25get_pixel_logical_extentsEv_ZN3Gdk8Drawable11draw_layoutERKN4Glib6RefPtrIKNS_2GCEEEiiRKNS2_IKN5Pango6LayoutEEEsprintf__stack_chk_fail_ZN7LogView15on_expose_eventEP15_GdkEventExpose_ZN3Gtk6Widget15on_expose_eventEP15_GdkEventExpose_ZTI7LogView_ZN3Gtk6Object10set_manageEv_ZN3Gtk6Object15destroy_notify_Ev_ZN3Gtk6Widget7on_showEv_ZN3Gtk6Widget7on_hideEv_ZN3Gtk6Widget6on_mapEv_ZN3Gtk6Widget8on_unmapEv_ZN3Gtk6Widget10on_realizeEv_ZN3Gtk6Widget12on_unrealizeEv_ZN3Gtk6Widget15on_size_requestEP15_GtkRequisition_ZN3Gtk6Widget16on_size_allocateERN3Gdk9RectangleE_ZN3Gtk6Widget16on_state_changedENS_9StateTypeE_ZN3Gtk6Widget17on_parent_changedEPS0__ZN3Gtk6Widget20on_hierarchy_changedEPS0__ZN3Gtk6Widget16on_style_changedERKN4Glib6RefPtrINS_5StyleEEE_ZN3Gtk6Widget20on_direction_changedENS_13TextDirectionE_ZN3Gtk6Widget14on_grab_notifyEb_ZN3Gtk6Widget15on_child_notifyEP11_GParamSpec_ZN3Gtk6Widget20on_mnemonic_activateEb_ZN3Gtk6Widget13on_grab_focusEv_ZN3Gtk6Widget8on_focusENS_13DirectionTypeE_ZN3Gtk6Widget8on_eventEP9_GdkEvent_ZN3Gtk6Widget23on_button_release_eventEP15_GdkEventButton_ZN3Gtk6Widget15on_scroll_eventEP15_GdkEventScroll_ZN3Gtk6Widget22on_motion_notify_eventEP15_GdkEventMotion_ZN3Gtk6Widget15on_delete_eventEP12_GdkEventAny_ZN3Gtk6Widget18on_key_press_eventEP12_GdkEventKey_ZN3Gtk6Widget20on_key_release_eventEP12_GdkEventKey_ZN3Gtk6Widget21on_enter_notify_eventEP17_GdkEventCrossing_ZN3Gtk6Widget21on_leave_notify_eventEP17_GdkEventCrossing_ZN3Gtk6Widget18on_configure_eventEP18_GdkEventConfigure_ZN3Gtk6Widget17on_focus_in_eventEP14_GdkEventFocus_ZN3Gtk6Widget18on_focus_out_eventEP14_GdkEventFocus_ZN3Gtk6Widget12on_map_eventEP12_GdkEventAny_ZN3Gtk6Widget14on_unmap_eventEP12_GdkEventAny_ZN3Gtk6Widget24on_property_notify_eventEP17_GdkEventProperty_ZN3Gtk6Widget24on_selection_clear_eventEP18_GdkEventSelection_ZN3Gtk6Widget26on_selection_request_eventEP18_GdkEventSelection_ZN3Gtk6Widget25on_selection_notify_eventEP18_GdkEventSelection_ZN3Gtk6Widget21on_proximity_in_eventEP18_GdkEventProximity_ZN3Gtk6Widget22on_proximity_out_eventEP18_GdkEventProximity_ZN3Gtk6Widget26on_visibility_notify_eventEP19_GdkEventVisibility_ZN3Gtk6Widget15on_client_eventEP15_GdkEventClient_ZN3Gtk6Widget18on_no_expose_eventEP12_GdkEventAny_ZN3Gtk6Widget21on_window_state_eventEP20_GdkEventWindowState_ZN3Gtk6Widget16on_selection_getERNS_13SelectionDataEjj_ZN3Gtk6Widget21on_selection_receivedERKNS_13SelectionDataEj_ZN3Gtk6Widget13on_drag_beginERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk6Widget11on_drag_endERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk6Widget16on_drag_data_getERKN4Glib6RefPtrIN3Gdk11DragContextEEERNS_13SelectionDataEjj_ZN3Gtk6Widget19on_drag_data_deleteERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk6Widget13on_drag_leaveERKN4Glib6RefPtrIN3Gdk11DragContextEEEj_ZN3Gtk6Widget14on_drag_motionERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZN3Gtk6Widget12on_drag_dropERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZN3Gtk6Widget21on_drag_data_receivedERKN4Glib6RefPtrIN3Gdk11DragContextEEEiiRKNS_13SelectionDataEjj_ZN3Gtk6Widget17on_get_accessibleEv_ZN3Gtk6Widget17on_screen_changedERKN4Glib6RefPtrIN3Gdk6ScreenEEE_ZN3Gtk6Widget39dispatch_child_properties_changed_vfuncEjPP11_GParamSpec_ZN3Gtk6Widget14show_all_vfuncEv_ZN3Gtk6Widget14hide_all_vfuncEv_ZN3Gtk6Widget20get_accessible_vfuncEv_ZN3Atk11Implementor21ref_accessibile_vfuncEv_ZNK4Glib10ObjectBase9referenceEv_ZNK4Glib10ObjectBase11unreferenceEv_ZTv0_n56_N3Gtk6Object15destroy_notify_Ev_ZTv0_n64_N3Gtk6Object10set_manageEv_ZTC7LogView0_N3Gtk11DrawingAreaE_ZTC7LogView0_N3Gtk6WidgetE_ZTC7LogView0_N3Gtk6ObjectE_ZTC7LogView0_N4Glib6ObjectE_ZTC7LogView16_N3Atk11ImplementorE_ZTC7LogView16_N4Glib9InterfaceE_ZTC7LogView328_N4Glib10ObjectBaseE_ZTIN3Gtk11DrawingAreaE_ZN3Gtk11DrawingAreaD1Ev_ZN3Gtk11DrawingAreaD0Ev_ZThn16_N3Gtk11DrawingAreaD1Ev_ZThn16_N3Gtk11DrawingAreaD0Ev_ZTv0_n32_N3Gtk11DrawingAreaD1Ev_ZTv0_n32_N3Gtk11DrawingAreaD0Ev_ZTIN3Gtk6WidgetE_ZN3Gtk6WidgetD1Ev_ZN3Gtk6WidgetD0Ev_ZThn16_N3Gtk6WidgetD1Ev_ZThn16_N3Gtk6WidgetD0Ev_ZTv0_n32_N3Gtk6WidgetD1Ev_ZTv0_n32_N3Gtk6WidgetD0Ev_ZTIN3Gtk6ObjectE_ZN3Gtk6ObjectD1Ev_ZN3Gtk6ObjectD0Ev_ZTv0_n32_N3Gtk6ObjectD1Ev_ZTv0_n32_N3Gtk6ObjectD0Ev_ZTIN4Glib6ObjectE_ZN4Glib6ObjectD1Ev_ZN4Glib6ObjectD0Ev_ZTv0_n32_N4Glib6ObjectD1Ev_ZTv0_n32_N4Glib6ObjectD0Ev_ZN4Glib10ObjectBase15destroy_notify_Ev_ZN4Glib10ObjectBase10set_manageEv_ZTIN3Atk11ImplementorE_ZN3Atk11ImplementorD1Ev_ZN3Atk11ImplementorD0Ev_ZTv0_n32_N3Atk11ImplementorD1Ev_ZTv0_n32_N3Atk11ImplementorD0Ev_ZTIN4Glib9InterfaceE_ZN4Glib9InterfaceD1Ev_ZN4Glib9InterfaceD0Ev_ZTv0_n32_N4Glib9InterfaceD1Ev_ZTv0_n32_N4Glib9InterfaceD0Ev_ZTIN4Glib10ObjectBaseE__cxa_pure_virtual_ZTS7LogView_ZTVN10__cxxabiv120__si_class_type_infoE 4i4"# ; ; ;@<<<<'<3<?<D =L>X =]?i@<<<<<<< => =?@9S ; ^ ;f ;@<<<<<<< => =?<<&<2<><J<V<[ =c>o =t?@9<'<3<?<K<W<c<o><<<<<<<>9G9HaIxJKLM9$K$zGHIJLM39hRu |S3 SOTW VW XW Y W ZD\P =]]b =j^y ;  ; ;@_______$ V WZ Y_ `l at b c d " ` a b c d (& `1 a9 bI cc d - ` a b c d 3 ` a b c1 dS 8[ `f an b~ c d e @ 9$ <, <4 << <F <P <Z <_ =g >q =v ? bT ^ _ _ _ _ _ _ _ DWH YM`Zabbocd "`abcd  (`a$b4cNdp -x`abcd 3`abcd> 8F`QaYbicde>9<<<'<1<;<E<Vb LUhi47j^%l6i4 j9i~k4 9s <`mb =`n opb& <.`CmXbe Gm`nopbL hLq&'rs$(1q\ tg Pnuv'i)( q6kkY Va`nwvbxi6Mki#yoiy>iX6k t`-w:bDx6imyi; y i 4 k!4r!k!6"k"k"W"`"w"b"x2#i#y#ib$y$ Z$*$z%`%w#%b-%xo%i&y]&i&y'{'b(9(b(9(b)p)b*b*p*b+b,}!,l),gwA@hFEOOOOO_ace g(j0l8o@qHsPvXx`_h{paxegjloqsvx_ace~joqv _(0a8e@~HjPXo`qhpvx (0  A, 3% [U) 3/. 9 > @ )7G ?N U ]\ \Tc d!u ^| % Zh > N . I X YO  < O! ! !0 u)? 9N }] )l Y1{ Y   ; I QO ; M5 vE > F[ ;% 5 E U e u  " i < & 8 e e # LG GO 1] 5k >y   h 2 b |^  C  da ? Kj *8p `z @  C : H= : XS +  a  j ]  A5 A P% , $3 q\: hA H ^FO 16W C_ Xf m $t = R  a Y2 6  ?4   >  DI 9 b4 c7 >0 S p Dg? jGE sYN ` _ ;e Pk RPq   YC g a > , 4 E< ] Ee  E  li  : P bg '. ~$ < T l ) O @ < ]> J Q@l % b ? I W  , 5 M z 8  & >  FD 7 : Y  % ,ZG ^i ^ Y  F   F *6 <5 ,7 ;>N cf "8 0 t  2 |K1 y7Y  q  y  A fX a r  \) n8= :V DWy  I , d5  &% QSB 2i / C < , C I   g U ; 8 NT $, : <H V d >r B v* ;  t9 n2 Kf l  / .B f+ "9 G QU %c 8q )   c  ]^ }: C 3 8 G [\+ M -p Y- 1 U Y7  e /f' LD a ~ ^     a >/ wR 40y m    [ tZ   . [P /w ? F  K TU Z- MI j\e |Z G - ' - ?" O k ! 9 ! 9  S\1 GI !k 1 K  a h X *^; 4YW s O 7\ K\ Q  f- f-7 4Q CW cr Cx f  ) F Wg )  M 2V J 8 qH 0k F F ]  ` &D B  L a" =) H_@ =G c aj D  3" 1 5 5  ] ! `6(! ~/! $P! $W! ys! z! R+! ! yN! }\! i! T! 1! T" ?e"" T)" FE" TL" [h" CBo" Ca" " " " T[" "" "" "# "(# "P# "s# "# "# # s# c# s# VL$ s$ 5$ B<$ [R$ BY$ v$ o$ I$ T$ (\$ T$ D$ N$ X@% N% ;% ]<$% A:% W/A% W% M^% Gt% b{% u4% b% O% /% G% 5% % K% 9 & 4& && <-& c9H& <O& p& ;& a.& '& & '& /& '& L' N' 84' N;' (5`' Ng' =' N' S' N' 9' ' a' !X' 9A( !X( 2;( !XB( eb( !Xi( '( !X( \( 77( ( 77( i&( 77) G+) 772) oW) 77^) 7~) 77) W) 77) j) ) yH) ) :* !* RA* EH* hm* Et* z>* E* !* E* /+ E+ * 1+ E8+ i]+ Ed+ "+ E+ ,+ E+ K+ E+ U, E#, EM, ET, 3~, E, Y, b, +D, L, - B- fT9- ,@- uQe- l- #- d- y- O- >G- - A- X- /. X . 7-. X4. O T. X[. {. . d. . h. . . . w</ #/ C/ J/ o/ v/ S8/ / R/ / / / O0 0 H]70 >0 i^0 Ae0 B;0 A0 ?0 A0 ;h0 A0 b0 T1 9&1 T-1 =R1 TY1 X y1 T1 +P1 1 1  1 1  1 32  2 K2  R2 O4m2  t2 $2  2 5.2 7 3 ^I3 1E<3 :[B3 ^M3  S3 uG^3 D1d3 ZPp3 v3 g3 %3 <3 k=3 /S3 r/3 _3 3 3 x=3 % 4 R^4 &4 ,4 L4 S4 =Er4 o>x4 y4 i 4 /4 $4 ~C4 /4 KA5 &5 aZ!5 '5 35 HL95 eE5 BK5 VW5 [\]5 "i5 o5 S{5 C5 U5 5 N5 F5 5 85 XW5 j;5 5 5 5 $6 LG 6 16 t )6 =6 V6 o6 6 6 6 s6 6 ei6 97 .7 E7 [f87 (">7 [Y7 6`7 q7 Ix7 oU7 7 ?7 !7 6*7 7 \7 V7 d7 S 88 H8 .O8 K`8 sg8 $b8 !8 g8 1E8 9 59 1&9 b<69 KF=9 *FI9 <P9 -\9 %c9 8o9 52v9 A9 P9 9 9 9 B9 9 Q9 H9 ,9 +9 N: N4: NO: k: N: s: : J: %: e: T: 8: ^0 ; ; /; 6; O; V; ; ; `; s; W.< 74'< TF< 4M<  X< E_< Ik< &r< f< < 9< 9< I< (= t(= ^V= &$= b:= &A= \= 5(c= y= 5(= i= <= `= '= -= S= *> i(> h#> ]*> &`A> UH> ]> KS> ?> @> > _> N> !> > 4Z> *> L?  ? <? ?>? "N? &W? "f? /? +? f ? R? T? $%? @? a? lH? H@ h@ e@ @ ^@ \d@ 4*@ < 0@ Y;@ ;A@ EP@ X@ f@ 0t@ L@ @ O@ H<@ @ "@ @@ )@ @ NA XA A '*A Wa8A >GA VA -eA = tA B B ]B  C  C OC ?#.C R9C ?C pNC -VC a>dC rC NC C b;C C <C TC !C e\C ?#C (C  D 2D L2D JOD H^D )fD |tD 2D <D p7D 2'D I-D LWE ?tE cE $E ME FE E 5E \E dE E E  F F B]-F Y8F @F | FF ^LF RF \EXF X^F mMdF 'jF ^MqF NwF Q}F tdF DF AF !F MF F @F QF cF ziF ;F DF -F &DF 0F XG NG [4G NMG sTG ^oG vG {G NG NG NG NH N#H NBH sIH edH skH +;H sH (H sH 'H !XH KH !XH *I !XI Y?I !XFI iaI !XhI 7+I !XI +I 'I NI 'I I 'I [J 'J q[7J >J WUJ \J {WsJ NzJ J NJ FJ NJ 5J NJ  K NK 4 1K N8K QXK 77_K AK 77K 0OK 77K PK 77K )L 77 L /L 776L v [L 77bL IL 77L L 77L #L 77L D#L EM .%M E,M 9[M EbM RM EM TM EM M EM N E!N VFN EMN NwN E~N TbN EN KN EN JO K O 48O %O fEO LO bWbO iO $O O O  O MO  O M=O  O P  "P QP  XP P  P V*P P dP `P >P <P XQ \+Q 2Q TRQ BYQ ZvQ 0Q BQ Q DdQ TQ Q NQ /R TR DR N$R l5:R XAR aR XhR `OR XR NR XR OR XR LS  S W)S 0S IUS \S H|S S ZDS S hAS S l.S S c_T $T DT KT $<kT rT 2T T g+T T TT T _ U U X$3U :U !ZU AaU aU AU dU AU @U AU "CU AV @"V T)V YIV TPV uV T|V -V TV V TV z3V 4V RW ]<W \$W W/+W FAW ()HW ^W beW JiW bW ]W /W W MW RW 5W ;W L>X RG X 6X O=X ASX dZX QYpX ,wX =X 4X eX 4X X 4X ~6X =Y |XY !Y J3_ ;;_ A_ XG_ 6M_ s S_ Y_ `2__ .f_ ]m_ ht_ hF{_ g_ kX_ Z_ _ *_ 1_ cd_ 8i_ F_ [_ H4_ 6f` I/` WXJ` `Y` GPa` fo` 9}` j[` =c` ?` C ` % ` a` ` 7` O` &` S` &H a Ta \a /a UJ(a 70a 6a ne PLe (gf `f c-f {L3f ;XJf Pf Uff lf f 7f Mf 2cf Mf Df "g g Nb1g NbJg sPg okg "g g }Og Sg >7g Sg Ig Wg gRg Nb h Nb#h K)h |&@h Fh F]h Zch Zh " h Sh N*h _h h *h Ki & i ;i <Ai bLWi ]i si yi i kYi i i ci i Ui <i j , j T`j O%j Bc;j Q<Aj 9Sj (Yj 8Hj j Uj k ((k 27k 2Fk Uk ,dk 04tk ik Y5k @k Lk k Nk Zk k Ul U=l cbl Zhl l #>l Ol Xl i1l {$l UHl pfl l SMm !m 4m 1.m Z5m Ym A`m MBm |@m /m L[m $[m 7m .m m .n ..n 4n a,Kn sQn 2ln Esn n ("n P%n t(n 2^n n n Kn )o 7=o .Qo ko .o .o o o so @(o Eo jo ("p _p t(%p lh;p Bp Tp K[p C'p 7p .p p .p .q q Lq s$q )%?q EFq 13aq ("hq =q t(q q q q Kq q 7r .r 3r .Lr .er kr Lr sr er Er (r ("r Hr t(r s  s * s K's w5s Qys 7s .s s .s .s s = t st ?9+t E2t {lJ{ 3S{ KX{ Wb{ ng{ z{ I*{p{7{ { 3{ +{ { {{{{7|@|I#| 3,| t1| D<| J|PR|Z| _| 3h| w| P||| 3| | Y| | 3| 3 } 3} t%O} 3Y} t%c} 6{} }/ } >} } } } 8} } } } }g }| ~ ~ ~5 &~J 5~ =~ L~ T~ c~ k~ ~0 ~~ r~ # ~ l ~~~  ~~~~R g"1 95HP_gv~  3 3 _ 3 3* t%? 3i 3s t%b  3  n  ̀  ڀ  0J^$F^Nsgso  ȁ  0 ;U/ `D Zb)|  Ă̂ۂ  )1$D$LBaRib 3 3 t%΃ 3؃ t%p+ @  3   )( L5 $B P d p t 0  91 ē P҄ eT9A,Z,b?v "?TTiiЅ؅   : O Pem#  ^  ˆQӆn @( ? T'\DuD}as ҇     )+ P@ V^w  ʈ  ߈q"*J P` w? \ \  Љ  ! 0 p7v!?!U Z ^s  `"4"Ê ي ""6#X#;X#C}#]X#e`#####Ƌ$΋"$"$G$"$*$3f$;$V$^$ys%%  0 Ό ` &2&2&O&+a&3&S  i  &&&'7'ƍT'֍T'ލq'q'''''&'6'>"(R"(Z2(t  G(g(g((Ȏ(Ў((( )))*))2D)LD)Td)md)uz)z))))Џ)؏))))*8*@,*[,*cE*~E*^*^*~*Đ~*̐**+ ++-+5F+OF+Wf+pf+x++++++A, k 3  G ) 7 @E (S a `o }   fU 79 Ò '/ђ I*ߒ   @ ( + `D R ` XYZVēWt^ Dd -t RPz  > Y3 W b U v ” dɔ .֔ Wݔ `" U x d D W & U - jI: dA :N &DU Ba :[g ^r  x uG D1 ZP &D Z :[   !Uȕ Ε ڕ HL e B V [\ "  S" C( U4 ; \ 1c t t KF{ *F < - % 8 52 A Pǖ Ӗ ږ  B  Z  ' '!. B O 8V hc `\j jc~ E2 Z6 f 9W -- zJ ɗ ?З F"ޗ &5 gcc (GCC) 4.1.2 (Ubuntu 4.1.2-0ubuntu4) Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:2588: $? = 0 configure:2595: gcc -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu --enable-libstdcxx-debug --enable-mpfr --enable-checking=release x86_64-linux-gnu Thread model: posix gcc version 4.1.2 (Ubuntu 4.1.2-0ubuntu4) configure:2598: $? = 0 configure:2605: gcc -V >&5 gcc: '-V' option must have argument configure:2608: $? = 1 configure:2631: checking for C compiler default output file name configure:2658: gcc conftest.c >&5 configure:2661: $? = 0 configure:2699: result: a.out configure:2716: checking whether the C compiler works configure:2726: ./a.out configure:2729: $? = 0 configure:2746: result: yes configure:2753: checking whether we are cross compiling configure:2755: result: no configure:2758: checking for suffix of executables configure:2765: gcc -o conftest conftest.c >&5 configure:2768: $? = 0 configure:2792: result: configure:2798: checking for suffix of object files configure:2824: gcc -c conftest.c >&5 configure:2827: $? = 0 configure:2850: result: o configure:2854: checking whether we are using the GNU C compiler configure:2883: gcc -c conftest.c >&5 configure:2889: $? = 0 configure:2906: result: yes configure:2911: checking whether gcc accepts -g configure:2941: gcc -c -g conftest.c >&5 configure:2947: $? = 0 configure:3046: result: yes configure:3063: checking for gcc option to accept ISO C89 configure:3137: gcc -c -g -O2 conftest.c >&5 configure:3143: $? = 0 configure:3166: result: none needed configure:3195: checking for style of include used by make configure:3223: result: GNU configure:3248: checking dependency style of gcc configure:3339: result: gcc3 configure:3412: checking for g++ configure:3428: found /usr/bin/g++ configure:3439: result: g++ configure:3470: checking for C++ compiler version configure:3477: g++ --version >&5 g++ (GCC) 4.1.2 (Ubuntu 4.1.2-0ubuntu4) Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3480: $? = 0 configure:3487: g++ -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu --enable-libstdcxx-debug --enable-mpfr --enable-checking=release x86_64-linux-gnu Thread model: posix gcc version 4.1.2 (Ubuntu 4.1.2-0ubuntu4) configure:3490: $? = 0 configure:3497: g++ -V >&5 g++: '-V' option must have argument configure:3500: $? = 1 configure:3503: checking whether we are using the GNU C++ compiler configure:3532: g++ -c conftest.cpp >&5 configure:3538: $? = 0 configure:3555: result: yes configure:3560: checking whether g++ accepts -g configure:3590: g++ -c -g conftest.cpp >&5 configure:3596: $? = 0 configure:3695: result: yes configure:3720: checking dependency style of g++ configure:3811: result: gcc3 configure:3839: checking for a BSD-compatible install configure:3895: result: /usr/bin/install -c configure:3906: checking whether ln -s works configure:3910: result: yes configure:3967: checking for pkg-config configure:3985: found /usr/bin/pkg-config configure:3997: result: /usr/bin/pkg-config configure:4026: checking pkg-config is at least version 0.9.0 configure:4029: result: yes configure:4040: checking for GTKMM configure:4048: $PKG_CONFIG --exists --print-errors "glibmm-2.4 gtkmm-2.4 sigc++-2.0" configure:4051: $? = 0 configure:4066: $PKG_CONFIG --exists --print-errors "glibmm-2.4 gtkmm-2.4 sigc++-2.0" configure:4069: $? = 0 configure:4145: result: yes configure:4158: checking how to run the C preprocessor configure:4198: gcc -E conftest.c configure:4204: $? = 0 configure:4235: gcc -E conftest.c conftest.c:10:28: error: ac_nonexistent.h: No such file or directory configure:4241: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "gtkguitune" | #define VERSION "0.7" | /* end confdefs.h. */ | #include configure:4274: result: gcc -E configure:4303: gcc -E conftest.c configure:4309: $? = 0 configure:4340: gcc -E conftest.c conftest.c:10:28: error: ac_nonexistent.h: No such file or directory configure:4346: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "gtkguitune" | #define VERSION "0.7" | /* end confdefs.h. */ | #include configure:4384: checking for grep that handles long lines and -e configure:4458: result: /bin/grep configure:4463: checking for egrep configure:4541: result: /bin/grep -E configure:4546: checking for ANSI C header files configure:4576: gcc -c -g -O2 conftest.c >&5 configure:4582: $? = 0 configure:4681: gcc -o conftest -g -O2 conftest.c >&5 configure:4684: $? = 0 configure:4690: ./conftest configure:4693: $? = 0 configure:4710: result: yes configure:4734: checking for sys/types.h configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4761: $? = 0 configure:4777: result: yes configure:4734: checking for sys/stat.h configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4761: $? = 0 configure:4777: result: yes configure:4734: checking for stdlib.h configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4761: $? = 0 configure:4777: result: yes configure:4734: checking for string.h configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4761: $? = 0 configure:4777: result: yes configure:4734: checking for memory.h configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4761: $? = 0 configure:4777: result: yes configure:4734: checking for strings.h configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4761: $? = 0 configure:4777: result: yes configure:4734: checking for inttypes.h configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4761: $? = 0 configure:4777: result: yes configure:4734: checking for stdint.h configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4761: $? = 0 configure:4777: result: yes configure:4734: checking for unistd.h configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4761: $? = 0 configure:4777: result: yes configure:4806: checking fcntl.h usability configure:4823: gcc -c -g -O2 conftest.c >&5 configure:4829: $? = 0 configure:4843: result: yes configure:4847: checking fcntl.h presence configure:4862: gcc -E conftest.c configure:4868: $? = 0 configure:4882: result: yes configure:4910: checking for fcntl.h configure:4918: result: yes configure:4806: checking sys/ioctl.h usability configure:4823: gcc -c -g -O2 conftest.c >&5 configure:4829: $? = 0 configure:4843: result: yes configure:4847: checking sys/ioctl.h presence configure:4862: gcc -E conftest.c configure:4868: $? = 0 configure:4882: result: yes configure:4910: checking for sys/ioctl.h configure:4918: result: yes configure:4796: checking for unistd.h configure:4802: result: yes configure:4932: checking for an ANSI C-conforming const configure:5007: gcc -c -g -O2 conftest.c >&5 configure:5013: $? = 0 configure:5028: result: yes configure:5040: checking whether gcc needs -traditional configure:5082: result: no configure:5213: creating ./config.status ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_GTKMM_CFLAGS_set= ac_cv_env_GTKMM_CFLAGS_value= ac_cv_env_GTKMM_LIBS_set= ac_cv_env_GTKMM_LIBS_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_PKG_CONFIG_set= ac_cv_env_PKG_CONFIG_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_header_fcntl_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_ioctl_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP=/bin/grep ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config ac_cv_path_install='/usr/bin/install -c' ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes ac_cv_prog_gcc_traditional=no ac_cv_prog_make_make_set=yes am_cv_CC_dependencies_compiler_type=gcc3 am_cv_CXX_dependencies_compiler_type=gcc3 pkg_cv_GTKMM_CFLAGS='-DPNG_NO_MMX_CODE -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/atk-1.0 ' pkg_cv_GTKMM_LIBS='-lgtkmm-2.4 -lgdkmm-2.4 -latkmm-1.6 -lgtk-x11-2.0 -lpangomm-1.4 -lcairomm-1.0 -lglibmm-2.4 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lsigc-2.0 ' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /home/floh/gtkguitune/missing --run aclocal-1.10' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /home/floh/gtkguitune/missing --run tar' AUTOCONF='${SHELL} /home/floh/gtkguitune/missing --run autoconf' AUTOHEADER='${SHELL} /home/floh/gtkguitune/missing --run autoheader' AUTOMAKE='${SHELL} /home/floh/gtkguitune/missing --run automake-1.10' AWK='gawk' CC='gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' CPP='gcc -E' CPPFLAGS='' CXX='g++' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' GREP='/bin/grep' GTKMM_CFLAGS='-DPNG_NO_MMX_CODE -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/atk-1.0 ' GTKMM_LIBS='-lgtkmm-2.4 -lgdkmm-2.4 -latkmm-1.6 -lgtk-x11-2.0 -lpangomm-1.4 -lcairomm-1.0 -lglibmm-2.4 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lsigc-2.0 ' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LDFLAGS='' LIBOBJS='' LIBS='' LN_S='ln -s' LTLIBOBJS='' MAKEINFO='${SHELL} /home/floh/gtkguitune/missing --run makeinfo' OBJEXT='o' PACKAGE='gtkguitune' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_VERSION='' PATH_SEPARATOR=':' PKG_CONFIG='/usr/bin/pkg-config' SET_MAKE='' SHELL='/bin/sh' STRIP='' VERSION='0.7' ac_ct_CC='gcc' ac_ct_CXX='g++' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__fastdepCXX_FALSE='#' am__fastdepCXX_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build_alias='' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE}' dvidir='${docdir}' exec_prefix='${prefix}' host_alias='' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='$(SHELL) /home/floh/gtkguitune/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='/bin/mkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE "gtkguitune" #define VERSION "0.7" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define HAVE_FCNTL_H 1 #define HAVE_SYS_IOCTL_H 1 #define HAVE_UNISTD_H 1 configure: exit 0 ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on home config.status:646: creating Makefile config.status:646: creating icon/Makefile config.status:646: creating config.h config.status:875: config.h is unchanged config.status:922: executing depfiles commands ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status config.h on home config.status:646: creating config.h config.status:875: config.h is unchanged gtkguitune/guitune.o0000644000175000017500000116672011064666201013565 0ustar flohflohELF>H@@9:;<=>?@BCEGIKMOQSUWY[]_acegikmoqsuwy|~SHHtǃ[@USHHHHLJHGHHHH HH[]HHHHH HHHH@USHHHHLJHGHHHHH []HHHHH HHHHfDfDH\$Hl$HLd$HHHHHPHHHHGHHuHH$Hl$Ld$HHIHuHLIIf.H@@f.SHHH[H@*Hxf*HpfSHHx,C([f.SHHH[fH@H@H@H@H@HHHH1fHH1fHH:+Xz@HFiFB@HHfHH0{@H'M@H5H fHI{@IZVZyX@L LfATLUSHH@HcHcW8dH%(HD$81I44%8Nj;u]ǃ9ƃ#fǃHT$8dH3%(H@[]A\@S()9|˃]lH*C,YCPC`\f.CfDXC`f.wC`X\f.rfD\f.sC`CD1f(\fTf.vf(ىCDHH uHCPHHHHcCDSPøf(^f.v,%Yf(^f.wf(^f.vXf(^f.wf(HHHƃ1H1 <8/W9HcIDfDH94f8fx~ƃՅ_A$1L1)=~!@AH1)=19u%fD8H11H11L1)Ѓ~'DAH1)Ѓ9uW9fHcI8wxv ƃH9|݀`eHcHI44HcHI4t|1fAU1ATUHSHxHXHH11HǾ1 H2 E8 1u,1*E,E0HEXƅDžDIL`HHHs0HCHCHCHC H|$0HC(Hn HFHFLfH\$0HHH$H@H\$HD$ Ht$ E1ADHHHHHHHX[]A\A]Ë1ҾP1H]8HT$DP1t$D1t$D1t$D1t$D1t$D1t$D1t$D1 Hھ P1E8HھP1u811ҾP1HPDž1D$LHT$LP1u,1t$HHT$HP1HU,P1u,1*E,E0QHHHHHHCHtHHHHHHHHHf.SHHxH[fDSHHp,H߉C,HC0[fAWH AVAUATUHHSHXHD$8HHD$@HE1HHHEHDžHEHD$HH H HH{@IZVZyX@I/dev/dspHLHLxƅE(E,(+DžH HHH1ŸYX HH uʿHHHE0HpHHHHþHHdHHþHHdH8IY@HHLd$(fWd$( H]p8Ld$(HHd$(fWf(H]x8fWH%Hf(HHAD$D$E1D$$1HL$L@H1LHHHD$D$D$$AAHLHAD$D$D$A$HL$ L@H1LHHHD$D$D$$AAHLHAD$D$D$A$HH$0H@IHHHPI1ɺH L LILH HLL$@L@H1LHHHD$D$D$$AALLPHHup1fWHHHD$D$D$$AALL$PL@H1LHHHD$D$D$$AALLPHHux1fWHHHD$D$D$$AALL$`L@H1LHHHD$D$D$$AALLPIH1fWHLHD$D$D$$AALL$pL@H1LHHLHHD$D$D$$AALLHD$D$D$$AAHL$L@H1LHHHD$D$D$$AAHLHAD$D$D$A$1HHV1LHEIXL`HHHs0HCHCHCHC H$HC(Hn HFHFLfH$Ll$PHLHD$PLd$`HupLH@LLH$HHHLLHEIXL`HHHs0HCHCHCHC H$HC(Hn HFHFLfH$Ll$pHLHD$pL$HuxLH@LLH$HHHLLHEIXL`HHHs0HCHCHCHC H$HC(Hn HFHFLfH$L$HLH$L$HLH@LLH$HHHLLLXI$MLhHHHs0HCHCHCHC H$ HC(Lf HFHFLnH$ L$HLH$L$HupLH@LLH$HHHLLLXI$MLhHHHs0HCHCHCHC H$0HC(Lf HFHFLnH$0L$HLH$L$HuxLH@LLH$HHHLLHEIXL`HHHs0HCHCHCHC H$@HC(Hn HFHFLfH$@L$HLH$L$HLH@LLH$HHHLLHX[]A\A]A^A_HD$0H|$8H|$0LHD$0LH|$HHH|$@HD$0HD$0HCHtHHHHD$0HD$0HD$0HCHtHHHD$0]DHD$0HCHftH1f`HD$0HCHhH^kf.f HD$0HCH(H+f.BDfDDfDHD$0HCHHf.HHD$0L[HD$0LHD$0BHHD$0fD#@f.LHD$0fDLHD$0HHD$0DPhfD@DfDMDfD]DfDMDfD=DfD-DfDDfD HD$0fD8HD$08HD$0;fDAWHFE1AVAUATUHSHHHXHD$@HHEHPHHDHHEHHD$HH H HI{@IZVZyX@I/dev/dspL5L-HLxƅE(E,(+DžH HHH1ŸYX HH uʿHHHE0HpHHHHþHHdHHþHHdH8IY@HHLd$(fWd$( H]p8Ld$(HHd$(fWf(H]x8fWH%Hf(HHAD$D$E1D$$1HL$L@H1LHHHD$D$D$$AAHLHAD$D$D$A$HL$ L@H1LHHHD$D$D$$AAHLHAD$D$D$A$HH$0H@IHHHPI1ɺH L LILH HLL$@L@H1LHHHD$D$D$$AALLPHHup1fWHHHD$D$D$$AALL$PL@H1LHHHD$D$D$$AALLPHHux1fWHHHD$D$D$$AALL$`L@H1LHHHD$D$D$$AALLPIH1fWHLHD$D$D$$AALL$pL@H1LHHLHHD$D$D$$AALLHD$D$D$$AAHL$L@H1LHHHD$D$D$$AAHLHAD$D$D$A$1HHV1LHEIXL`HHHs0HCHCHCHC H$HC(Hn HFHFLfH$Ll$PHLHD$PLd$`HupLH@LLH$HHHLLHEIXL`HHHs0HCHCHCHC H$HC(Hn HFHFLfH$Ll$pHLHD$pL$HuxLH@LLH$HHHLLHEIXL`HHHs0HCHCHCHC H$HC(Hn HFHFLfH$L$HLH$L$HLH@LLH$HHHLLLXI$MLhHHHs0HCHCHCHC H$ HC(Lf HFHFLnH$ L$HLH$L$HupLH@LLH$HHHLLLXI$MLhHHHs0HCHCHCHC H$0HC(Lf HFHFLnH$0L$HLH$L$HuxLH@LLH$HHHLLHEIXL`HHHs0HCHCHCHC H$@HC(Hn HFHFLfH$@L$HLH$L$HLH@LLH$HHHLLHX[]A\A]A^A_HD$8Ht$@HH|$8LHD$8LH|$HHD$8HD$8HCHtHHHHD$8fHD$8HD$8HCHtHHHD$8wDfDHD$8HCHftHEfXHD$8HCH`HVcf.yDfDDfDHD$8HCHHf.)DfDDfDHD$8HCHHf.HHD$8L_HD$8LHD$8FHHD$8fD'@f.LHD$8fDLHD$8HHD$8DPhfD@DfDMDfD]DfDMDfD=DfD-DfDDfD HD$8fD<R% : ; I$ > $ >   II!I/ 9: ; : ;  : ; <  : ; ( <  : ; I8 2  : ;I8 .? : ;< I4 I : ;4: ; @I? < 9: ; :: ; 9: ; &I.? : ; I< .? : ;I< & : ; : ; I8 ! : ; I8 ": ;I#I$%.? : ;I< &.? : ;< '.? : ;I< (.? : ; @I< ) : ;* : ; + : ; I,: ; -.? : ; I< ./ : ; 0G : ; 1G : ; 2.? : ; < 3.? : ; @I< 4.? : ; @< 5.? : ; @< 6 I7.? : ; < 84: ;@I? < 9 : ;I8 2 :.? : ;@I2 < ;.? : ;@2 < <.? : ;@I2 < =.? : ;@I< >.? : ;@I< ?.? : ;@< @.? : ; @I2 < A.? : ;@I< B.? : ; @I< C4: ; @I? <  D4: ; @I? <  E4: ;@I? 2 < F< G.? : ;@I< H.? : ;2 < I.? : ;@2 < J.? : ;@2 < KG : ;L.? : ;2 < M.? : ;< N!OPIQ5IR.? : ;I< S.? : ; @2 < T : ; I8 2 U.? : ; @I2 < V.? 4 < W.? : ; @I< X.? : ; @2 < Y.? : ; 2 < Z.? 4 < [9: ; \.? : ; I< ]4: ; I< ^4: ; I<  _ : ;` : ; a.? : ;L < b.? : ;@< c.? : ; @I< d!I/e.G: ; fI4 g.G h: ; Ii: ;Ij k: ; Il.G m n.G: ; o p.G@q: ; Ir4: ; Is1UX Y t1u1UX Y v1w1X Yx.G@ yI4 z: ; I{1X Y |: ;I}4: ; I ~.1@4: ; I.? : ; I 4: ;I4: ;I4: ;I4: ;I4: ;I  U1X Y1X Y 1UX Y1UX Y  441X Y4: ; I? < 4G 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < 4: ; @I? <  d 0,eintllll=MKe l std 6 7% X Z ]? _[ bs i j n< o[ pz q r t v w y |< }Y ~      / Q s        : W ճ o ב  d' e< gG ha ix j k l m n o s8 t_ v w x z { | } 3 P g ~       / Q t    : ;Y #/3OO      AQ!.!/!+>eke?o%%[ȨseCe%c de#!remee#k ll#!remml# w x#!remy#"" ( #< eT xeT Z $s s  e l  %% % div!ee& [ < #llY je%{ v%{ %  ne{ %& %% 'e Y%& E) Hs ) Q Ml) es S0) e e z% %   qe : ( abs( div     W *o  }) e ) e ] )  c ) & e' .2 )  e##### #(#0#8#@#H#P#X#`  #h"e#p&e#t(s#x,>#-L#.#2&#;~#D#E#F#G#H%#Je#L,#>2 " cEbM*EP+Q +R Ne# S"# s# #7 E# E# # #, #  # e#2 <Xb&[[' xe[e[e[e[e[e[<e[8[_a%%%[[[e[lee[<l[e[-)e&3Pee[gBee~ee&[&-[2e[e%-[/Yee[K"eKtee%.e[KeKie%KeKY`5 8# 9# ?# E# F# G#( H#0 I#8 J#@ K#H L#P M#Q O#R Q#S S#T U#U \#V ]#W `#X b#Y d#Z f#[ m#\ n#]u}e-/.tm8 e# e# e# e# e# e# e# e# e# l#( #0J/-bs yyyy5%%_X& ep p{ { ep  pe pfepe nep .+ep .C p' sV%%s54%{ %s.e5a%{ %s  p  Bye{ % .`e  .}  pep Kep Ke{ % K e  K'e KDe Kf8% s{ {  e  e  { {  %  8%{ % 0% Q{ {  %re  %{ {  %g%%s %  (s  { 7  ={ {  _,l e00 e%{  %*e  e  %{ {  % { {  %B{ {  %[te .te .{   {   {   {   {   %#<  E eg e0S @1 0320A20C20He30K30N3*0S04L0]03h0a%40g50k66o6o1 YL1o#21a 2 1c & 71i e6, 6 _I!e123~L88F 239F#  : F73: FB3: FH373: !F ! 73:(!F$! 73;B!F(B3:j!F/%730;!F77300:!F?%7300:!FG6 73;"FP0;$"FY0;G"Fb0;j"Fu! ! ;"Fy' ' ;"F};"F;"GB3000;#GB3<FN3&>#FB32W#GB3& 2p#GB3T32#GB3T3002#GB3T300& 2#GB30& 2#GB3& 2$GB30& &:$FB3e=\$FZ3B3T3=~$FZ3B3=$FZ3B3=$F! B3=$F' 73>$endF! B3>%endF"' 73=1%F+B3=N%F473=k%F=B3=%FF73=%FN%73=%FT%73=%FY%73?&GmB30? &FtB30==&F|%73?[&GB30?t&FB3=&F6 73=&F730=&FB30>&atF730>'atFB30=9'FZ3B3T3=['FZ3B3=}'FZ3B3='GIZ3B3T3='GZZ3B3T300='G.Z3B30=(F3Z3B3=;(GZ3B30?Y(FVB33z(GZ3B3T3=(FtZ3B3T300=(GZ3B30=(FZ3B3=)FZ3B30?>)FB3! 0=e)FZ3B30T3=)FZ3B30T300=)GlZ3B300=)FZ3B30=*F2Z3B300=<*FC! B3! =c*F[Z3B300=*Fk! B3! =*F! B3! ! =*FZ3B300T3=+FZ3B300T300=?+GZ3B3000=k+FZ3B300=+FZ3B3000=+FZ3B3! ! T3=+FZ3B3! ! 0=%,F+Z3B3! ! =V,F@Z3B3! ! 0=,FdZ3B3! ! =,FoZ3B3! ! =,FyZ3B3! ! ! ! =-FZ3B3! ! ' ' :L-GZ3B3000:~-GZ3B3000@-G0& =-G%7300?-GB3Z3= .F73=(.F73=E.F73=q.G%7300=.F%73T30=.F(%730=.G%730= /FF%73T30=9/G%7300=`/Fb%730=/G%730=/F%73T30=/G%7300=0F%730=(0F%730=O0F%73T30={0G(%7300=0F%730=0F%730=0F%73T30=1G=%7300=C1F%730=j1GI%730=1F5%73T30=1GT%7300=1FR%730= 2Gi%730=22FrS 7300=T2Fe73T3=2G}e7300T3=2Ge7300T300=2Ge73=3Ge7300AGe73000%=3S S  6 6=36S 13 F F%# F%# FB #1X5 F`3#G?23GDGPX5BFN33 4F6 h53(4F6 h54@4FH34X4FH34u4FH3034FH334FH3& & =4GH300& 44FH3& ?5GH3& 345FH3AG]H3& 0h5%n531n8HDCHiCHjCHkCHlCHmCHnCHo DallHq? 9Hn8#EH!n8EH$n8EH*t8EH9.6EHc9Fid26H|826H8826H826H88e2 7H888e2:7H8e3[7H888L98>9K;6(H9HB #9H;#9H%#9H;#9H) # EH;EH;EH;EH;EH;EH;EH;;E:Hn8;_:Hn8H:H n8<%H:H n8%H:H n8%H:Hn8eH:Hn8<;;Hn8<:.;H6 n8;R;H!n8<e;v;H$n8<<;;H'n8<C9;;H*n8C9;JH2n8;%;;q6;C9N<<N <C96<I9<B08<><Z_<e "<{<  -<<-<<"<K<$P 8P <8P AP ..K>! Mz9M|#&4=M>&N=M>>=k=M>==M>==M>>==M=>e==M>>=>M=>e=(>M>>=J>M>>>=l>M=>>=>M>>>=>M=>>AM>>=6>>=6=6>1?H/K /L?# /M?#4;?/P??4]?/T???4u?/W?4?/Z??5/]?>6>B#>B(E ')'+l',e'-?'10'2E'H'R'@-@O8@@>@?"'O@){@''?#'?#?@A"?@@@@ @ @# @!?# @"{@#?/@@#@@@ A?1?C??D/A ?E@A ?HQAB?J ?KB# ?LB# ?MB# ?NB# ?OB# ?PB#( ?QB#0 ?RB#8 ?TB#@ ?WC#H ?XB#P ?Y2C#X ?ZGC#` ?\]C#h ?dC#p ?eT #x ?f'@# ?gT # ?iC# ?j'@# ?lC#PBABOBBB#B?BBPB$ABOBBBOBBBB#C?BBCC@B#,C,C@5AC#GC@,C8CO]C,C@MCOC@@???@@CC@cCOC@@C#C?@@C="C C#C?@S"D-DS% S&@# S'-D#CR>D RODE`R' R)@# R*E# R,E# R-@# R/E# R1?#( R2@#, R3@#0 R5-D#8 R7E#@ R8E#H R:@#P R;@#XRETER?!refR@'@# RA'@#!getREF#R _EE0RK RM.F# RNCF# RQbF# RRsF# RUE# RV F#(R"CETE3DDDOE@EE@EERHT #(F?E(F?F#CF?E4F#bF?EE@IFOsFEhFC<\?BRend/UV>_Rend/^V=|R/gV=R/pV=R/yV=R/V=R/6 V= S/%V=*S/%V4LS2iV0K=iS/gMV=S/mMV=S/gMV=S/mMV?S/VmM?S/V?T/VmM?.T/V3TT2UVmM?|T/&V0mM3T2_V=T/gV?T/xVV?T/V?U/VV?FU/VV?sU/VV4U2VmM4U2V4U2VV?U/V4U2VSV2V0mM;BV/cV0mM;kV/lV;V/qVmMJ/yVP6VP6PV1tWG)3T)MP#T)N6 #4W)9tWK41W)>tW4IW)BtW2]W)DtW7)ItWeV1nXFH)iT)tW#2W)jnX2W)lnXtX3W)nXnXtX2W)pnXe4X)}XK4].K9^e3Z].P6 P^3v].U6 P^3].Z6 P^3].a6 9^6 3].f6 9^4].i9^3^.n6 9^3^.sX.v9^\\6E^\6\E^6\^jH6g^^H1^wG  # F# F#1_}G $T 3_#2^ &__3^ )\U 6__#_G^6^6)_^1X`G E^#T mX`#2l_ Gc`e4_ Jc`4_ O.GY_ Xc`_X`@_ _\c`\6 @ ` j\c`\6 @9` r\c`F\6 U ui`c`o`^`l^._6._6u`._KDapHZ#?`Da&`Oa&`OaUa=`[aOaUaZaOae&-aOa+rOasJaz`z`6Ja6z`Ka^HCz`#&aca&alaa^&aia+rZaaeiasaa[Gdk4= bGtk,& 'b9    3Zb9D{D{3ub9w{w{ 3b9{{3b95v5v 3b9 | |\9bbbc5&]64^65c*h/?^66cdHI?^67c~?^68c?^69c333333?^6:cHգp= ?^6;cS?s 7[Atk8.cW-s   6cFG1dvHyX#Td#2di26did3\d6 idcW6 iic_di#l##d6 dFGd`i(+#G'b# +'e#( +(e#, +)s #0 +*e#8 ++e#< +,e#@ +-e#D +.e#H +/s #P +0s #X +1s #` +2s #h +P/v#p +Q/v#x +R/v# +S5v#T+Vo#T+W;v#T+ZAv#T+[Av#T+\e#T+]Gv#T+^Xv#T+_Xv#T+`hv#T+ae#T+be#T+c\#T+e6 #T+fe#T+ge#Zfdexvi&f%dexva$gddexv4# /dK#X6kX1)qH(<X# wj#3p6 )q2p4q2p4q~pqS6 )qcV4qe/qpp1q HXX# p#02vq%q~p2q)qq2q-qe3q7cdupJ:q6q:q1+rH~3r6 YcBX6Nn1rH(<X# m#4lrr2rr2rr+rVrer1r1r1bsHXX# 1r#02r%bs+r2s)bshs2/s-bse3Js7cdupJr6nsr1sH^4scYBmX6Op1,tH(<X# o#4s,t2s7t2t7tsV7te2tss1t!HXX# s#02yt%ts2t)tt2t-te3t7cdupJ=t6t=t1%u'H^4ucYBmX1nu-H6 kZ#2Xugnutu7buxtX%u6_Z1u3H6 kdZ#2uguu7bytXzu6Z1u9HJ5WtXu6u%u1$v?HJ5WtX$v6*vzu-b3bccXvSdhvs  xvc~vvevX*@fvpgvdfvhdigvjfvhOvfjigwjfwi(di(djgBw.mfBwhY~mmgtwmftwidi~mBngwnfwhYnogwaofwhOwo,ogwofwioinCpexX3fxxpg+xCjf+xljgExofExogkxuhWkxhWpxtXuugxXufxhbxjuxtXgxzofExgx?ufxhgxnutugysfyh y7tsg/y Zf/ykrepYSZlugOy'jf+xgoyrfoyhtyr+rlsgypfyhy4q~plrgyZfyktXZgy vhWyhWyjtX$v*vg'zuf'zhb,zmjytXgQzufQzhgVzuun}z`f}zfOanzkfzfkgzGklhs%sFGkrhs%sFGgzHiXdiXdmozjjg{%lf{i{Ul~pnD{?lCf{f9bpw{?bqobj9D{'bp{Zbqobj9w{ubp{{bqobj9{p |bqobj95vbp=|bqobj9 |g]|pf]|hSb|)qcg|jf|i:|jjcp,}qqrepYqa_1,}rqs }=|tQ|tG|ug|Tt{|vq|wx;t xcgG},nfG}jHnx}Trwy}s}1}v;}wxt xrx}swqrepcYrfbsg~-pf~jIpxg~swyg~sH~}v}w0xt:x,tx~twqrepcYrftg~9Zf~ktXYZxgHwzgzl{{xtxtx{Jxdt_xtTx{~Xt~t~utX6oxHwzwzwuqxIw| | us62txF0Iw|F|KupMIzz}%u`tu6rjxiIwzwzwux,Iw| ,| 1u+r6rxyIw|y|~u6ṕIźzҁ}%u`tu6xIw|L|Lu~p6/qxaIw|a|fupJzz}%u`tux`1Jwz`ze{ztztz{ydtyty{yXtyty$vtXxMJwzwzw$vqxiJw| | $vsx3Jw|3|8$vpJzz}zu`ux̄Jwzw̄zwф$vxJw| | $v+rxZJw|Z|_$v6pKzz}zu`u6g؅~Zf؅krepYZer<foyfpS/sz7r9bs{3E  ?oFA?q?CD23s 3s >3E  ?oFA?q?8@CGD2 . bc*h/?cdHI?.c~?Cc?Xc333333?mcHգp= ?cS?&4@g AQEE@E1 E1 E= E'1 E(1 E+= E`1 Ea1 Ed= F 23G?23GDGPX58F 23G?23GD CHjCHkCHlCHmCHnCHo EH*t89)EHcQ)EH;EH;EH;EH;EH;EH;EH;N۰decN۰N۰hexN ۰N۰N۰ octN۰@N۰N۰N ۰N$۰N'۰N*۰N-۰ N1۰@N4۰N7۰JN:۰NLPNOPNTPNWPfinNvoutNycurNѲO3O4O5O6O7O8 O9@O: CO;CO<O= 8P8P8P <8P 8P1 8P1 8P1 8P1 8Py1 8Py1 8Py1 8Py1 Q23TEE%C(1 C(1 C(1 C(1 C(1 C(1 C(1 C(1 C(1  /usr/include/gtkmm-2.4/gtkmm/usr/include/sigc++-2.0/sigc++/functors/usr/include/sigc++-2.0/sigc++/usr/include/sigc++-2.0/sigc++/adaptors/usr/include/glibmm-2.4/glibmm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/ext/usr/include/gdkmm-2.4/gdkmm/usr/include/pangomm-1.4/pangomm/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/glib-2.0/gobject/usr/include/asm-generic/usr/lib/glib-2.0/includeobject.hslot.hmem_fun.hlimit_reference.hadaptor_trait.hvisit_each.hslot_base.hguitune.ccresources.hsignalproxy.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h _G_config.hwchar.hstdio.h clocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.h refptr.hcontainerhandle_shared.hmarkup.hmain.hcontainers.hgtypes.h type_traits.htrackable.hfunctor_trait.hguitune.hmain.hosziview.hconnection.hstl_list.h new_allocator.h allocator.h list.tcc deduce_result_type.htypes.hfontdescription.hfont.henums.hcomponent.henums.hgclosure.hgobject.hgtype.hgdataset.h ioctl.hgthread.h gerror.h gquark.h glibconfig.hgunicode.h gstrfuncs.h limitsbasic_string.h basic_string.tcc locale_classes.h atomic_word.h gthr-default.h pthreadtypes.h stringfwd.h stl_iterator.h ios_base.h ctype_base.h locale_facets.h ustring.hgmain.h gslist.h :: >= :: >= :: >= :: >= :: >=  JrJ\J Jr Jr<  sJ~J J    sJ~J J   A      PJ<<J       PJ<<J      PJ<<J  <       PJ<<J       PJ<<J  6OHJ     PJ<<J   >YfYYX#Y}bv ?vXko > >0]vvyzzzruuytruuytruut .wtr򒖉1ci9ii:h-u*_撓YY+0jgKǑ(Y@  )v |'g" |/<Rgs&v%x}t0,vL;gj1Zuu~J~Xu~tt|R.JS-XtXX~B~KrJ[gYYYYY\u[K@uh=sKYgYN|.u~.< ?>E >:>Zt/s;lʟu{7uuY.Yk!   R DD>DD5HH"H>LHA0}t}XJ}R.JS-tXmXm }X# }}t}XJ}R.JS-tXnXn }X# }}t}XJ}R.JS-tX1o o }X# } t}X}R.JS-tX1qq }X# } t}X}R.JS-tX1rr }X# }}t}XJ}R.JS-tX1t  t }X# } }+}4u}u q$wl0r/;u@ʟu{7uuY.Yk!   R DD>DD5HH"H>LHA0}t}XJ}R.JS-tXmXm }X# }}t}XJ}R.JS-tXnXn }X# }}t}XJ}R.JS-tX1o o }X# } t}X}R.JS-tX1qq }X# } t}X}R.JS-tX1rr }X# }}t}XJ}R.JS-tX1t  t }X# } }.}tu}u )q$wl0r 6OHJ 6OHJ #UM]X#JCW<)JW)<V(J"X-u #UM]X#JCW<)JW)<V(J"X-u #UM]X#JCW<)JW)<V(J"X-uHSHPH[HSHPH[HSHPH[HSHPH[HSHPH[HLG8HO8HQAt HAHNDHQ6HAHHOHwHVt HFHHLHVIHAH0HOHwHVt HFHHLHVIHAH0HH7HH6HHHHHH$HH6HHHHHH$HHHHHHH$HHH7HH6HHHHHH$HH6HHHHHH$HHHw0HGH<$HGH1HHHHHHH$HLIzH#l/<MY#d/<M_9iEQ*9+**#<V$$$$$$$#$#$#$"$#$##E#^$##E#^$ # " $ " A$ " " E" $ " Z$ " " E" $ " Z$""E"$"Z$"!$"!E"{$!!$! !!$! $   $  $   !$  $ !$$ $$ $   !!!!0fs$#$#$#$#$#$"$#$##E#^$#"E#^$ " " $ " A$ " " E" $ " Z$ " " E" $ " Z$""E"$!Z$!!$!!E!{$!!$! !!$  $   $  $ !$$ !$$ $$ $   !!LIzHHHw0HGH<$HGH1HHHw0HGH<$HGH1Herror reading audio: %sEOF on audio%0.3finitializing audio at %s /dev/stdinreading data from stdin blocksize=%d sampfreq=%d OSS-Version %d DUPLEX = %X REALTIME = %X BATCH = %X COPROC = %X TRIGGER = %X MMAP = %X blocksize=%d sampfreq=%d Audiodriver initializedFreq:Tune:Adjust:SF:SN:Trig:AdaptU?DB.?U?Yx???U?p@@@?@@??333333??U?p@@@?@@??333333?H\$Hl$HLd$XH(LeHHLcHCHs0HCHC HHC(HE0HC0HE8HC8HE@HC@HEHHCHHEPHCPH$HHl$H\$Ld$ H(HHHHHCHtHHfHHH\$Hl$HLd$XH(LeHHLcHCHs0HCHC HHC(HE0HC0HE8HC8HE@HC@HEHHCHHEPHCPH$HHl$H\$Ld$ H(HHHHHCHtHHfHHH\$Hl$HLd$XH(LeHHLcHCHs0HCHC HHC(HE0HC0HE8HC8HE@HC@HEHHCHHEPHCPH$HHl$H\$Ld$ H(HHHHHCHtHHfHH           10MainWidgetx DDDDD7D+ +   D   D   D   D   D +D   D ,A$AAG $AAG $JL  A   AA     ...+D +D ,BHA G`$JQ0,BDA D(PA.A$JQ0$JQ0<IBIB B(A0G8G<BSB B(A0D8MzPLRx $DDDdDDD7D+  +$ <Tl  D   D  , DD \t  D   D 4+D L d |D ,A$AAG $AAG JL $< A\ t  AA   , D \t...4+D L+D $dBHA G`JQ0,BDA D(PA.AJQ0<JQ04\IBIB B(A0G8G4BSB B(A0D8MwwUSwwUSwwUSwwUSwwUSwwUTRUTUUTUUTPUTUTUTww UTUTUTUTww UTUTUTww UTUTPUTUTUTww UTUTUTUTww UTww UUTUTww UTwwUSwwww USUSwwww USSww USSTVVUTwwUSPUaUTUTwwUSwwUSUUUUUUUUUUUUUUww Uww Uwwww wUSSTVVVVVPPPPPPPPPPUUUUU\\bdbww0UVVVSS\\UUUUwwww w(wUVVVVVSSUULLLHHHDDDUUUUwwUSUTwwUSww0UVVVSS\\UUUUww0UVVVSS\\UUUUwwww w(w0w8wUVV____]]]]]]]]]SSSSSSSSSSSSSSSS^^^SSSSSSSSSSUUSSSSSSSSSSUUSSSSSSSSSSUU\\\\\\\\SSSSSSSSSSUU\\\\\\\SSSSSSSSUUSSSSSSUUUUUUUUUUUwwww w(w0w8wUVVTSSSS____]]]]]]]]]SSSSSSSSSSSSSSSS^^^SSSSSSSSSSUUSSSSSSSSSSUUSSSSSSSSSSUU\\\\\\\\SSSSSSSSSSUU\\\\\\\SSSSSSSSUUSSSSSSUUUUUUUUUUUhJ{manage}{manage{manage{manage|manage|sigc::internal::slot_call1, bool, Glib::IOCondition>::call_itL}sigc::adaptor_functor >::operator()}sigc::internal::slot_call0, void>::call_it~sigc::adaptor_functor >::operator()l~sigc::internal::slot_call0, void>::call_it~visit_each, sigc::trackable>wvisit_each, OsziView, true>visit_each, void, OsziView> visit_each, sigc::bound_mem_functor0 >Pvisit_each_type > >visit_each, MainWidget, true>visit_each, void, MainWidget><visit_each, sigc::bound_mem_functor0 >visit_each_type > >ׁvisit_each, bool, MainWidget, Glib::IOCondition>$visit_each, sigc::bound_mem_functor1 >kvisit_each_type > >visit_each, sigc::trackable>jvisit_each, OsziView, true>visit_each, void, OsziView>visit_each, sigc::bound_mem_functor0 >=visit_each_type > >visit_each, MainWidget, true>քvisit_each, void, MainWidget>visit_each, sigc::bound_mem_functor0 >dvisit_each_type > >sigc::internal::typed_slot_rep >::destroySvisit_each, bool, MainWidget, Glib::IOCondition>visit_each, sigc::bound_mem_functor1 >visit_each_type > >5MainWidget::uninit_audioMainWidget::~MainWidgetMainWidget::~MainWidgetMainWidget::~MainWidgetMainWidget::setAdaptiveValLMainWidget::setAdaptiveMainWidget::setTriggerValMainWidget::setSampNrValMainWidget::setSampFreqVal5MainWidget::setSampNraMainWidget::setTriggerMainWidget::getTriggerMainWidget::hideOsziMainWidget::hideLogViewMainWidget::showOszi9MainWidget::showLogViewdMainWidget::setScaleGEAltMainWidget::setScaleGEMainWidget::setScaleUSAltMainWidget::setScaleUSMainWidget::setTuningNat;MainWidget::setTuningEquifMainWidget::setTuningPhysMainWidget::setTuningWienMainWidget::setTuningNormsigc::internal::typed_slot_rep >::destroy~sigc::internal::typed_slot_rep >::destroyMainWidget::proc_audiosigc::internal::typed_slot_rep >::dup$MainWidget::init_audioVMainWidget::setDSPNameMainWidget::setSampFreqsigc::internal::typed_slot_rep >::dupsigc::internal::typed_slot_rep >::dupۖMainWidget::MainWidgetáMainWidget::MainWidgetKAMMERTONKAMMERTON_LOG17+ +      + ++llabs_ZNSt10ctype_base6xdigitEoperator==limit_derived_targetmem_functor0_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6spliceESt14_List_iteratorIS2_ERS4__S_octstrtodstrtofpunct_IO_buf_endstrtolgetwc_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5eraseESt14_List_iteratorIS2_E_GMutexprint_ZN4sigc8internal8slot_rep10disconnectEv_ZNKSt6locale4nameEv__gthread_once_tswprintf_ZNKSs5rfindERKSsmmbsinitfrac_digitsdata_setTriggerthread_equalGObjectlist_ZNSt6locale5_ImplaSERKS0__ZN4sigc8internal17with_type_pointerILb1ENS_9trackableENS0_20limit_derived_targetIPS2_NS0_12slot_do_bindEEEE8execute_ERKS2_RKS6__ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5clearEv_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_M_indexvisit_each, sigc::trackable>KAMMERTONGData_ZN4sigc10connection7unblockEvvfscanfsample_s16le_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4backEv_M_check_same_namevisit_each_type > >_ZNK9__gnu_cxx17__normal_iteratorIPcSsE4baseEv_List_const_iterator_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE11_M_transferESt14_List_iteratorIS2_ES6_S6__ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE3dupEPv_ZNSs7reserveEmEXPANDoperator bool_ZNSt6locale10_S_classicEremovetrackable_callback_list_ZNKSs11_M_disjunctEPKcsize_tbool_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE14_M_create_nodeERKS2__ZNSs4_Rep7_M_grabERKSaIcES2__M_copyfread~localesnprintf_ZNK4sigc9trackable30remove_destroy_notify_callbackEPv_ZNSt10ctype_base5upperE_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_18bound_mem_functor0Iv10MainWidgetEEE5valueEatexit_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4sizeEvatofatoiatoloszifreq_ht_M_install_facet_ZNSs4_Rep10_M_destroyERKSaIcErend_ZNSs6insertEmPKcm_ZN10MainWidget8showOsziEv_ZNKSs6lengthEv_ZNK4sigc12mem_functor1Ib10MainWidgetN4Glib11IOConditionEEclEPS1_RKS3__ZNKSs5beginEvfind_first_ofn_cs_precedes_ZNSt8ios_base3decEasctimewcstombs_S_rightslot0 >_S_empty_rep_ZNSt6locale13_S_initializeEv_ZN10MainWidget10proc_audioEN4Glib11IOConditionE_ZNKSs5rfindEPKcmmtm_hourSCALE_XX_SMALL_ZNSt6locale3allE__delta_S_outdata_to_slotoszi_heightgbooleanstdin_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmcoperator*operator+operator-operator=visit_each, sigc::bound_mem_functor0 >insertsystemwcsrtombsshowOsziquotrfindatoll_ZNK4sigc10connection7blockedEvg_typeSignalProxy0_M_eraseadd_destroy_notify_callback_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE9constructEPS3_RKS3_int_p_sep_by_space_ZNSs7replaceEmmPKcunref_ZNSs4_Rep10_M_disposeERKSaIcE_ZNSs15_M_replace_safeEmmPKcmfputws~basic_string_M_move_A_func_ZNKSs12find_last_ofERKSsmvisit_each, MainWidget, true>_S_ios_openmode_endIO_NVAL_ZN9__gnu_cxx13new_allocatorIcE10deallocateEPcmstrtoldstrxfrm_M_destroy_ZNSt6locale5facet9_S_c_nameE_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idE_M_fill_assign_ZNSt6locale18_S_initialize_onceEvgetenv_ZNKSs7_M_iendEvtm_ydayputwcharftellcompare_ZNSs7replaceEmmmcthread_self_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE7addressERKS5_int_curr_symbol_IO_save_end_M_dataplusblksize_ZNK9__gnu_cxx13new_allocatorIcE7addressERKca_speed_ZN10MainWidget10setScaleGEEvwcstoulcallback_data_ZN4sigc9slot_baseaSERKS0_i_pCBAdapt_ZNSt8ios_base6skipwsEsampfreq_exactsetTriggerValwchar_t_markers_ZNK4sigc15limit_referenceI8OsziViewLb1EE5visitEv__pad1__pad2__pad3__pad4__pad5_List_baselowermemchr_M_get_Tp_allocatorgetwcharprivate_setGSListfwscanf_ZNSt10money_base18_S_default_patternEdup___ZN9__gnu_cxx3divExx_ZNSt6locale11_M_coalesceERKS_S1_i_ZNSt14numeric_limitsIfE13has_quiet_NaNEgetc_ZN4sigc10connectioncvbEvcond_freegets_ZNSt14numeric_limitsIeE12has_infinityE_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5frontEv_GCond_ZN10MainWidget10setTriggerEv_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE10deallocateEPS5_m_ZNKSs16find_last_not_ofEPKcm_IO_write_baserep_frontwmemset_A_a1push_backvisit_each, void, OsziView>substr_ZNSt6locale6globalERKS__S_terminalreg_save_areastrtoul_ZNKSs4findEPKcm_ZN4sigc9trackableaSERKS0_field_ZNK4sigc18bound_mem_functor0Iv10MainWidgetEclEvSignalProxyBaseGErrorputwcoperator()_ZN4Glib17SignalProxyNormal19slot0_void_callbackEP8_GObjectPvsampnrobj_ctypetyped_slot_rep >_ZNK4sigc9slot_base27add_destroy_notify_callbackEPvPFS1_S1_E_ZNSt8ios_base8showbaseE_M_leak_hard_ZNKSs13find_first_ofERKSsm__clock_t_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEiadaptor_functor >_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEv_ZN10MainWidget13setTuningNormEvcntrl_M_set_sharable_ZNK4sigc8internal8slot_rep3dupEvref_count_S_once_ZN10MainWidget11setAdaptiveEv_GMainContext_S_id_messages_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE_ZN4Glib6Source12vfunc_table_Ebackmbrtowc_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKvbound_mem_functor1_M_limit_IO_read_ptr_ZNK4sigc8internal12slot_do_bindclEPKNS_9trackableE_ZNSt8ios_base7unitbufEget_freq_GObjectremove_callback_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE11_M_get_nodeEv_S_basefield~_Implerasenfreqviewwctype_t_ZNKSs5rfindEPKcmslot_do_bindgp_offsetspliceclock_t_ZN4sigc10connection5blockEb_ZNSt17moneypunct_bynameIcLb0EE4intlESignalProxyInfo_A_targetsort_GSourceFuncs_ZNKSs4findERKSsm_S_atoms_iniswctypepreparevwscanfproc_audioinfo_find_last_ofreserved2~_List_base_M_install_cache_GSListg_threads_got_initialized_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEmshowLogView_M_ibeginhas_infinity._20__gnu_cxxsetSampNrVal_ZNSt15_List_node_base6unhookEv_ZN4sigc10connection10disconnectEvvisit_each, OsziView, true>_M_current_ZNSt6locale13_S_categoriesEKAMMERTON_LOGfunctor_S_createremove_destroy_notify_callbackgintslot >connection_GError_ZNSbIwSt11char_traitsIwESaIwEE4nposE_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE_ZN10MainWidget13setTuningWienEvhook_ZNKSs13find_first_ofEPKcmmungetwccurrency_symbol_ZNK4sigc9slot_base10set_parentEPvPFS1_S1_ECheckButton__wchbshort unsigned intvisit_each, sigc::trackable>slot0_A_obj_M_check_S_classic_ZNKSs5emptyEv_S_scientific_ZNSt8ios_base9boolalphaE_M_check_lengthmem_functor1_S_app_ZNKSs7compareEmmRKSsmmslotmutex_unlockp_sep_by_spacemktimeappendbase_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc_mode_ZNSt6locale5_Impl14_S_id_monetaryE_List_node_S_boolalpha_ZNSt6locale5ctypeEcallbacks_bound_mem_functor1_ZNSt8ios_base3curE_ZNKSs4findEPKcmmAttachOptions_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv8OsziViewEEvE7addressEv_ZNSt6locale5_Impl10_S_id_timeE_S_ateG_THREAD_PRIORITY_NORMAL_posslot_ZNSsaSEc_ZN10MainWidget10init_audioEv_ZNSs6appendERKSsconstructgetcharuppercase_ZNKSs4findEcmlimited_action_M_grab_ZNSt6locale5_Impl14_S_id_messagesEfgetc_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEi__gnu_debug_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEvmonetary_S_categoriesfwide_ZNSt6localeaSERKS__M_facets_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mclfreq_0t_ZNK4sigc18bound_mem_functor0Iv8OsziViewEclEvtmpfilewcsspnfreq_0tslot_do_unbind~SignalProxyNormalg_ascii_tableallocator >_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EEvisit_each, bool, MainWidget, Glib::IOCondition>_ZNK4sigc9slot_base30remove_destroy_notify_callbackEPvmutex_new_ZNSs12_M_leak_hardEv_Ios_Iostatedestroy__ZNSsixEm~connectiona_stereo_ZNSspLERKSssrandfree_ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEclEvGSource_ZNSt14numeric_limitsIdE13has_quiet_NaNEg_type_instance_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE_ZNSs4_Rep10_M_refdataEv__pos_ZN10MainWidget11hideLogViewEvwcsstrfunc_ptr__ZNSt6locale5_Impl18_M_check_same_nameEvsource_funcs_ZNKSs5c_strEvvisit_each, void, OsziView>signal_namevfwprintfbtowc_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5beginEv_ZNK4sigc9slot_basecvbEv_ZN4sigc5slot1IbN4Glib11IOConditionEEaSERKS3__ZN4sigc8internal23trackable_callback_list12add_callbackEPvPFS2_S2_Epriority_ZNKSs7compareERKSs_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE7destroyEPvconnect_wctomb_ZNSt17moneypunct_bynameIcLb1EE4intlE_ZNSs4_Rep11_S_terminalEfopen_S_badbit_ZNSs7_M_dataEPc_ZN4sigc8internal8slot_rep10set_parentEPvPFS2_S2_Eadaptor_functor >unsigned int_ZN4sigc9slot_base7unblockEv_M_replace_facet_Exit_ZNSt6locale5_Impl19_S_facet_categoriesEwcstoullboolalphahas_denorm_ZNSs3endEvswap_GThreadFunctions_S_showposcallback_funcs_M_next_M_create_node_M_remove_reference_ZNSt6locale2id11_S_refcountEmerge__FILE_S_endget_allocatorsetSampFreqcond_signala_repsetSampNrlong unsigned intintlhas_quiet_NaNtm_isdstint_n_sign_posntransfer_ZNSt8ios_base5fixedE_ZNSt10ctype_base5graphE_ZNKSs6substrEmmlocale~slot_ZNKSs17find_first_not_ofEPKcmfixed_IO_read_base__int32_t_ZNSt10moneypunctIcLb0EE4intlE_ZN3Gtk6manageINS_10SpinButtonEEEPT_S3_wcstodconnect_notifyObject_IO_write_ptrcallback_list_LCDViewvisit_each, OsziView, true>wmemcmppoll_fds_ZNSs7replaceEmmPKcm_M_id_ZNSt6locale4timeEoperator!=_ZNKSs9_M_ibeginEv_ZNSt8ios_base10floatfieldE_ZNSt8ios_base9showpointE_ZNSt14numeric_limitsIdE12has_infinityESCALE_MEDIUM_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEvRKT_RKNS_15adaptor_functorIT0_EEtv_seccond_broadcast_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcmsetAdaptiveVal_unused2GTimeValvisit_each, void, MainWidget>mldfadaptor_base_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEEtm_min_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1_connect_impl_basic_stringSCALE_X_SMALL_ZNK4sigc9trackable27add_destroy_notify_callbackEPvPFS1_S1_Eadaptiveslot_ZNSt10__num_base11_S_atoms_inEnext~trackable_ZNSs4swapERSsint_frac_digits_ZN4Glib17SignalProxyNormal13connect_impl_EPFvvERKN4sigc9slot_baseEb_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEvRKT_RKNS_15adaptor_functorIT0_EE_M_disjunctvisit_each, sigc::bound_mem_functor0 >after_M_refcopyGType_S_floatfield_ZNSt6locale7_S_onceE_ZNKSs7compareEmmPKc_Rep_baseqsortoperator()Pangocodeaction___in_chrgeofbit_M_is_leaked_ZNSs4_Rep26_M_set_length_and_sharableEmsetScaleUS_S_id_collatetm_mon_ZNSt15_List_node_base4hookEPS_connected__off_tnone_ZNSs6insertEmRKSsinvoked__wch_ZNSt10ctype_base5alnumE_S_construct_pattern_GTimeValoperator++_ZN9__gnu_cxx3absExoperator+=_ZNSt10ctype_base5printE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5beginEvclosure_callback_ZNK4sigc18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEclERKS3__ZNSt10__num_base12_S_atoms_outE_ZNSs6assignEPKcdigitwcsncatslot1 >_ZNK4sigc15limit_referenceI10MainWidgetLb1EE5visitEvthread_create_ZNSt10ctype_base5cntrlEoperator--operator-=operator->_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv8OsziViewEEE7destroyEPvgetTriggervisit_each, sigc::bound_mem_functor1 >_ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEvexecute_reserved1allocate_ZNK4sigc12mem_functor0Iv8OsziViewEclEPS1_limit_reference_IO_write_endbsearch_IO_save_basetm_wdaycond_timed_waitsetTuningNorm_S_initialize_onceblockFILLadd_callbackn_sign_posn_ZNK9__gnu_cxx17__normal_iteratorIPcSsEplERKlgulongself__ZNSs7_M_copyEPcPKcmmem_fun_ZNSt6locale5_Impl19_M_remove_referenceEvSCALEGQuark_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE7reverseEvreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >__pfnferrorungetccondthousands_sepfreqs_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv8OsziViewEEvE7call_itEPNS0_8slot_repE_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKccopystrerrorskipws_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6uniqueEv_GSource_ZNSt6locale5_Impl13_S_id_numericEdup__ZNSt8ios_base10scientificEclosure_marshalgmtimeFrameGDestroyNotifyslot >trackable_callback_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6spliceESt14_List_iteratorIS2_ERS4_S6_uniquenew_allocatormem_functor0ctime_ZN9__gnu_cxx17__normal_iteratorIPcSsEpLERKl_ZN4Glib19glibmm_null_pointerEthread_set_prioritywcslenwcsncmp__compar_fn_t_ZNKSs7compareEmmPKcmtowctrans_ZNSs2atEm_ZNSt14numeric_limitsIfE10has_denormEchargot_bytes_S_refcount_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EEaSERKS4_vswprintf_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4rendEvsetlocale_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4backEvtv_usec/home/floh/gtkguitune_ZN4sigc5slot0IvEaSERKS1_failbitlengthSCALE_X_LARGE_ZNK9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE7addressERKS3__M_set_leaked_M_clonecapacityvsscanfoperator()with_type_pointer >_ZNSspLEPKc_ZNK4sigc15limit_referenceI8OsziViewLb1EE6invokeEv_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5emptyEv_ZNSt8ios_base9uppercaseEmbsrtowcs_S_begadaptor_functor >_ZN4sigc9trackable16notify_callbacksEv_ZNSt10ctype_base5spaceE_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE_ZN4Glib15SignalProxyBaseaSERKS0_limit_derived_targetslot_call1,bool,Glib::IOCondition>_ZN4Glib7ustring4nposELabelset_slotfgetsmutex_lock_ZN9__gnu_cxx13new_allocatorIcE7destroyEPc_M_cachesgraph_M_iend_ZN3Gtk6manageINS_5LabelEEEPT_S3__S_empty_rep_storage_IO_backup_base_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE8pop_backEvcallbacklocaltimewmemcpy_S_c_name_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2_slot1_S_id_timeGlib_ZNSt8ios_base3octE_S_binint_n_sep_by_spaceObjectBasevsnprintf_ZNSt17moneypunct_bynameIwLb1EE4intlE_IO_markerGSourceCallbackFuncs_ZNSs6appendEPKcmadaptor_functor_ZNSs6assignERKSsmmg_thread_functions_for_glib_usecheckfreopenclock_ZN10MainWidget13setTriggerValEd_ZNKSs7compareEmmRKSsi_pAdjSF_ZNSt14numeric_limitsImE6digitsEi_pAdjSNGNU C++ 4.1.2 (Ubuntu 4.1.2-0ubuntu4)_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2_lfreqswctrans_S_trunc_ZNKSs7compareEPKcnew_allocator_S_ios_iostate_end_ZNSs6resizeEmc~new_allocator_ZNSt8ios_base7goodbitE_S_default_patternGCond_ZNSt10ctype_base5alphaE_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE14_M_fill_assignEmRKS2_GCallbacknotify_callbackempty_ZN10MainWidget13setTuningEquiEv~trackable_callback_list_ZNSs6appendERKSsmmfeofIO_OUT_S_internal_cur_columnvprintf_M_facets_sizesigcreserveGTypeInstance_M_leak_ZNSs7_M_leakEvfp_offset_ZN4Glib12SignalProxy0IvE14connect_notifyERKN4sigc4slotIvNS2_3nilES4_S4_S4_S4_S4_S4_EEbfloatfieldfclose_S_unitbufright_ZNKSs15_M_check_lengthEmmPKc_S_inglobalpush_front__vtt_parm_ZNSs6insertEmPKc_M_length_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE8OsziViewLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEEunsigned charspacembstate_t_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE9_M_insertESt14_List_iteratorIS2_ERKS2__Ios_SeekdirfinalizefsetposhideLogView_ZNKSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE13get_allocatorEvsetScaleGE__normal_iterator, std::allocator > >tm_yearSignalProxy0internal_ZNSt15_List_node_base4swapERS_S0_fgetposnothrow_t_M_prev~adaptor_functor_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE7addressERS5_visit_each_type > >_ZNKSs13find_first_ofEPKcmadjustfield_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5mergeERS4_rewindmem_functor1_ZN4sigc19is_base_and_derivedINS_9trackableE8OsziViewE5valueEpositive_sign_ZN9__gnu_cxx13new_allocatorIcE9constructEPcRKcmem_functor0difftimevisitbound_mem_functor0_ZNSt6locale5_Impl13_S_id_collateE_M_replace_category_ZN4sigc19is_base_and_derivedINS_12functor_baseENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE5valueEvisit_each, MainWidget, true>unblock_ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEclEvcleanup_set_parentcollate_ZNKSsixEmalphaint_n_cs_precedescall_it_IO_buf_basename_ZNSs6appendEmcwcstofwcstokwcstol_ZNKSs16find_last_not_ofERKSsmsetScaleUSAlt_S_failbit__normal_iterator_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE3endEvsetTuningWien__normal_iterator, std::allocator > >_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5eraseESt14_List_iteratorIS2_ES6_tm_zone_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE_ZNK4sigc5slot1IbN4Glib11IOConditionEEclERKS2__ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEEinit_audio_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv8OsziViewEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EEsetbufdestroy__mbtowcfunctor_time_t_Alloc_hider_ZNSt14numeric_limitsIeE10has_denormE_M_insert_ZNKSs17find_first_not_ofERKSsmcontext_ZNSt6locale9_S_globalEmanageint_p_cs_precedestyped_slot_rep >_GPrivate_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE8OsziViewLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE_ZNKSs2atEmmon_grouping_ZNKSs4rendEv_ZN10MainWidget10getTriggerEv_offsetallocator_chain_old_offset_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE10deallocateEPS3_m~slot0cond_new_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE3dupEPvfpos_ttrigpossizeIO_HUP_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEES3_EEvRKT_RKT0__M_namessetDSPName_ZNKSs5rfindEcmCairoflags_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6rbeginEv_ZNKSs4_Rep12_M_is_leakedEvoperator[]_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6resizeEmS2_IO_INp_cs_precedeswint_tcapsmblenpop_frontdecimal_pointgpointerdispatchconnect_S_id_numericMainWidgetblocked_g_utf8_skip_S_ios_fmtflags_endtrig2_M_p_M_is_shared_M_set_length_and_sharable_S_hex_ZNKSs16find_last_not_ofEPKcmm_ZN4sigc10connection6notifyEPvvisit_each, void, MainWidget>_M_datasetAdaptiveoverflow_arg_area_ZNKSs8_M_limitEmmdenorm_presentfflush_M_dispose_ZNSs7replaceEmmRKSsmmdigits_shortbuf_S_goodbitn_sep_by_space_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE8max_sizeEvthread_joinstrtok_List_iteratorguint16~slot_repGSourceDummyMarshalvswscanf_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4sortEvshowpointdoublereallocwcsncpy_S_initializei_sampfmt_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE8allocateEmPKv_ZNKSs17find_first_not_ofEPKcmmvisit_each_type > >guint32_ZN4sigc9slot_base5blockEb_ZNSt8ios_base11adjustfieldE_ZNSs4rendEvG_THREAD_PRIORITY_HIGHfloat_denorm_styleparent_ldiv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE8_M_eraseESt14_List_iteratorIS2_E_ZN4sigc8internal23trackable_callback_list5clearEv_ZN10MainWidget13setScaleGEAltEv_ZN10MainWidget13setTuningPhysEvcond_waitAdjustmentmessagestdout_ZN4Glib15SignalProxyBase12data_to_slotEPv_ZNKSs4sizeEvlogview_ZNSt10ctype_base5punctE_ZNSt15_List_node_base8transferEPS_S0__ZNSs6assignERKSs_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEb10MainWidgetN4Glib11IOConditionEEEvRKT_RKNS_18bound_mem_functor1IT0_T1_T2_EE_ZNSs4_Rep8_M_cloneERKSaIcEmMarkup_ZN4sigc19is_base_and_derivedINS_12functor_baseENS_18bound_mem_functor0Iv8OsziViewEEE5valueE_M_put_nodeperror_ZNK4sigc12mem_functor1Ib10MainWidgetN4Glib11IOConditionEEclERS1_RKS3__S_left_ZN4sigc19is_base_and_derivedINS_9trackableE10MainWidgetE5valueEfind_first_not_of_ZNKSs13get_allocatorEvlocaleconvuninit_audio_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE13get_allocatorEv_M_mutatebegin_S_construct_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4swapERS4__S_facet_categoriesp_sign_posnlimit_reference_ZNSt8ios_base6eofbitEslot1_ZNSs4nposE_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE5valueE_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEEEvRKT0_RKT1___gnu_debug_defhideOszi_ZNSs4_Rep10_M_refcopyEvvalue~MainWidget_S_uppercasegroupingmessages_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE5frontEv_ZN10MainWidget11showLogViewEvaddresslconvbasic_string,std::allocator >_ZN10MainWidget14setSampFreqValEiContainer_Helpersnpos_ZNSs14_M_replace_auxEmmmcnew_allocator_ZNSt10moneypunctIcLb1EE4intlE_ZNKSs6_M_repEv_M_clear_ZNK4sigc9slot_base7blockedEv_List_node_baseglibmm_null_pointer_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6insertESt14_List_iteratorIS2_ERKS2__ZNKSs6rbeginEv_ZNSt14numeric_limitsIdE10has_denormEreplace_ZNSs4_Rep15_M_set_sharableEvGThreadFunctionsmanage_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE4rendEv_M_refcount_ZNSs4_Rep9_S_createEmmRKSaIcE_vtable_offset._17._18._19_S_atoms_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4__M_implvwprintf._21._22clearerr_GTypeClass_ZNSt6locale5_Impl11_S_id_ctypeE_S_id_ctypecallback_list_S_skipws_ZNK4sigc12mem_functor0Iv10MainWidgetEclEPS1_allocatorreverse_iterator >_ZNSs13_S_copy_charsEPcS_S__M_nodeaudio_fd_ZNK4sigc8internal14slot_do_unbindclEPKNS_9trackableElong doubleinvoke_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6rbeginEvwctob__va_list_tag_ZNKSs8capacityEv_ZNSt8ios_base6badbitE_ZNKSs4dataEvfacetmoney_basetyped_slot_rep_ZN4sigc10connectionaSERKS0_wcsftime_ZNKSs8max_sizeEv_ZNSt8ios_base9basefieldE_ZNSt10ctype_base5digitE_A_type_ZNSs6insertEmRKSsmmG_THREAD_PRIORITY_LOWcall__func_destroy_notify_ZN10MainWidget11setSampFreqEv._91connect_notify_typed_rep_ZNK4sigc15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEclEv_ZNKSs12find_last_ofEPKcmmdestroy_ZNSs5eraseEmmvisit_each_type > >_ZNSt6locale5_Impl16_M_add_referenceEvSignalProxyNormal_M_add_referenceGSourceFuncs_ZNSt10money_base8_S_atomsETableshowposblocked_S_eofbit_M_capacityaudio_connection_ZNSt14numeric_limitsIeE13has_quiet_NaNEFILE_fileno_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEEEvRKT0_RKT1_classic_ZNSt10moneypunctIwLb1EE4intlEguitune.cc_M_get_node_ZN10MainWidget12setSampNrValEitrig1_ZNKSs3endEvtmpnamvfunc_table_setTuningEquinote_ht__invalid_size_argument_for_IOCslot0 >showbaseslot_rep~typed_slot_rep_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE9push_backERKS2__ZN4sigc8internal8slot_rep6notifyEPvfseek_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6insertESt14_List_iteratorIS2_EmRKS2_ptrdiff_twmemmovecall_wcrtombclearmutex_trylockfputwcguintnumeric_ZNSsaSEPKc_ZN3Gtk6manageINS_5TableEEEPT_S3_visit_each, sigc::bound_mem_functor0 >IO_ERR_ZNK4sigc12mem_functor0Iv8OsziViewEclERS1__GSourceCallbackFuncs_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6spliceESt14_List_iteratorIS2_ERS4_S6_S6__ZN4sigc10connection8set_slotEPNS_9slot_baseE_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE9constructEPS5_RKS5__M_replace_safe__state_ZNSt10moneypunctIwLb0EE4intlEtrackable_ZNK9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE8max_sizeEvGTypeClassmanagemax_sizesetSampFreqValwcscollIO_PRI_ZNK9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE7addressERS3_unhook_ZN3Gtk6manageINS_11CheckButtonEEEPT_S3__ZNSs7_M_moveEPcPKcm_ZNSt8ios_base2inE__time_tbound_mem_functor0glong_Impl_A_action_ZNSt10ctype_base5lowerEbound_mem_functor0private_newdata_ZNSs6resizeEmOsziViewtyped_slot_rep >emission_stop_flags2_flags_ZN4sigc8internal10slot_call1INS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEbS5_E7addressEv_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv8OsziViewEEE3dupEPv_S_atoms_outSCALE_SMALLwmemchr_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE9pop_frontEvmutex_freesetTuningPhyssigned charsampfreqlong long unsigned int_S_id_monetaryvisit_each, sigc::bound_mem_functor1 >_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEEEEvRKT0_RKT1__ZSt7nothrow_ZNKSs16find_last_not_ofEcmlimit_derived_targetnothrow_ZNSs4_Rep20_S_empty_rep_storageE_ZNSt17moneypunct_bynameIwLb0EE4intlE_ZNKSs4copyEPcmmbasefieldtm_mdayxdigitbadbit_ZN4Glib17SignalProxyNormalaSERKS0__ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE10push_frontERKS2_slot_base_ZN10MainWidget10setDSPNameEPKc_M_fill_insertGMainContext_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2__ZNKSs13find_first_ofEcm_Ios_Openmode_ZNSs6appendEPKc_S_cur_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7call_itEPNS0_8slot_repE_ZNKSs4_Rep12_M_is_sharedEvvscanfreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZNSt6locale8monetaryEdomain_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_inegative_signshort int_ZNSs12_S_constructEmcRKSaIcEwctype~SignalProxy0find_last_not_of_ZN10MainWidget14setAdaptiveValEipop_back_S_copy_chars_ZN10MainWidget12setTuningNatEvsource_id_ZNK4sigc10connection9connectedEvdsp_devicenamevisit_each_type > >rbeginstrftime_ZN4Glib17SignalProxyNormal13emission_stopEvmon_thousands_sep_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalElfreq_htwcscat~slot1_ZNSt6locale7classicEvnfreq_0t_ZN10MainWidget13setScaleUSAltEv_ZNSt6locale8messagesEactive_ZNSt8ios_base7showposELogView_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1__ZNK9__gnu_cxx13new_allocatorIcE8max_sizeEv_ZNK9__gnu_cxx17__normal_iteratorIPcSsEptEv_ZNSt6locale21_S_normalize_categoryEi_ZNSt6locale7collateE_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EEscientificsetvbufGSourceFunc_S_global_List_base >_ZNSs6insertEmmc_ZN4sigc8internal23trackable_callback_list15remove_callbackEPvthisassignSCALE_XX_LARGEputc_ZNKSt4listIN4sigc8internal18trackable_callbackESaIS2_EE8max_sizeEvSpinButton_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEEEEvRKT0_RKT1_private_getsetScaleGEAlt_ZN4sigc8internal10slot_call1INS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEbS5_E7call_itEPNS0_8slot_repERKS5_slot_call0,void>_S_adjustfieldfind_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE3endEv_IO_read_endwcschrclearing__IO_FILEwcsrchrdenorm_indeterminatereversepattern_ZNSt8ios_base7failbitE_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5_lldiv_ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1_GPrivateslot0_void_callbackstrtoll_ZNSt6locale4noneEswscanfwcscspn_ZNK4sigc9trackable13callback_listEv_ZNK8OsziView8get_freqEvwcscmpmanagesetTuningNat_S_max_size_lockmanage_ZNSs12_S_empty_repEvvisit_each, sigc::bound_mem_functor0 >_S_showbase_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEb10MainWidgetN4Glib11IOConditionEEEvRKT_RKNS_18bound_mem_functor1IT0_T1_T2_EEvfwscanf_ZNKSt6localeneERKS__ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6assignEmRKS2__ZNSs5beginEv_ZNSs13_S_copy_charsEPcPKcS1__ZN4Glib17SignalProxyNormal8connect_ERKN4sigc9slot_baseEb_S_normalize_category_ZNSs6rbeginEv_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE6removeERKS2_wcstoldSCALE_LARGEwcstollwcsxfrmtimeleftprevwcscpy_ZN4sigc19is_base_and_derivedINS_12adaptor_baseENS_18bound_mem_functor0Iv8OsziViewEEE5valueE_M_assign_ZNSs6assignEmc_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE7_M_initEvslot0new_allocator >freqview_A_arg1rename_A_functor_ZNK4sigc10connection5emptyEv_GTypeInstance~allocator_ZNKSs8_M_checkEmPKcnote_0tqdatanotify_callbacks_ZN4Glib12SignalProxy0IvE7connectERKN4sigc4slotIvNS2_3nilES4_S4_S4_S4_S4_S4_EEb_ZNKSs12find_last_ofEPKcm_S_fixed_GDatambstowcsG_THREAD_PRIORITY_URGENTwcspbrkreverse_iterator >_ZN4sigc19is_base_and_derivedINS_12functor_baseENS_18bound_mem_functor0Iv10MainWidgetEEE5valueEmem_fun_ZNSt15_List_node_base7reverseEv_M_refdata_ZNSs9_M_mutateEmmmtm_gmtoffsamplefunc__sbufIOCondition_ZNSs4_Rep11_S_max_sizeEi_pAdjTRstrtoullfwprintflong int_ZNKSs7_M_dataEv_M_initoperator|_ZNSs4_Rep13_M_set_leakedEvgcharwctrans_t_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiERKl_ZN10MainWidget10setScaleUSEv_ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7addressEvthread_exit_ZNKSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE19_M_get_Tp_allocatorEv_Atomic_wordmem_fun_ZN4sigc8internal17with_type_pointerILb1ENS_9trackableENS0_20limit_derived_targetIPS2_NS0_14slot_do_unbindEEEE8execute_ERKS2_RKS6_with_type_pointer >allocator_ZNK9__gnu_cxx17__normal_iteratorIPcSsEixERKlSHRINKwprintfvisitedthread_yieldfloat_ZN10MainWidget12uninit_audioEv_List_impl_M_rep_ZN10MainWidget9setSampNrEvmbrlen_ZNSs9push_backEcupperGThreadFunc_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv8OsziViewEEEEvRKT_RKNS_15adaptor_functorIT0_EE_Repputchar_Ios_Fmtflags_M_replace_auxrandresize_ZN4sigc9slot_base10disconnectEvsample_uc_ZNSt6locale2idaSERKS0__next_ZNSt14numeric_limitsIfE12has_infinityE_ZNKSs17find_first_not_ofEcm_ZNK9__gnu_cxx13new_allocatorIcE7addressERc_ZNSt4listIN4sigc8internal18trackable_callbackESaIS2_EE14_M_fill_insertESt14_List_iteratorIS2_EmRKS2__ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE7destroyEPS5__ZNSt8ios_base4leftE_ZNSt8ios_base3outE_ZN9__gnu_cxx13new_allocatorIN4sigc8internal18trackable_callbackEE7destroyEPS3__ZNK4sigc9slot_base5emptyEvlist >_ZNSt8ios_base5rightE_ZNSsaSERKSsg_class_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv8OsziViewEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE_M_coalesceGMutexslot >functor_base_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEES3_EEvRKT_RKT0_c_strdenorm_absentgot_samples_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4___count__value_M_replace_categories_ZNSt6locale7numericE_ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE7destroyEPvfgetwc_ZNSs6assignEPKcm_ZNSt10money_base20_S_construct_patternEcccfgetws_ZN4Glib17SignalProxyNormal15connect_notify_ERKN4sigc9slot_baseEbint_p_sign_posn_ZNKSt6localeeqERKS_slot_tm_secalnum_ZN10MainWidget8hideOsziEv_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN4sigc8internal18trackable_callbackEEE8allocateEmPKv_ZN3Gtk6manageINS_5FrameEEEPT_S3_goodbit_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E_S_ios_seekdir_enddeallocate_ZNK4sigc12mem_functor0Iv10MainWidgetEclERS1_pthread_once_t~slot_baselimit_referencestrcoll_ZNK4sigc15limit_referenceI10MainWidgetLb1EE6invokeEv_ZNKSt6locale2id5_M_idEv_ZNSs4_Rep12_S_empty_repEvmon_decimal_point_ZN9__gnu_cxx17__normal_iteratorIPcSsEmIERKl__off64_tunitbuftrig_ZNSt8ios_base8internalEwscanf_ZNSs7replaceEmmRKSsnotify_S_showpoint_IO_lock_tvisit_each_type > >_ZNSt8ios_base3hexE_ZN4sigc8internal8slot_rep7destroyEvvisit_each, bool, MainWidget, Glib::IOCondition>_ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv8OsziViewEEEEvRKT_RKNS_15adaptor_functorIT0_EEstring_M_transferlong long int_ZNK4sigc5slot0IvEclEv_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs_ZNSs5clearEv_ZNSs9_M_assignEPcmc_ZN4sigc19is_base_and_derivedINS_9trackableES1_E5valueE_ZNSspLEc_ZNSt10_List_baseIN4sigc8internal18trackable_callbackESaIS2_EE8_M_clearEv_ZNKSs12find_last_ofEcmdisconnect_S_decslot_call0,void>GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4).symtab.strtab.shstrtab.rela.text.data.bss.debug_abbrev.rela.debug_info.rela.debug_line.text._ZN3Gtk6manageINS_5LabelEEEPT_S3_.text._ZN3Gtk6manageINS_5TableEEEPT_S3_.text._ZN3Gtk6manageINS_10SpinButtonEEEPT_S3_.text._ZN3Gtk6manageINS_11CheckButtonEEEPT_S3_.text._ZN3Gtk6manageINS_5FrameEEEPT_S3_.text._ZN4sigc8internal10slot_call1INS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEbS5_E7call_itEPNS0_8slot_repERKS5_.text._ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEclEv.rela.text._ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv10MainWidgetEEvE7call_itEPNS0_8slot_repE.text._ZNK4sigc15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEclEv.rela.text._ZN4sigc8internal10slot_call0INS_18bound_mem_functor0Iv8OsziViewEEvE7call_itEPNS0_8slot_repE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEES3_EEvRKT_RKT0_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE8OsziViewLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv8OsziViewEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv8OsziViewEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEEEEvRKT0_RKT1_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEEb10MainWidgetN4Glib11IOConditionEEEvRKT_RKNS_18bound_mem_functor1IT0_T1_T2_EE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_12slot_do_bindEEENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal12slot_do_bindENS_15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEEEvRKT0_RKT1_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEES3_EEvRKT_RKT0_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE8OsziViewLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv8OsziViewEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv8OsziViewEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv8OsziViewEEEEEEvRKT0_RKT1_.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEE10MainWidgetLb1EEEvRKT_RKNS_15limit_referenceIT0_XT1_EEE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEv10MainWidgetEEvRKT_RKNS_18bound_mem_functor0IT0_T1_EE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor0Iv10MainWidgetEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor0Iv10MainWidgetEEEEEEvRKT0_RKT1_.rela.text._ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE7destroyEPv.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEEb10MainWidgetN4Glib11IOConditionEEEvRKT_RKNS_18bound_mem_functor1IT0_T1_T2_EE.rela.text._ZN4sigc10visit_eachINS_8internal20limit_derived_targetIPNS_9trackableENS1_14slot_do_unbindEEENS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEvRKT_RKNS_15adaptor_functorIT0_EE.rela.text._ZN4sigc15visit_each_typeIPNS_9trackableENS_8internal14slot_do_unbindENS_15adaptor_functorINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEEEEEvRKT0_RKT1_.rela.text._ZTv0_n32_N10MainWidgetD0Ev.rela.text._ZThn16_N10MainWidgetD0Ev.gcc_except_table.rela.text._ZTv0_n32_N10MainWidgetD1Ev.rela.text._ZThn16_N10MainWidgetD1Ev.rela.text._ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE7destroyEPv.rela.text._ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv8OsziViewEEE7destroyEPv.rodata.str1.1.rodata.cst8.rodata.cst16.rela.text._ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor1Ib10MainWidgetN4Glib11IOConditionEEEE3dupEPv.rela.text._ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv8OsziViewEEE3dupEPv.rela.text._ZN4sigc8internal14typed_slot_repINS_18bound_mem_functor0Iv10MainWidgetEEE3dupEPv.rela.rodata._ZTV10MainWidget.rela.rodata._ZTT10MainWidget.rela.rodata._ZTC10MainWidget0_N3Gtk5TableE.rela.rodata._ZTC10MainWidget0_N3Gtk9ContainerE.rela.rodata._ZTC10MainWidget0_N3Gtk6WidgetE.rela.rodata._ZTC10MainWidget0_N3Gtk6ObjectE.rela.rodata._ZTC10MainWidget0_N4Glib6ObjectE.rela.rodata._ZTC10MainWidget16_N3Atk11ImplementorE.rela.rodata._ZTC10MainWidget16_N4Glib9InterfaceE.rela.rodata._ZTC10MainWidget128512_N4Glib10ObjectBaseE.rodata._ZTS10MainWidget.rela.rodata._ZTI10MainWidget.rela.debug_frame.rela.eh_frame.rela.debug_loc.rela.debug_pubnames.rela.debug_aranges.rela.debug_ranges.debug_str.comment.note.GNU-stack.groupH@HHHPHXH`HhHpHxHHHHHHHHHHHHHHHHHHHHH H(H0H8H@HHHPHXH`HhHpHxHHHHH,HH3 1X :0&x3,x31x3DI<h?x5UP 7a670+ ` h@qp+ C)$0EG= 8I K M (O0  @Q]@  XXSP  pUp  W_   Z Y%   [   ]M  H _    a    c:  5 0e   Hgv  q`i0  xk@ mg` +bo  q  zsG Bu  w   y? V Q8|} xP~+h +p2KY pjpeH`   0@ (!/` *8)_  ZH1 `# h8  $ 9$ x:% ;M &p Hp<& &=H&H`=P /J67HR g\nh&օp`0$0/P0*8z0z0OPv@) 40234579:;<=>?@BCEGIKMOQSUWY[]_acegikmoqsuwy{|~ "( .(40:P@8F@LHRXX`^hdpjxpv|      !"#$%&'()*+,-./"9": ";3"<\"=~">7"?+B"@ "B+"C D"E"G"I 4"K "Me"O"Q "S 4"U"W n "Y ) "[ "]; r "_ "a "c > "e "gd"i "k "m4"o+"q 6"s "u0,"w "y '00;!Le!v"| "~ 0 00P?c0p 0 0 $0 F0b00 0 (0  G00 bx0@ 0P0p00,0Lj00.330 .0P. "+"+03;OUfo"(.E0 cjouz3JPW\0 |0 .""a00 Iu 2Vs"6`9Yt0!  2 J d    !6!]!!!!"N"u""""#Y####)$\$$$%@%t%%%&C&&&'?'|'''$(b((()]))*I***<+`+++ ,-,T,z,,,,-E-}--.Y...../!_d lx }$08|>EnuLMNOHR 2%_nPQ 2% 2 2M # 2+/ 7 C e k 2E 2P   2h  2x    3 A L  X ]           2  2  2 " 2/ 8 2E N 2[ d 2q    2     2  1 G O 2 V m w           T ` m          */ 24 ;CRKSY 20 !" 20* C!MtT|UVW"TXY"Z[T\"[#h 21p$z%#&#+ 273$=M%U#&# 2=$'& 7(DQcx 2E$%#& )Q#^ 2If$p%#&)7#D 2ML$Vf%n#&) #- 2S5$?O*^&j## 20$!%)i#q&#!+  : K[ t y,-./   -= Y ^,n-./   % G L,\-o.w/   0 9 >,N-a.iq/y   0  + 0,@-S.[c/k     1.-A.IQ/Yz/   19&Rq& & - [ ` 2e  l t ]| ^     !! ! 20(! A!!K!S! 20[! t!!~!!_!`!a!b!"!!_!c"d"""#"e."f6"_B"gG"""#" 21"$""%"## #&O##\# 27d#$n#~#%####&$#$ 2='$$1$?$'G$&Q$h$(u$$$$ 2E$$$$%$%#%&%%:%)B%%#% 2I%$%%%%%#&& & &)(&h&#u& 2M}&$&&%&&#&&& ')'Q'#^' 2Sf'$p''*'&''#'#(#0( 208($B(R(%Z((#(&(#(!)+)#)7) ?) k) |)) ) ),)-).))/))** !* M* ^*n* * *,*-*.**/**** + 2+ C+V+ x+ }+,+-+.++/++++ + ', 08,K, j, o,,,-,.,,/,,,, , - 0*-=- \- a-,q---.--/---- - . .(. J. O.1_.-r..z../..../.../7/a0i0&00000&Pb(8H]}Jz *    JB J1h! Jp<& J1 J)8 JF? JF JO(M JoT Jt[ Jn*m J}t J2 J J) J Jm J{; J! JO Jp J% JϏ JiT JHZ Jd JXl J|r JɌx JU J_ JO JT JO Jt J7 J.* J JS JW J‚ JT JD J[ J Ju  J J~$ J + J(2 Jb9 JEA J^I J{P JW J1^ JfTk JZss J'y JX JA JE JQ  JeC Jj  J# JU J' Jg JL JC JKG J> Jys Jj) J) JZd/ J%|8 JI J`O JQU J![ J$e Jyk J} Jmc J J֊ JuV JI Jc J Jq Jhq J  J^ J$ J E JnVa J 9y Jx Ja J  Jb J  Jb J  J;B Ja JOt J W JT JY J^6 J# JU% JXB JT_ J҂ J JO J1 J J'W J# J5 JW Jay Jr Jl Jz' J J2 J J`" JG( J6M. JC4 J@ J|] J u J>} Jk J Jh J Jc J( J( JWg7 J{@ JnO J^ J{m J`*| J J* JP6 JhL J Jf6 J@ J J  JQ J\g! Jn0 JQ? JEO Ja_ JUo J} J}Q JD JK JR JY J` J JW- Jc)  JS J' Jdb/ J2: JF J$T J,g Jibo J%} J>l Jd J JZE J{U JS J JA J J7  Jx= J}RM Jnbg JE~ JD JF8 JU Jv  JyH J=@" J'> JAe J{B Ji JaG J~ JE J  Jn% J[9 JyV Jm J Jځ JI JO Jx J! J{h JM85 JEW JOz J Js JA J/= J_  JT JY8% J_3 J A JO Jz] Jvk JDQy JDJ Jt J/ J JS J JB  JU J0] J6 JLP JM ! JNL/ JA= JDK J)_ J<w J[\ Jo J. J  JBr JW2 J2H Jt6 Jm J) J  JM/ J; JBL JJh J J Jd  J: J9 J$A JTv6 JFF J&^ J| J Jj J  J  Jt J1 JE JW J J J Jv> J  Ju% JH JY}f J J & JK J; JV J[b- JJ Jjl Jv J} Jl J Ja} Jd J ;6 J4W J;x J/W Jy  J! J* JL" JLC JLe J J J d Jr+ J.A Ji& JH JKa Jz J{ J J| J8% Jo  J) JK J( J}: J}: JC Jx_ JO Jx_ J>  J 6 J0 J6 J R JlX Jwn J t JRJ Je JN@ Jb Jb J7 JC Jօ` J_g J]r J* J1 J JgU J JgU J' J JM` Jv J+! J@! J\.! JBE5! JJEH! JO! J$p! Jw! JE! J! JU! J0! J! J9! J 7" J " Jm*" J1" JM" J_uT" J@Ap" J_uw" J" J_u" JQc" J_u" J" J\" J # J # J~## J # J}/# J*/D# J*/]# J*/v# J*/# J*/# J*/# J*/$ J*/%$ J @$ J G$ JIb$ J i$ J2j$ J $ J$ J\$ J$ J\$ J% $ J(% Jnh% JMv!% J+7% JMv>% JaT% J[% JXq% Jx% JQQ% JR% JY% J<% J% Jl% Jd% J% JC& J& JAn&& J&=-& JdC& J,EJ& JKa& J jh& Jz& JD& J& JS& J=L& JS& J#& J8Q' JJ;' J 3$' J#?' J 3F' J=a' J 3h' J' J' J' J' JD' J' JB' J' Jhs( J!( JzLA( JH( JÇ_( Jye( JOZ( Jy( JAB( Jy( J( Jy( J3( Jy( J ) Jk #) J D) Jk K) J2k) Jk r) Jd) Jk ) J) Jk ) J F) Jk ) Jky* Jk "* JB* JI* Jei* Jp* JN* J* J s* J:a* J* J:a* JU+ J:a+ J+E+ J:aL+ J` q+ J:ax+ J+ J:a+ JJ+ J:a+ J -+ J:a, J8+, J:a2, J!\, J:ac, Jew, J:a, Jb, J:a, JC, J:a, JE| - J'- J_R- J.lY- J - J\- Jt- J9- J'r- J(- J/- JÌ- J%. J JS> J.> J 35> J:P> J W> J6r> J4y> J> J > JՄ> J> J? J)? JH%? J(+? JVHA? J)G? J(Zc? J|i? J{? J? J^2? JZm? J? JV? JXX? JC? Jń? Jm? J? Jq ? J6@ J$j@ JT@ J9D@ J`-T@ J2]@ J,l@ Jh<@ Jw7@ J@ J@ Jt@ J1@ JY@ Jۇ@ JLeA JdA J_ A JXA JۂA J%A JD0A J6A J!}AA JPGA J`aVA J(^A Jt#lA JC@zA JjA JA JoA J"RA J)A J,A JYA J|6A JdA J0nB JzB J"B J40B J[>B JbVMB Js\B J:kB JzB JC JC J˂C J D JD JH JCH J(H JH JwH JRH J+I JK JaZTK J6p[K J:,qK JwK JdgK J!7K JK JK JeK J1K J:9L J}:ML J}:fL JCL Jx_L J mL Jx_L J<L J 6L JOWL JL JQ M JlM Jol&M J ,M J DM JeJM JjM JbM JbM JN J}:N J}:3N JCMN Jx_SN JHnN Jx_tN JN J 6N JN JN JN JlN JVN J N JkO JeO JxO JbO JbO JO JSbO JR JRR JS JlS Jy0S J6S JSRS JYS J_oS JvS JS JS J)<S JS J-S J FS J|rS JTS JoS JT JiT JVu"T J@4T Jk :T J`ZT Jk aT JiT JT JT JT JMT J(T J\T J jT JU JU J^$U J+U J:LU JSU J8kyU JU J:U Jv:U J9U J])U JIU J|U J~7U JU JVU J#V J/DV Jr&V J{HV JOV JqV JOxV JFV J V JXV JtV J{V J6V J&W Jf W J|y7W J j=W J5YOW J_W JDW J*W JelW JelW J W JzW J/X J X JE/%X J+X JXBX JGHX J>VX Jb\X Ji}X JHX J-X JX JiX J# Y J9Y J!L%Y JX8Y Jh[Y JVuY Je{Y JY JY J*LY J'Y JLY JQY JY J`iZ J&Z J;Z J1AZ JqZ JZ J!Z J1Z J~cZ JZ JQTZ Jr[ Jr([ JrA[ Jޏ[[ Jba[ J^&w[ J*L}[ J[ J [ J[ J[ J=#[ JD[ J[ Jf[ Jf`\ J6\ J`X6\ JK=\ J\(S\ JLZ\ Jh\ J o\ J\ Ji\ J\ J\ J ] J ] Jtd*] J#D] JDJ] J`] J~2f] Ju|] Jf] J ] J6] J)] JK] J] JL] J] Jb] JJ ^ J^ JT ^ J4@&^ Jky^ J&^ JA^ JD^ JJ^ J^ JX ^ JY^ J ^ JP?D_ JX_ J!r_ Jnx_ J]v_ J*}_ J_ Jf_ Jq'_ J_ JQe_ J` J/` J/;` J A` JXr` J1` J3` J` J` J ` J<a JRa J~ /a Jh}a J/a J/a J9a J5*a J b Jb J[b JD!b J6(b Jf.b JY4b J:b J.@Eb JqaKb J@`b J}fb J>jvb Jzb J4Pb J*b Jlb Jamb J9b J}b Jb Jb J1b Jq7c J( c J7//c JoDc J-,Yc Jnc J<c Jyc J(Sc JPnc JTc J}c J]wc J*c J?%d JI#d JI2g Jg JLg Jwg JGg Jsg Jzg JhYh J h Jh J^ h J|2h Jj8h JY_Jh JiGPh J%bh J!5hh J_Q~h Jlh J_h J)h J-eh Jh JHhh J)h Jh Jh Ji Ji JBi JoU#i J5i JH-;i J4uRi J SXi Jroi Jvi J i JNi Ji Jf\i Jni JSj J2j J@6-j JJ3j JQ4Ej JcKj Jj JJj Jj Jj J1j J3&k J1-k JNHk JA]k JAwk J ~k Jw&k Jvk J 4k J/l J/+l JAl J5*vl J l J0Tl JXl J*l JdEl Ju m J?% m JJ4m JJMm J1Sm Jbfm J1lm Jm J@8m JI m JJm JJn JJ.n J15n Jin J?%}n JJn JJn J1n J6n J1n Jjn J@8n JI Do JSSo J2go J@6o JJo Jo Jco J=o JJo JJp JJ/p J16p J[!jp JgUp JOp J1p Jkep J1Bp J1Bp J7=q JHPq JOcq Jed|q Jedq Jiq Jeq J'q Jq J`Lr Jzr Jx_!r JnGr JOZr J1`r JKrr J1Br J1Br JHr JOr Jeds Jeds Ji5s Je;s J`Rs J+Rs J`Ls Jss Jx_s J!s JOs J1s J#s J1Bt J1Bt JHSt JOft Jedt Jedt Jit Jet J4t J.ou J`Lu Jm8u Jx_u J2u J1Eu J+Zu Ju J1u J+u Ju J5u J v J5v Jv Jyv Jyv J v Jyv J|v Jyw Jw J -w Jy7w J Rw Jy\w Jhw J w Jyw J w Jyw J|w Jyw Jw J x Jy!x Jy;x JyUx Jd`x Jmx Jyx Jdx Jyx Jyx Jmx Jyx Jy JyEy JyZy Jydy Jy Jyy Jy Jyy Jdy Jmz Jyz JdF,N F S Jy\ F2 q Jy{ J1 JF0 Fh F ć̇ԇ F$ ݇ F F F  F FNP#f/ Jy8 F= J/G FUp]e Fj Jys Fx J>w FK Jy Fn J^ Fʈ҈ވ Jy F JC F  Jy! F& Jp0 F>FN F@S Jy\ Fxjrz F Jy F  Jy FɉՉ Jyމ F? , Jy Fb0<+ Jy4 FB@JLV Jy_ FmPua Jy Fp Jy FÊˊ׊ Jy F Jy F4!- Jy6 FWDLX Jya Fzow Jy F N Jy FŋP͋~ً Jy F Jy J100+! F& J5 J7D0L0j Jyt J111+ Fa J F [ c s F i J# F Jk F' u ‘ JS̑ Fsܑ     F " 7 ? O F_ g o F+t Jy} Fc JuL F . F Jy FȒ Jy66 F= J IU I`r I F^1 I F,2:+B+ץ+ߥ+++++0+8+H FO2X I o Ip++++Ц+ئ+ Fr2 I F3 I6 F3@/,H7,cs,k,,,,,,ħ,ԧ F 4 I0 I, ,:,B,\,d,t F.4 I F4 I¨ Fk5̨!-Ԩ)-e----+-3-H-P-` F5p I@ Ip I Iө I  Ip F5 I( F362 .:.US.]v.t~.|..... FV6Ϊ.֪..... Fy60.8.L.T.c F6s/{W//./ F6W//ҫW/ګ/ F7////, F+7</D*0X/`*0o FN7z*0U0*0U0 Fq7 Jhά Jz ܬ JY JUB J JZT J!" J0 J? JhM Jz [ JYi JUBw J JZT J!ǭA J`G J:W Jq] Jhqi JUp JB} J J J) J J( JU; J J,ͮ J)Ԯ J.$ J( Ja J Js J) J.g J($ JO1 J_8 J]D J}J JIU JG[ J'f J@l Jqw J_~ J J} JR JG Jv JO J` J*jï JJϯ J5Lկ J x J J+ J Jt J_ J'w J  Jj? J6AF J W Jb^ Jbj J8Tq Jc9} JI2 JJ JA J8 J'p J JC JR ɰ J]а J( J( J JP JZ* J)% J2 JMH9 JАF JM JAa JAn JEu J3 Jx J9 Jh J JW J+ Jfȱ JEwֱ J9ݱ J JÐ J< J"  J\> JI J{X) J8r0 Jd= JED J+W JQr^ J/dk J2r J]] J< J-| J JC JmƲ JV߲ J JՇ J Jr Jm JHL JD( J3. Jd< JJrB JP JFV J>d JKj J3x J@~ J* J J4 J JZ Jv J2ó J}oʳ J3ճ Jܳ J/ JC J J b Jf J) J.` J)$ Jx*/ J)6 JhA J)H JFlS J)Z JFe J)l J'w J)~ Jr J) JA J_ J@ Jh Jƴ J^̴ J[ش J^޴ JJ J^ J] J^ JJ J^ J J^& JG2 J^8 JD J^J J1[V J^\ J     [  2 W m       * @  V !l " # $ % & ' (3 )I *n 015967   ,,  +7 C +7 C +7 C 3 (0485@6H7P8X9`:h;p<x=>?@ABCDEFGHIJKLMNOPQ R(S0T8U@VHWPXXY`Zh[p\x]^_`abcdefghijklmnopq r(s0t8u@vHwPxXy`zh{3|3}~     ( 0p8@ H PpXx`h@px@ (0485@6H7P8X9`:h;p<x=>?@ABCDEFGHIJKLMNOPQ R(S0T8U@VHWPXXY`Zh[p\x]^_`abcdefghijklmnopq r(s0t8u@vHwPxXy`zh{|}~ (0485@6H7P8X9`:h;p<x=>?@ABCDEFGHIJKLMNOPQ R(S0T8U@VHWPXXY`Zh[p\x]^_`abcdefghijklmnopq r(s0t8u@vHwPxXy`zh{|}~ (0485@6H7P8X9`:h;p<x=>?@ABCDEFGHIJKLMNOPQ R(S0T8U@VHWPXXY`Zh[p\x]^_`abcdefghijklmnopq8@HP|}~ (0485x}~ (hpx}~ (0|px}~ (hpx}~8@HP}X~`h D < D@ \ D` | D D D D D  D$ D(< D@T DXl Dp D D D D D D$ D(< D@T DXt Dx D D  D! D" D#  D$$ D(%< D@&\ D`'| D( D) D* D D0 D< D@d DhP| Dp D D D D D$ D(< D@T DX l Dp0 D@ DP Dp D D D D, D0D DH \ D`Pt Dx0 D1 D D5  D < D@ \ D` | D6 D7 D0  D ( H h   ( @ X p        0 H ` x   ! " # $ %  &8 'P (h ) *  0 -  -   -@( P@ p` x        0 0H @` Px p         P8 0P 1h  5 -W   -u     6) -@ 7I -` 0 i -  -l8@ K Sn v             ' / J R ^ f             & . : B 7^ f ,  )  /(+ 08(S[+v~8@ [c~  'BJem  (0LT ow  &2:V^ y  ; C ^ f !! !!""""" " " "* "E #M #h #p # $ $ $ $ % % % % & &+ &3 &O &W & r &z & ' ' ' '+ ' ' ( (  ( (6 )> ) Y )a )| * * * * * * * *    ,2 :  E  M +h 0p 1| 1 2 2 9 9  0 X X     $ , 8 @ L T ` h     N T     F   +3FNVait|FPYP]pqqp{({0KSnv%@HT\x$?Gb j'07@GPWpw4<W_z 'PW000"0+>0F0a1i1u1}1+11  19DLHWL_ zIA2  /L'V2:E%M'XA`dks~!0y  %!& . IQK\Ld LL5555 5(535;5F5N5Y5a5|5'5555$5555*5/ 555&51595T \ h p |     + +   ' '   ~   ) 1 < D _ gf r{ z        i {  ' / ; Ci O{ W s {  i {          + 3 ? G c k v ~        .    ") =6E6Q6Y6u6}66666666'6666$66"6=6*E6/`6h6s6{66677777777777"7=7'E7P7X7s7${7777*7/7777770 2 )2 1; =; E= Q= Y? e? m@ y@ G G N N y0 F F foy  n" t* b5 b= H UP ek 's T~ t         &  b b !U !e&!.!w9!tA!L!T!_!5g!Br!Bz!I!b!b!|!!U!e!!]!t!!!"5"B"B""I-"]5"b@"bH"zS"U["ev"~"l"t"["U"e"""t""""# ###&#1#9#D#L#W#_#%j#Ur#e######z#t##$ $$$'$2$:$E$M$X$`$k$s$~$U$e$$$$$$h$t% %% %(%3%;%F%N%Y%a%l%t%%R%%U%e%%%%%&.&t&!&)&4&<&G&O&Z&b&&m&2u&R&U&e&&Z&t&&&&&&&' '''('0';'&C'RN'UV'eq'y''x'}'' 't'''''( (((&)(U1(eL(T(L_(tg(r(z(((((((((&(U(e(()j)o:)B):M)tU)`)h)s){))))U)e)))X)]* *%*-*8*@*[*c*n*v*$*E*G*z*|*** + +%+1+9+E+M+Y+a+m+u+++++++1++++.+.+1,,*,2, =,.E,.P,.X,.c,1k,1,8$,.,.,0,0,0,1,1,X$,),.,.-.-.-.#- /.- /6-/A-./I-=/T-%0\-0g-0o-0z-1-1-,%-%-.-.-.-.-e0-r0-r0-y0-0.0.0.0".1*.1E.&M.&X..`..k..s..~.e0.r0.r0.y0.0.0.0.0.1.1.&.././0/1/16/)>/)I/.Q/.\/.d/.o/.w/./././././ ////.//.//0/U0/1/10") 0')'0)/0)J0*R0*]0.e0.p0.x0.0.0.0.0.0.0.0 /0/0./0./0/0001011* 1 *;1*C1*^1*f1+q1.y1.1.1.1.1.1.1.1.1.1 /1/1./1./1r/1/ 2121,2*42*O2+W2+r2+z2_,2.2.2.2.2.2 /2 /2/2./2=/2R/2r/21213+"3,-3.53.@3.H3.S3.[3.f3.n3.y3.3.3 /3/3./3./3=/3r/31313+3+ 4,4,.4,64Q-A4.I4.T4.\4.g4.o4/z4/4./4./4=/41414,4}-4.4.4.4.4.5.5 /5/"5/*5./55./=5=/H51P51k5,s5,5-5-5-5k.5.5.5.5.5.5 /5 /6/616136-;6-V6.^6.y6.6.6.6.6.6.6*/6,/61/6;/7e/7g/+7/37/N7/V7/q7:0y7<0   0 @ P ` p  0@P`p !"#$%&' (0)@*P0`1p567   3 6  ( /@ H P 3X 6` h /++ / _ 5 (5$0585@5'H5`5'h5;p5Rx5Z5?5O            0 8 @~ H P X\ p x ~   \  E      #   6 (6$0686@6'H6`6'h6;p6Rx6Z6?6O7 7$777'77'7;7R7Z7?7O  (]08y@H`hpx%px (d@HPX%`phxpxdO%"*08@H`hpxU]FU]F081@H`hpx 08@jHPCXK`h1jCK1j     ( @ H P 7X j` 5h =p x &   7 j 5 =  &    7 j   ( 0 8 P X ` h 7p 'x /      7 ' /      7 ( 0 8 @ H ` oh vp {x  o v {  o v {  v {     ( @ vH {P X ` h p x             . . 1 .( .@ )H )P )X )p )x ) ) ) ) ) ) ) ) ) *0 U0 ) ))) )()0*08U0@)H)P)X)p)x)*0U0)')S)[)+)K))))))) )()@)H)P)X)p)x)/*0**)w*))/*0**)w**b* /(*0@*H *P5*X=*` *h-*************** /(/0t+8|+@*Hb+`*h*p/x/t+|+*b+*G+//**+"+*+ +(+0W/8/@f,Hn,P+XW,p+x+W//f,n,+W,+<,W//++,,+,0,8,@/HW/PX-X`-`,hI-,,/W/X-`-,I-,.-/W/,,- - ,(,@-H-P-X-p-x---------./F.N.-4. -(-0.8/@F.HN.P-X4.p-x...------gtkguitune/FB_logo.xpm0000644000175000017500000001237111062733003013742 0ustar flohfloh/* XPM */ static char * FB_logo_xpm[] = { "66 62 65 1", " c None", ". c #2C2617", "+ c #866202", "@ c #BA941E", "# c #AB9650", "$ c #FDEA8F", "% c #A0966E", "& c #CAB776", "* c #C6BA92", "= c #F3DD8F", "- c #7B7566", "; c #5F5530", "> c #FBEDBC", ", c #916804", "' c #CDB255", ") c #D9B83B", "! c #E5D08F", "~ c #907826", "{ c #502F02", "] c #ECE8DE", "^ c #EEDDA6", "/ c #DCBF51", "( c #FCF3D5", "_ c #CFAC30", ": c #524A2D", "< c #D6CDB6", "[ c #AE860E", "} c #B4B2AA", "| c #D9C277", "1 c #605947", "2 c #D6D6D5", "3 c #DEDDDA", "4 c #474334", "5 c #F1F0ED", "6 c #C8A62D", "7 c #9D8949", "8 c #F4D95F", "9 c #9E9B90", "0 c #FCFBF8", "a c #73683F", "b c #C8C0A5", "c c #6B5B23", "d c #E7CF77", "e c #CBCCCD", "f c #6E4B03", "g c #5D3C02", "h c #8A7B41", "i c #B9B8B5", "j c #C39F24", "k c #8F886F", "l c #D2D2D3", "m c #AEAB9E", "n c #EFE0C1", "o c #3B362D", "p c #A78934", "q c #817646", "r c #A37908", "s c #C6C5C4", "t c #BCA553", "u c #E9CB54", "v c #442B08", "w c #F4DC74", "x c #B8A675", "y c #7D5702", "z c #B68E14", " ", " eellllllleee ", " ee222e}9-----%9ie22lleee ", " el2e}-::ch@'//|u|t#hqa-kmbellee eee ", " ell}a4+p_66'&'tjzzzj_u8$$8##qh9mellee ee2s9e ", " e2m4c[j&3]55]322333<$>($rfx03ss ", " elk1zx05ss eel2232l&jzrzw=88dw==!^>$6ggx03ss ", " l9;[903se el2eik-:;g7e*_jrr@!$wd88=$'gv{#03s ", " lio670]ss e2sk1;q[z&3003ei_jzr,@d>$$_yv{g#03s ", " e24'r]5ss e2i;:x!z,x]03eesees'j@r,,j)y{{{gp0]ss ", " l9a[s0se el214b0r{fb03ese ss'6@[,,+vggg,55ss ", " e24'#03s elmo90=yvfs02ss es*6@zr+{gg+30es ", " eia[30ss el9o<0^gvf*02s ee*_@@rggf#0ls ", " lk@p02s l}on0(g{fp03s el2222lllls'j@rf,n5s ", " l1j*0s lb.n00,vg,30ss ellm14;cqaq%ss&j@,,0ls ", " l1j3]s ee4b(0dvgyr02s el9o-<(((>$$u#xsb_@r0se ", " lcj02s e%a>50rvg,x0s el1a=u_@j6)8=8u//n(!vgf,2nsel17z@s]5]3&j@zz8)6@|2sls ", " 2q60s la*>n5/vgy[n3sl9;@l0]2ss e<'6z[6rr@^le ", " lkj0s e2o(nn5_{g,r<]e2vt50ess es'_j@r+[j5s ", " e}p5nn5)gf,['5em:55ss em'/_)y~[nls ", " ee7<]s 2;b>n]5)yf,r@5sk<0ss ee78u8,yrb]s ", " emj5es eeo>]nn5|,+,[@!3ee2s lk/w$@frt0s ", " ee%d3e 2-%(]]>]w[r,rzj]ss 29x$>6g,@0s ", " eex^ee lbo5(0((>=j@r,[@_]see eee l9%=>6{+@0s ", " esx^eeee leob0|j[@6))6@[rzj),r6)u)&se ", " sss&_j[r@j))__/@fvg,<0iaoa|d_j@66j_u))|[{ggg,]5s eku8uu8jgf+rj0s ", " 21$^^^>fgggfp0ls emtw8u8/{gf,r0s ", " 21$^=nwvggg,20s ei7$^w=8g{y,r0s ", " 2;>^^>jvggfp02s esq$^^^wggf,r0s ", " e24>nn(f{gg,30s esa>!^ndvgfyr0s ", " e}qnn('{ggf*0nn>'{gg+[0s ", " l-x>](f{gfp03s 2-#nnn(rvgfyt0s ", " el4^]0jv{g~50ss e2o]]>5(f{gf+25s ", " lm1((/{{g,30ss 2kq(]]0jvggfr03s ", " e24<0^{{g,]0ee li.5(]0>g{g{y*0se ", " l9a0$gvg~30labee e2io<(5((y{gggr03s ", " ls.0=fvyp]0eem/+{ggg+30ss ", " lso(00|gvgggys0es ", " le4i)ffrl03ss esi))#h-a;;-n000^~{{g{fyb02s ", " e2sox[y,*502ss eei__u=$>(0>='y{{gfffp302s ", " ell%o'rrx503se eesj[[z[r+fffy+y,[}50es ", " eel2l94f@#b]03ess eels&@[rrrrrr[#<503se ", " eei71{c#<]553ess eel232!<alloc_color( i_col_bg ); i_col_LED.set( "red" ); get_colormap()->alloc_color( i_col_LED ); i_rect[ 0].x = 0.5; i_rect[ 0].y = 0.0; // |~| i_rect[ 0].w = 5.0; i_rect[ 0].h = 1.0; i_rect[ 1].x = 1.5; i_rect[ 1].y = 6.0; // |-| i_rect[ 1].w = 3.0; i_rect[ 1].h = 1.0; i_rect[ 2].x = 0.5; i_rect[ 2].y = 12.0; // |_| i_rect[ 2].w = 5.0; i_rect[ 2].h = 1.0; i_rect[ 3].x = 0.0; i_rect[ 3].y = 1.5; // |_ i_rect[ 3].w = 1.0; i_rect[ 3].h = 4.75; i_rect[ 4].x = 5.0; i_rect[ 4].y = 1.5; // _| i_rect[ 4].w = 1.0; i_rect[ 4].h = 4.75; i_rect[ 5].x = 0.0; i_rect[ 5].y = 6.75; // |~ i_rect[ 5].w = 1.0; i_rect[ 5].h = 4.75; i_rect[ 6].x = 5.0; i_rect[ 6].y = 6.75; // ~| i_rect[ 6].w = 1.0; i_rect[ 6].h = 4.75; i_rect[ 7].x = 2.5; i_rect[ 7].y = 4.5; i_rect[ 7].w = 1.0; i_rect[ 7].h = 1.0; i_rect[ 8].x = 2.5; i_rect[ 8].y = 10.5; i_rect[ 8].w = 1.0; i_rect[ 8].h = 1.0; i_rect[ 9].x = 2.5; i_rect[ 9].y = 1.5; i_rect[ 9].w = 1.0; i_rect[ 9].h = 1.0; i_rect[10].x = 2.5; i_rect[10].y = 7.5; i_rect[10].w = 1.0; i_rect[10].h = 1.0; for(int i=0;i<128;i++) i_code[i]=0; // - _ |_ _| _ _ . ' // - | | . ' // i_code[??] = 1 + 2 + 4 + 8 + 16 + 32 + 64 + 128 + 256 + 512 + 1024 i_code['0'] = 1 + 4 + 8 + 16 + 32 + 64 ; i_code['1'] = 16 + 64 ; i_code['2'] = 1 + 2 + 4 + 16 + 32 ; i_code['3'] = 1 + 2 + 4 + 16 + 64 ; i_code['4'] = 0 + 2 + 8 + 16 + 64 ; i_code['5'] = 1 + 2 + 4 + 8 + 64 ; i_code['6'] = 1 + 2 + 4 + 8 + 32 + 64 ; i_code['7'] = 1 + 16 + 64 ; i_code['8'] = 1 + 2 + 4 + 8 + 16 + 32 + 64 ; i_code['9'] = 1 + 2 + 4 + 8 + 16 + 64 ; i_code[' '] = 0 ; i_code['.'] = 256 ; i_code[','] = 256 ; i_code[':'] = 128 + 1024 ; i_code['A'] = 1 + 2 + 8 + 16 + 32 + 64 ; i_code['B'] = 2 + 4 + 8 + 32 + 64 ; i_code['C'] = 1 + 4 + 8 + 32 ; i_code['D'] = 2 + 4 + 16 + 32 + 64 ; i_code['E'] = 1 + 2 + 4 + 8 + 32 ; i_code['F'] = 1 + 2 + 8 + 32 ; i_code['G'] = 1 + 4 + 8 + 32 + 64 ; i_code['H'] = 2 + 8 + 16 + 32 + 64 ; i_code['I'] = 64 + 128 ; i_code['J'] = 4 + 16 + 32 + 64 ; i_code['K'] = 0 ; i_code['L'] = 4 + 8 + 32 ; i_code['M'] = 2 + 32 + 64 + 1024 ; i_code['N'] = 2 + 32 + 64 ; i_code['O'] = 1 + 4 + 8 + 16 + 32 + 64 ; i_code['F'] = 1 + 2 + 8 + 16 + 32 ; i_code['Q'] = 1 + 4 + 8 + 16 + 32 + 64 + 256 ; i_code['R'] = 2 + 32 ; i_code['S'] = 1 + 2 + 4 + 8 + 64 ; i_code['T'] = 2 + 4 + 8 + 32 ; i_code['U'] = 4 + 8 + 16 + 32 + 64 ; i_code['V'] = 0 ; i_code['W'] = 4 + 8 + 16 + 32 + 64 + 256 ; i_code['X'] = 0 ; i_code['Y'] = 2 + 4 + 8 + 16 + 64 ; i_code['Z'] = 1 + 2 + 4 + 16 + 32 ; i_code['-'] = 2 ; i_code['+'] = 2 +128 + 1024 ; i_code['+'] = 2 +128 + 1024 ; for(int i='a';i<'z';i++) i_code[i] = i_code[i-'a'+'A']; } LCDView::~LCDView() { delete [] i_string; } void LCDView::set( const char * str ) { for(int i=0;(i_string[i]=str[i])!=0 && iinvalidate_rect(rect, false); } } bool LCDView::on_expose_event(GdkEventExpose* event) { int x,y, w,h; int x0,y0; int i,j; double scale; int actcode; scale = (double)get_height() / 15.0; if (!i_draw_gc) { Glib::RefPtr win = get_window(); i_draw_gc = Gdk::GC::create( win ); get_colormap()->alloc_color(i_col_LED); get_colormap()->alloc_color(i_col_bg); } i_draw_gc->set_foreground(i_col_LED); y0 = (int)( 1.0*scale + 0.5 ); for(i=0;i_string[i]!=0;i++); x0 = get_width() - (int)( 8.5 * scale + 0.5 ); for(i--;i>=0;i--){ actcode = i_code[ (int) i_string[i] ]; for( j=0; jdraw_rectangle( i_draw_gc, true, x,y,w,h ); } } x0 -= (int)( 8.5 * scale + 0.5 ); } return false; } void LCDView::on_realize() { Gtk::DrawingArea::on_realize(); get_window()->set_background( i_col_bg ); } gtkguitune/missing0000755000175000017500000002557711062733040013321 0ustar flohfloh#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2006-05-10.23 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # 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., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, 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=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # 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 msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -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' autom4te touch the output file, or create a stub one 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] Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case $1 in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $1 in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. 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 $msg. 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 $msg. 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 $msg. 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) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` 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' $msg. 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 test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. 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 test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. 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 "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. 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." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # 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 is $msg. 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 prerequisites 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 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: gtkguitune/lcdview.o0000644000175000017500000043321011064666202013531 0ustar flohflohELF>%@@A> "$&(*,./H\$Hl$HH(HHH,$HsHHt*HEHH\$Hl$ HxHLXH(AH\$Hl$ H(HHtHEHHxHPHUSHHHHLJHGH(HtH8HtHHHxHPH{ H{HHHHH[]H{ HH{HHHHHHHDH묐USHHHHLJHGH(HtH8HtHHHxHPH{ H{HHHH[]H{ HH{HHHHHHfHH@H\$Hl$HLd$HHHHHPHFxHHHGH(HtH8HtHHHxHPH{ H{HuHH$Hl$Ld$HH{ IH{HuHLIIIԐfDUHSH8uH8[]HH\$Ht$(HHT$HT$H$HD$D$(Ht$,HD$,H|$ HHl$ 1HHHtHEHHxHPH8[]HHtHEHHxHPHHG(҈t/G0!DHD;G0}1HG(AȄ҈uHcW0HG(DfAWHFAVIAUATUHLmSHHHXHD$HLHEHPHCxHDHHELe LHDž8Dž4 L8E0HE(LHH\$HHLHH|$ HH\$ 1LHHtHHHxHPH\$0HHLHH|$@HH\$@1LHHtHHHxHP1H?H@H@HHH?HHH@HH@H?HPHI@HHI@HHI(@HHH@HHH%@H@HXHxHHHHHH H0H8H@H`LhLpLHHH(HHH`HH@HPHXHpHxHHHh1HD4HH=uDž}DžP1Dž7DžWDžZDžODž oDžQDžDž_DžDžDžDžDž8{Dž<nDž@-DžDvDžH/DžPmDžTzDžXDž\tDž`Džd,DžhbDžlbDžp}DžL;Džx}Dž|"DžODž.Dž|DžDž|DžDž^Dž7DžDž8HHuHX[]A\A]A^A_IHt$HLHItHHHxHPIHtHHHxHPLLIHIIfDAWAVAUIMu ATUSHI8AI8HD$SH|$pLLd$pML$tI$LHxHPH$H$H$HtHHHxHPI8I8HtHHHxHPHtHHHxHPH$HtHHHxHPMu H$LH$1LHHtHHHxHPImH$LH$1HHHtHHHxHPMtI$LHxHPA*HD$LH8^D$PD$PIM(X,ЉT$L96HBHu)LT$lT$lD$PAHcD$\YHT$`X,ȉL$$A)IE(HT$`HEt4A4LE1DDe@HD$D$(HHD$0PHH$D$8XD$@tHHHxHPH$LD$PH$H$YD$8HD$8XD$8D$8D$PYD$0D$0XD$0D,D$PYD$(DD$LD$(XD$(,D$PYD$@D$@DXD$@,D$8D,ȉ$HtHHHxHPH$HtHHHxHPAH E94vD$\Hl$`D$l9D$\tD+|$$(LH1[]A\A]A^A_HHtHHHxHPMtI$LHxHPHHH$HtHHHxHPHHtHHHxHPHHH$HtHHHxHP|HHtHHHxHPĐ@AWHAVAUATUHSHHHXH$HHD$HHLkHHǃHCLLc LHǃ8ǃ4 L8C0HC(HHHl$HHLHH|$ HHl$ 1LHHtHEHHxHPHl$0HHLHH|$@HHl$@1LHHtHEHHxHP1H?H@H@HHH?HHH@HH@H?HPHI@HHI@HHI(@HHH@HHH%@H@HXHxHHHHHH H0H8H@H`LhLpLHHH(HHH`HH@HPHXHpHxHHHh1HD4HH=uǃ}ǃP1ǃ7ǃWǃZǃOǃ oǃQǃǃ_ǃǃǃǃǃ8{ǃ<nǃ@-ǃDvǃH/ǃPmǃTzǃXǃ\tǃ`ǃd,ǃhbǃlbǃp}ǃL;ǃx}ǃ|"ǃOǃ.ǃ|ǃǃ|ǃǃ^ǃ7ǃǃ8HHuHX[]A\A]A^A_IH<$LHItHEHHxHPIHtHHHxHPLLHH|$IHIIII@% : ; I$ > $ >   I : ; : ;I8 : ;I  : ;  : ; : ; I : ; I8 I!I/ &I : ; : ; 9: ; : ; : ;<  : ; ( <  : ; I8 2 .? : ;< I4 I : ; 4: ; @I? < !9: ; ":: ; #9: ; $.? : ; I< %.? : ;I< &&' : ; I8 (I)*.? : ;I< +.? : ;< ,.? : ;I< -.? : ; @I< ..? : ; I< /0G : ; 1G : ; 2.? : ; < 3.? : ; @I< 4.? : ; @< 5.? : ; @< 6 I7.? : ; < 84: ;@I? < 9 : ;I8 2 :.? : ;@I2 < ;.? : ;@2 < <.? : ;@I2 < =.? : ;@I< >.? : ;@I< ?.? : ;@< @.? : ; @I2 < A.? : ;@I< B.? : ; @I< C4: ; @I? <  D4: ; @I? <  E4: ;@I? 2 < F< G.? : ;@I< H.? : ;2 < I.? : ;@2 < J.? : ;@2 < KG : ;L.? : ;2 < M.? : ;< N!OPIQ5IR4: ; @I? <  S : ; I8 2 T4: ; I< U4: ; I<  V9: ; W.? : ; @I< X.? : ;@< Y : ; Z.? 4 < [.? : ; L < \.? : ; @< ].? : ; @2 < ^.? : ; @IL M 2 < _.? : ; @L M 2 < `.G aI4 b: ; Ic4: ; Id.G@eI4 f1UX Y g1X Y h.1@i1j1X Y k1l Um4: ; I n.G@ o: ; Ip q4: ; Ir: ; Is1X Y t u4v w41x: ; Iy4: ; Iz4: ; I{4: ; I |41}1UX Y ~1UX Y 4: ; I? < 4G4G 4: ;@I? <  4: ;@I? <  4: ;@I? <  4: ;@I? < 4: ; @I? < i~8 ,mint t t t t .  m# # # # #  #( #0 #8 #@ #H #P #X #` #h "m#p &m#t ({#x ,F# -T# .# 2# ;# D# E# F# G# H-# Jm# L# > cM ._1M ._2P Q R Nm# S# 1._3 {# #71 M# M# # #  # # m# XFmtn std6 7-X Z ] _ b i! jJ n o p/ qG r_ t v w y | } ~= _      (@ms ͤΕиѰ\:؀ d e g h i j k1 lH m` n o s t v  w+ xS zk { | }     # 7 P w       < c:;<C D EGHIJK%LGMjNOH!>[x)Ls(Jq 'C_{Ie¥ +Ceɇʩ5Qm   B2P#2#2n C7   Ck  C CQS;T;\;e;h <i!<P E E # Aw! ."/ #+$ km11$ o-1-$ Ȱ1% m$ C m- &J  c dm#'rem em#s  k lt#'rem mt#  w x #'rem y #=M0m   ( m  %  xm  )%(  ( 1%G  m1%_  t1%    -- * div !! mm+  [%  1%  #J tt%  jm1-%0  v-0 1-6 %_  nm0 1-+  -- , m%  Y-+  M%  H( 1 % Mt1 m%( S81 m%@ m1%b z-b-h6 % qm6 !-abs  -divs   % *s   %  1%: } 1 m%\  1 m%y ]y1 % c1 + m%   + $ m% m%1 m$H m%` m%} m}% m$ 11% a---$  11%+ mtm%H mHN%k t% m.)m% + 1% mm$Bmm$ m1$# m11+7 +P -%w 2mm-. $ % Ymm$"m1B% em-1/% m1%< m1%c im-1% m11`5 8# 9# ?# E# F# G#( H#0 I#8 J#@ K#H L#P M#Q O#R Q#S S#T U#U \#V ]#W `#X b#Y d#Z f#[ m#\ n#]$}m1.  tm8 m# m# m# m# m# m# m# m# m# t#( 1#0// . $(   $® $  $<<B%__e $_$_$--1<_%&m%%!0 0 m%>6 %[mb%xfmm%nmb/%mb/%,%V-1-%)4-0 1-%A.mAG%sa-0 <-%6 %6 %ym0 -b/%mbb/%%(mb%Jmb%qm0 -b%mbb%mb%mb%8-6 $ 0 0 b$'mbb$Cmbb$_0 0 b${-bb%8-0 -b<$-b$0 0 b-$mbb-$0 0 b-%Cg-C-b$e-bb%(( b0 %7yb$0 0 b%,tbm% 08bm$+-0 b-%C*m%e mbb-%0 0 b-%0 0 b-%0 0 6 -%tmb/%mb/$0 b6 $50 bb$Q0 b6 $m0 bb%0 b6 -%<b% bm% bm0[@1-3323A9213C9?2K3H9m3l3KJ-33N1J333S98 43]9833a-J43g9353k96676EE1a11#2y4a24c74imP6Pg6.!m121882 292#:: 22:] 22:{ 222: 2 2: 2$2; 2(2: 2/-281;"!272881:J!2?-288:m!2G21;!2P18;!2Y18;!2b8;!2u;"2y;?"2};b"211;"52888;"52<22+"222"522"5222"#522882J#522882m#52182#5212#528+#22m=#2222= $2221=/$222=L$22=i$22>$end22>$end2"2=$2+2=$242=$2=2=%2F2=4%2N-2=Q%2T-2=n%2Y-2?%5m28?%2t28=%2|-2?%528?&22= &22=B&2328=d&2-28>&at2328>&at2-28=&2222=&2221= '222=.'5I222=Z'5Z22288='5.2218='23221='5228?'2V23 (5222=5(2t22288=\(52218=~(2221=(2228?(228=(22282=%)2228288=Q)5l22818=x)22281=)222288=)2C2=)2[2288=*2k2=;*22=g*222882=*22288288=*5228818=*222881=++222888=W+2222=+22218=+2+221=+2@228=,2d22=G,2o2211=x,2y22=,222:,522888: -5228818@3-58=_-5-288?}-522=-212=-212=-2P2=.5-2188='.2-228=N.2(-218=u.5-28=.2F-228=.5-2188=.2b-218=/5-28==/2-228=i/5-2188=/2-218=/2-28=/2-228= 05(-2188=102-218=X02-28=02-228=05=-2188=02-218=05I-28= 125-228=L15T-2188=s12R-218=15i-28=12r288=12m22=25}m2882=E25m288288=g25m21=25m2881A5m28818-2 6 6261&3 2 2-# 2-# 2#14 22# 5?2 5D7 5P4B223324332443224322442283 4223F422=l452884422?4523422A5]284-4&317-DC-iC-jC-kC-lC-mC-nC-o Dall-q?9-7#E-!7E-$7E-*8E-96E-cyFid276-|82P6-882i6-8126-881m26-888m26-8m36-8881<37-6$8327-$883S7-$88=o7-58G-8H7-=87I-@I-C:7-FmmJ-I888m588156858K86-9--#E-;y8-88L8id-88M8id-8A--8*868*88Kn;5(-9-#9-n;#9--#9-n;#9- # E-;E-;E-;E-;E-;E-;E-;;9-7;9-7H:- 7;-H.:- 71-HI:- 7-He:-7mH:-7;;:-7;::-7;:-!7;m;;-$7;;;);-'7;8;M;-*78t;J-27t;-t;z;6;8N;;N;86;8;B8;;b$;m;$ <;$!<;1$8<;1K<, E 8E <8E 1AE 6 6 KY>6z96|#+<6Y>+<6Y>_>=<6-j>==6j>=4=6u>Y>=V=6<Y>m=s=6u>Y>==6<Y>m==6-j>{>==6u>Y>{>==6<j>{>=>6u>Y>{>=?>6<j>{>A6_>j><6e>p><6<6> 6* T*#F*(M)+t,m->0F182MHR??O'??-?> >?j?>#>#>?@">???? ? v?# ?!># ?"j?#>/??(???@>1>C>>D@>E/@>H@@xA>J >KA# >LA# >MA# >NA# >OA# >PA#( >QA#0 >RA#8 >TA#@ >WB#H >XA#P >Y!B#X >Z6B#` >\LB#h >dB#p >e #x >f?# >g # >iB# >j?# >lB#P}A@xAOA}AA(A>}AAPA@AOAAAOAA}AA(B>A}AB2?A(BB ?$@ B(6B?B'BOLBB?>>??BB?RBOB??B(B>??B<"BB(B>?H"BCH% H&?# H'C#BG-CG>CD`G' G)?# G*D# G,D# G-># G/D# G1>#( G2>#, G3>#0 G5C#8 G7D#@ G8D#H G:?#P G;?#XG DCDG?'refG@?# GA?#'getGED#G NDD0GK GME# GN2E# GQQE# GRbE# GUD# GVD#(G"BDCD"C3COD?DDp?DDGH (E>DE>E(2E>D#E(QE>DD?8EObEDWE7>B+\>+cEE+p +ryE#+eEE+u +wE#EQ>;:EF;K ;LE# ;OE# ;PsE#!FeF8#h# 4?1sYeF,R,29,r6#2F,sY2G,sYm20G,sYyY=RG,YsYyY?pG,sYY+G, sYY+G,sYyY--+G,sY1-+G,sY1+H,#sY-hE+%H,)sY-=GH,5YsYY=iH,6YsY1=H,7YsYhE=H,8YsY=H,:YsYyY=H,;YsYyY--="I,<YsY1-=DI,=YsY1=kI,>YsY-hE=I,?YsY-=I,FYsYyY=I,GYsY1=I,HYsYhE=J,IYsY?8J,JsYhE?VJ,KsY=xJ,MYsYyY=J,NYsYyY--=J,OYsY1-=J,PYsY1=K,QYsY-hE=;K,RYsY-=bK,YYsY-yY=K,ZYsY-yY--=K,[YsY-1-=K,\YsY-1=L,]YsY--hE=>L,^YsY--=eL,`kFsYkFhE=L,akFsYkF?L,bsYkF-hE?L,csYkF-=M,jYsY--yY=>M,kYsY--yY--=oM,lYsY--1-=M,mYsY--1=M,nYsY---hE=M,oYsY---=)N,qYsYkFkFyY=ZN,rYsYkFkF1-=N,sYsYkFkF1=N,tYsYkFkF-hE=N,uYsYkFkF-?O,|sY=(O,}YsY--=EO,~YsY=gO,kFsYkF=O,kFsYkFkF=O,mYyY=O,mY1=O,mY--yY=4P,mY--yY--=eP,mY--1-=P,mY--1=P,6Y=P,6Y=P,hEY->Qat,hEY-=5Q,FY--=RQ,kFsY>oQend,kFsY=Q,qFY>Qend,qFY=Q,P sY=Q,P sY=R,V Y=R,V Y=DR,-YyY-=pR,-Y1--=R,-Y1-=R,-YhE-=R,-Y-= S,-YyY-=8S,-Y1--=_S,-Y1-=S,-YhE-=S,-Y-=S,-YyY-=T,-Y1--='T,-Y1-=NT,-YhE-=uT,-Y-=T,-YyY-=T,-Y1--=T,-Y1-=U,-YhE-==U,-Y-=dU,-YyY-=U,-Y1--=U,-Y1-=U,-YhE-=V,-Y-=,V,-YyY-=XV,-Y1--=V,-Y1-=V,-YhE-=V,-Y-=V,Y=W,-Y=$W,-Y=AW,-Y?dW,sY-hE?W,sY-=W,-Y=W,-Y?W,sY-=W,6Y>Xraw,YY=6X,1Y=SX,1Y=X,-Y--=X,%Y=X,(sYY=X,+YY=X,3Y=Y,6FY(F=!Z#![ &T!4U!5[*h/?U!6[dHI?U!7[~?U!8[?U!9[333333?U!:[Hգp= ?U!;[S?( #"VAtk#.(A[[('x(>#'y(># (># (># (\\F\ )+ ),>#'red)-># ).># )/>#(bQ\r\:1 :2E#(hW\[F\r\9,\]89 9 ]#9 \#9 >#9 [#9\#(9>#0]9o      !"#^Gdk$=FGC1:`]=(S=<[#B=.yE2\^=1:`2u^=3:`@`3^=6K`:`3^=9@`Q`2^=C:`mmmm3^=E\`:`b`3_=F\`:`b`3=_=G\`:`b`>3Y_=IQ`3u_=KmQ`4_=L:`3_=MmQ`4_=N:`3_=OmQ`4`=P:`3 `=QmQ`5=R:`^F`[[W`^6^6W`1c]'0S'M}\#B'6yE2`':c}\2`'<cc3`'=dcc2a'?cm4#a'Acd3?a'D}\c3[a'Gdd3wa'J}\d2a'Wc2a'_cyY4a'dc>4a'ec( 4b'lc>>>4,b'sc( ( ( 4Sb'uc( ( ( 4zb'vc( ( ( -bset'cyY3b'cyY3b'>d3b'>d3c'>d4-c'c>4Jc'c>4gc'c>4c'cd3c'>d3c'( d3c'( dW'( dh`6ch`6h`d[c6dF6*dFAdGtk%\1eF4Se#2vde2dem2dee2dee4dee3eeee="e ee=Deee3`eee=}eeXe^Gd6eGd6GdeYtg&Ff &1'x&1( #'y&1( #'w&1( #'h&1( #:d#S&(h`#S&)h`# S&+#(S&,m#0S&-Qm#4S&.m#S&0Gd#S&1am#Zfqmmwmm2fqmmwm1[foeqmmwm\gsetuqm1],g|qm^VgeqmAd_eqm1hF4Sh#2gh2ghm2ghh2ghd4 hhh3-hhhd=Oh hd=qhhd3hhh=hhXh ^tg6tgd1$jF4S$j#2i*j2!i*jm2:i*j$j2Si*j$d4pi*j0j3i0j*j$d=i 6j$d=i6j$d3i$j6j=j6jX*j^h6h*d1kF4Sk#2kjk2jkm2jkk2jkk4jkk3jkkk=k kk=9kkk3Ukkk=rkk?kk7k$d^o5@>q>7MwA2_w  >o5@>q>'?7MwdwZA2_wZ[*h/?[dHI?-[~?B[?W[333333?l[Hգp= ?[S? 4? AwBE@BBBB'B(B+B`BaBd2 2 5?2 5D7 5P482 2 5?2 5DhC-jC-kC-lC-mC-nC-o E-*8yyE-cyyE-;E-;E-;E-;E-;E-;E-;CzdecCzCzhexC zCzCz octCz@CzCzC zC$zC'zC*zC-z C1z@C4zC7zJC:z CL{CO{CT{CW{n inCvM|outCyM| curCy|D3D4D5D6D7D8 D9@D: CD;CD<D= 8E18E18E <8E 18E8E8E8E8Ey8Ey8Ey8EyR,2CDEFT~|  /usr/include/glibmm-2.4/glibmm/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/usr/lib/gcc/x86_64-linux-gnu/4.1.2/include/usr/include/usr/include/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/x86_64-linux-gnu/bits/usr/include/glib-2.0/glib/usr/include/sigc++-2.0/sigc++/usr/include/pangomm-1.4/pangomm/usr/include/cairomm-1.0/cairomm/usr/include/atkmm-1.6/atkmm/usr/include/gdkmm-2.4/gdkmm/usr/include/gtkmm-2.4/gtkmm/usr/include/gtk-2.0/gdk/usr/lib/glib-2.0/include/usr/include/glib-2.0/gobject/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/bits/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../include/c++/4.1.2/extlcdview.ccrefptr.hcstddefstddef.hcstringstring.hcstdlibstdlib.hcstdiostdio.hlibio.htypes.h_G_config.hwchar.hstdio.hclocalelocale.hctimetime.hcwcharcwctypewctype.hnewc++config.hcontainerhandle_shared.hmarkup.hcontainers.hgtypes.htype_traits.htrackable.hfontdescription.h font.h enums.h component.h types.h stockid.h lcdview.hcolor.h gdktypes.hgdkcolor.hglibconfig.hgtype.hustring.hlocale_classes.hatomic_word.hgthr-default.hpthreadtypes.hstringfwd.hbasic_string.hnew_allocator.hallocator.hbasic_string.tccstl_iterator.hgunicode.hunicode.hgdkevents.hgdkdrawable.hgobject.hgdataset.hrectangle.h gthread.hgerror.hgquark.hgstrfuncs.hlimitsios_base.hctype_base.hlocale_facets.hmain.hgmain.hgslist.h ZYxF߃ֻֻXֻ p x=WY/N+YV)tD"<t"=~wu׮IY~IY~סvuxxquouztuvuwsvvvvvvuurtuvvzvvvw-wA)X.u'J+|Z>"; :/E)YuXtYYf.Yg.YY` Xv YgI;KY4/WgYI~fa~wu׮IY~IY~סvuxxquouztuvuwsvvvvvvuurtuvvzvvvw-wA)X.u#1",oV#JQZgx#JQZgx]dmy nI'N Z &         Z/g z &     ?S"; H n z &         LIzHLIzHblackred.@?!@@@@ @@@@ @@@@ @@@@ @@ @P PP P 7LCDViewx JG0$AAG $AAG $JL $ADDPN<bBFE B(A0H8J<BBB I(A0A8G<BIB B(A0D8JzPLRx $JG0$DAAG $lAAG JL $ADDPN4bBFE B(A0H8J4,BBB I(A0A8G4dBIB B(A0D8Jww0UBSYeSouSwwww U!S!'U'Swww|w US|SwIw USISTVIVPQwQUwUYwYwP^U^hViV nU nT;nXprwrxwx}w}w w(w0w8 wpUO VX VpTSX p S S SpQU ^X [ ^p v ^ ^ ^ ^W _[ _ w w w w w( w0 w8 w U T _ _3w_ ~3w~ ~ Q Q ~3w~ C \ \ \ ~3w~ ^ ^3w^ Q Q Qwwww w(w0w8bwUSbSTVV=VJbV[_O_m~!nLCDView::on_realizenLCDView::~LCDViewoLCDView::~LCDViewIoLCDView::~LCDViewoLCDView::invalidatepLCDView::setpLCDView::LCDViewrLCDView::on_expose_eventuLCDView::LCDView,b1=V`GRp m 3X ] | k n X ] k n llabs_ZNK4Glib6RefPtrIN3Gdk6WindowEEcvbEv_ZNSt10ctype_base6xdigitEoperator==_S_octstrtodstrtof_ZN4Glib7ustringaSERKSs_IO_buf_endstrtol_ZNK3Gdk5Color9get_greenEvgetwc_GMutex_ZNK4Glib7ustring7compareEmmPKcmprintg_ascii_table_ZNKSt6locale4nameEv__gthread_once_tswprintf_ZNKSs5rfindERKSsmmbsinitfrac_digitsfailbitthread_equalGObject_ZNSt6locale5_ImplaSERKS0__M_index_GdkRectangleGDatavfscanf_M_check_same_name_ZNK9__gnu_cxx17__normal_iteratorIPcSsE4baseEv_ZNSs7reserveEmoperator bool_ZN4Glib7ustring6rbeginEv_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6__ZNSt6locale10_S_classicE_ZN4Glib7ustring7replaceEmmPKcmremove_ZNKSs11_M_disjunctEPKcsize_tbool_ZNSs4_Rep7_M_grabERKSaIcES2__M_copyrect_ZNK4Glib6RefPtrIN3Gdk8DrawableEEptEvfread~localesnprintf_ZNSt10ctype_base5upperEGDK_BUTTON_RELEASEi_rectatexitatofatoiatol_ZN4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEE_ZNK3Gdk9Rectangle4gobjEvget_width_M_install_facet_ZNSs4_Rep10_M_destroyERKSaIcErend_ZN3Gdk5Color9set_rgb_pEddd_ZNSs6insertEmPKcm_ZNKSs6lengthEv_ZNK4Glib6RefPtrIN3Gdk6WindowEEptEv_ZNKSs5beginEvfind_first_ofn_cs_precedesasctimewcstombsGdkColor_S_right_S_empty_rep_ZNSt6locale13_S_initializeEv_ZNK4Glib7ustring9uppercaseEv_ZNKSs5rfindEPKcmm_ZN4Glib7ustring4swapERS0__ZN4Glib6RefPtrIN3Gdk2GCEE5clearEvtm_hourSCALE_XX_SMALL_ZNSt6locale3allE_S_outget_greengbooleanstdin_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc_IO_read_endoperator*operator+operator-GDK_NOTHINGoperator=systemwcsrtombsquotrfindatollg_typecollate_key_ZNK4Glib7ustring7compareEmmRKS0_int_p_sep_by_space_ZNSs7replaceEmmPKcfpos_tunref_ZN4Glib7ustring6insertEmPKcm_ZNSs4_Rep10_M_disposeERKSaIcE_ZNSs15_M_replace_safeEmmPKcmfputws~basic_string_M_move_ZNSs4_Rep15_M_set_sharableEv_ZNKSs12find_last_ofERKSsm_S_ios_openmode_end_ZN9__gnu_cxx13new_allocatorIcE10deallocateEPcmstrtoldstrxfrm_M_destroy_ZNSt6locale5facet9_S_c_nameE_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idE_ZNSt6locale18_S_initialize_onceEvgetenv_ZNKSs7_M_iendEvpos_tm_ydayputwcharftellcompare_ZNSs7replaceEmmmcthread_selfint_curr_symbol_IO_save_end_ZNK9__gnu_cxx13new_allocatorIcE7addressERKcwcstoulparent_instance_ZNSt8ios_base6skipwsEwchar_t_markers__pad1__pad2__pad3__pad4__pad5lowermemchrgetwcharprivate_setGSListfwscanf_ZNSt10money_base18_S_default_patternE_ZN9__gnu_cxx3divExx_ZNSt6locale11_M_coalesceERKS_S1_i_ZNSt14numeric_limitsIfE13has_quiet_NaNEgetccond_free_ZNK4Glib6RefPtrIKN3Gdk2GCEEptEvgets_ZNSt14numeric_limitsIeE12has_infinityE_ZNSt8ios_base3hexEadjustfield_GCondGDK_DESTROY_ZNKSs16find_last_not_ofEPKcm_ZN4Glib7ustring6insertEmmc_ZN4Glib7ustring6insertEmmj_IO_write_basewmemsetpush_backsubstr_ZN3Gdk5Color8get_typeEv_ZNSt6locale6globalERKS__S_terminalreg_save_arealcdview.ccset_rgb_pstrtoul_ZN4Glib7ustring6appendEmj_ZNKSs4findEPKcmfieldGError_ZN7LCDView10on_realizeEvputwcctypeinvalidate_M_leak_hard_ZNKSs13find_first_ofERKSsm__clock_t_ZNK4Glib7ustring13find_first_ofEPKcm_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEi_ZN3Gdk5Color10set_grey_pEd_ZN9__gnu_cxx17__normal_iteratorIPcSsEppEvcntrl_M_set_sharableref_count_S_onceactcode_ZNK3Gdk5Color8get_blueEv_GMainContext_S_id_messages_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE_ZN4Glib6Source12vfunc_table_Embrtowc_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKv_ZNSt8ios_base3curE_M_limit_IO_read_ptr_ZNSt8ios_base7unitbufE_GObject~RefPtr_S_basefieldset_hslnormalize~_Implerasewctype_t_ZNKSs5rfindEPKcmNormalizeModeset_grey_p_ZNSt8ios_base3decEgp_offsetreverse_iterator, std::allocator > > > >_ZNK4Glib6RefPtrIN3Gdk2GCEEcvbEv_ZNSt17moneypunct_bynameIcLb0EE4intlE_GSourceFuncs_ZNKSs4findERKSsm_ZNK4Glib7ustring5rfindEPKcmm_S_atoms_iniswctypepreparevwscanffind_last_ofreserved2_M_install_cache_GSListg_threads_got_initialized_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm_M_ibegin_ZN4Glib6RefPtrIN3Gdk6WindowEE5clearEvget_blue_phas_infinity_ZNK4Glib7ustring11collate_keyEv__gnu_cxx_M_current_ZNSt6locale13_S_categoriesEDrawingArea_ZNSt8ios_base8showbaseE_S_create_ZN4Glib7ustring6appendERKS0_gint_GError_ZNSbIwSt11char_traitsIwESaIwEE4nposE_ZN3Gdk5Color7set_redEt_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE_ZNK4Glib7ustring8capacityEvset_blue_ZNKSs13find_first_ofEPKcmmungetwccurrency_symbolGDK_EXPOSE__wchbshort unsigned int_ZNK4Glib7ustring8max_sizeEv_ZN3Gdk5ColoraSERKS0__ZNK4Glib6RefPtrIN3Gdk2GCEEeqERKS3__M_check_S_classic_ZNK4Glib7ustring16find_last_not_ofEPKcmm_ZNKSs5emptyEv_S_scientific_ZN4Glib6RefPtrIN3Gdk2GCEEaSERKS3__ZNSt8ios_base9boolalphaE_M_check_length_S_app_ZNKSs7compareEmmRKSsmmmutex_unlockp_sep_by_spacemktimeappendbaseon_expose_event_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc_mode_ZNSt6locale5_Impl14_S_id_monetaryE_S_boolalpha_ZNSt6locale5ctypeE_M_grabi_string_maxlen_ZNKSs4findEPKcmm_ZNSt6locale5_Impl10_S_id_timeE_S_ateG_THREAD_PRIORITY_NORMAL_pos_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEc_ZNSsaSEc_ZNK4Glib6RefPtrIN3Gdk8ColormapEEcvbEvcount_ZNK4Glib7ustring7compareEmmRKS0_mm_ZNSs6appendERKSsconstructgetchar_ZNK4Glib7ustring5bytesEvuppercase_ZNKSs4findEcmblue_ZNK4Glib7ustring16find_last_not_ofEjmGDK_KEY_RELEASE_ZNSt6locale5_Impl14_S_id_messagesE_ZN4Glib6RefPtrIKN3Gdk2GCEE4swapERS4_fgetc_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEi__gnu_debug_ZN9__gnu_cxx17__normal_iteratorIPcSsEmmEvmonetary_S_categoriesfwide_ZNSt6localeaSERKS_window_M_facets_ZN3Gdk5Color14rgb_find_colorERKN4Glib6RefPtrINS_8ColormapEEE_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mcset_widthtmpfilewcsspnthread_exitmutex_new_ZNSs12_M_leak_hardEv_Ios_Iostate_ZNSsixEm_ZN4Glib7ustringpLEPKc_ZNSspLERKSssrandfree_ZNK4Glib7ustring6substrEmmGSource_ZNSt14numeric_limitsIdE13has_quiet_NaNEother_M_dataplusg_type_instance_ZNSs4_Rep10_M_refdataEv__pos_ZN4Glib7ustring7replaceEmmmc_ZN4Glib7ustring7replaceEmmmjwcsstr_ZNSt6locale5_Impl18_M_check_same_nameEvsource_funcs_ZNKSs5c_strEvGDK_VISIBILITY_NOTIFY_ZN3Gdk5Color5parseERKN4Glib7ustringEset_greenvfwprintfbtowcNORMALIZE_DEFAULT_COMPOSEpriority_ZNKSs7compareERKSswctombGDestroyNotify_ZNSt17moneypunct_bynameIcLb1EE4intlEfopen_S_badbit_ZNSs7_M_dataEPc_ZSt7nothrowunsigned int_ZNK4Glib7ustring5beginEv_M_replace_facet_Exit_ZNSt6locale5_Impl19_S_facet_categoriesERefPtrwcstoullboolalphahas_denorm_ZNSs3endEv_ZN4Glib6RefPtrIN3Gdk8ColormapEE4swapERS3_casefold_ZN3Gdk9Rectangle9set_widthERKiswapget_blue_GThreadFunctions_S_showposcallback_funcs_M_remove_reference_ZNSt6locale2id11_S_refcountE__FILE_S_end_ZN4Glib6RefPtrIN3Gdk8DrawableEE5clearEvget_allocatorcond_signal_ZNK4Glib7ustring4findERKS0_mGDK_SCROLL_ZNK4Glib7ustring3rawEv_ZN4Glib7ustring6appendEPKclong unsigned intintlhas_quiet_NaNtm_isdstint_n_sign_posnNORMALIZE_DEFAULTGDK_PROPERTY_NOTIFY_ZNSt8ios_base5fixedE_ZNSt10ctype_base5graphE_ZNKSs6substrEmmlocale_ZNK4Glib7ustring12find_last_ofEcmfixed_IO_read_base__int32_t_ZNSt10moneypunctIcLb0EE4intlESCALE_XX_LARGEwcstodObjectwcstok_IO_write_ptrLCDViewi_LCD_numwmemcmppoll_fds_ZNSs7replaceEmmPKcm_M_id~Colorget_type_ZNSt6locale4timeEoperator!=_ZNKSs9_M_ibeginEvon_realize_ZNSt8ios_base9showpointE_ZNSt14numeric_limitsIdE12has_infinityEtv_seccond_broadcast_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcm_unused2GTimeValtm_minbasic_stringSCALE_X_SMALLGDK_MOTION_NOTIFY_ZNSt10__num_base11_S_atoms_inEnext_ZNSs4swapERSs_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmj_ZN4Glib7ustring5eraseENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEE_ZNK4Glib7ustring12find_last_ofEjmint_frac_digits_M_disjunct_M_refcopyGType_S_floatfield_ZNSt6locale7_S_onceE_ZNKSs7compareEmmPKc_ZNKSs8_M_limitEmmRectangleqsortGDK_CLIENT_EVENTPangocode_ZN4Glib6RefPtrIN3Gdk6WindowEEaSERKS3__ZNK4Glib6RefPtrIN3Gdk2GCEEneERKS3___in_chrgeofbit_M_is_leaked_ZNSs4_Rep26_M_set_length_and_sharableEm_S_id_collatetm_mon__off_t_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEinone_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEppEv_ZNSs6insertEmRKSs_ZN3Gdk5Color8set_greyEt__wch_ZNSt10ctype_base5alnumE_S_construct_pattern_GTimeValparseoperator++_ZN9__gnu_cxx3absExoperator+=_ZNSt10ctype_base5printEclosure_callback_ZN4Glib6RefPtrIN3Gdk8ColormapEE5clearEv_ZNSt10__num_base12_S_atoms_outE_ZNSs6assignEPKcNORMALIZE_ALL_COMPOSEdigitwcsncatthread_create_ZN4Glib7ustringaSEc_ZNSt10ctype_base5cntrlE_ZN4Glib7ustringaSEjoperator--_ZN4Glib6RefPtrIN3Gdk8ColormapEEaSERKS3_operator-=operator->g_thread_functions_for_glib_use_ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEv_ZNK4Glib6RefPtrIN3Gdk8DrawableEEeqERKS3_reserved1_ZNSt8ios_base6badbitEallocatebytes_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEdeEv_IO_write_endbsearch_IO_save_basetm_wdaycond_timed_wait_ZN4Glib7ustring6insertEmPKc_ZN3Gdk5Color7set_hslEddd_S_initialize_onceset_hsv_ZNK4Glib7ustring7compareEmmPKcn_sign_posn_ZNK9__gnu_cxx17__normal_iteratorIPcSsEplERKl_ZN4Glib7ustring6assignERKS0_mmgulong_ZNK4Glib6RefPtrIN3Gdk8DrawableEEcvbEv_ZN4Glib7ustring6assignEmc_ZN4Glib7ustring6assignEmj_ZNSs7_M_copyEPcPKcm_ZNK4Glib7ustring12find_last_ofERKS0_m_ZNSt8ios_base10floatfieldE_ZNSt6locale5_Impl19_M_remove_referenceEvGQuarkreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZN4Glib6RefPtrIN3Gdk2GCEE4swapERS3_ferrorungetcthousands_sep_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKccopyget_pixelstrerrorskipws_GSource_ZNSt6locale5_Impl13_S_id_numericE_ZNSt8ios_base10scientificEclosure_marshalgmtimepunctnew_allocatorctime_ZN9__gnu_cxx17__normal_iteratorIPcSsEpLERKl_ZN4Glib19glibmm_null_pointerEthread_set_prioritywcslenwcsncmp_ZNK4Glib7ustring16find_last_not_ofEPKcmRefPtr__compar_fn_t_ZNKSs7compareEmmPKcmGDK_SETTINGtowctrans_ZNSs2atEm_ZNK4Glib7ustring13find_first_ofERKS0_m_ZNSt14numeric_limitsIfE10has_denormEchar_ZN4Glib7ustring7replaceEmmRKS0__S_refcountGDK_BUTTON_PRESSvswprintfi_draw_gcsetlocaletv_usec/home/floh/gtkguitunelengthCairoSCALE_X_LARGE_M_set_leaked_M_clonecapacityvsscanf_ZNSspLEPKc_ZNK4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEE4baseEv~LCDView_ZNSt8ios_base9uppercaseEmbsrtowcs_S_beg_ZNSt10ctype_base5spaceE_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE_ZN4Glib7ustring4nposEfgets_ZN4Glib7ustring3endEvmutex_lock_ZN9__gnu_cxx13new_allocatorIcE7destroyEPc_M_cachesgraph_M_iend_S_empty_rep_storage_IO_backup_baselocaltimewmemcpy_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEv_S_c_name_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2__S_id_timearea_ZNSt8ios_base3octE_S_binint_n_sep_by_spacevsnprintf_IO_markerGSourceCallbackFuncs_ZNSs6assignERKSsmmGDK_PROXIMITY_INcheckfreopen_ZNK4Glib7ustring13find_first_ofEcmthisclock_ZNKSs7compareEmmRKSs_ZNK4Glib6RefPtrIN3Gdk6WindowEEeqERKS3__ZNSt14numeric_limitsImE6digitsE_ZNK4Glib7ustring16find_last_not_ofEcmGNU C++ 4.1.2 (Ubuntu 4.1.2-0ubuntu4)_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2_wctrans_S_trunc_ZNKSs7compareEPKc_S_ios_iostate_end_ZNSs6resizeEmc~new_allocator_ZNSt8ios_base7goodbitEvalidatewidth_S_default_patternGCond_ZNSt10ctype_base5alphaESCALEempty_ZN3Gdk9Rectangle9intersectERKS0_Rb_ZNSs6appendERKSsmmfeof_S_internal_cur_columnvprintf_ZNK4Glib7ustring4rendEv_M_facets_sizesigcreserveGTypeInstance_ZN4Glib7ustring6appendEPKcm_M_leak_ZNSs7_M_leakEvfp_offset_ZNK4Glib6RefPtrIKN3Gdk2GCEEcvbEvfloatfieldfclose_S_unitbuf_ZNK4Glib7ustring9lowercaseEvright_ZNKSs15_M_check_lengthEmmPKc_ZNK4Glib7ustring8validateERNS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPKcSsEEEE_S_inglobal__vtt_parmget_height_ZNSs6insertEmPKc_M_lengthunsigned charinsert_ZN3Gdk5Color4gobjEvspacembstate_t_Ios_SeekdirfinalizefsetpospCppObject_GDK_ENTER_NOTIFY._207__normal_iterator, std::allocator > >tm_yearinternalfgetposnothrow_t_ZN4Glib7ustring5clearEvgreen_ZNKSs13find_first_ofEPKcmrewindintersectDrawablepositive_sign_ZN9__gnu_cxx13new_allocatorIcE9constructEPcRKcdifftime_ZNSt6locale5_Impl13_S_id_collateE_M_replace_category_ZNSs5clearEv_ZN4Glib7ustring7replaceEmmRKS0_mmcollate_ZN4Glib6RefPtrIKN3Gdk2GCEEaSERKS4__ZNKSsixEmalphaint_n_cs_precedesclock_t_IO_buf_basename_ZNK3Gdk5Color11get_green_pEv_ZNSs6appendEmcwcstofwcstol_ZNKSs16find_last_not_ofERKSsm_S_failbit__normal_iteratorpixel_ZN7LCDView15on_expose_eventEP15_GdkEventExpose__normal_iterator, std::allocator > >tm_zone_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEEGDK_NO_EXPOSEsetbuf_GdkRegionGDK_MAPtypetime_t_Alloc_hider_ZNSt14numeric_limitsIeE10has_denormEGdkRectangle_ZN4Glib7ustringaSEPKc_ZNKSs17find_first_not_ofERKSsmcontext_ZNSt6locale9_S_globalEint_p_cs_precedes_GPrivate_ZNKSs2atEmmon_grouping_ZNKSs4rendEv_ZN4Glib7ustring7reserveEm_offset_chain_old_offsetregionget_red_ZNK4Glib7ustring13find_first_ofEjmcond_newget_green_p_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEmcsize_M_names_ZNKSs5rfindEcmflags_ZNKSs4_Rep12_M_is_leakedEvoperator[]rgb_find_colorp_cs_precedeswint_tmblendecimal_pointgpointerdispatch_S_id_numeric_S_ios_fmtflags_end_ZNK4Glib6RefPtrIN3Gdk6WindowEEneERKS3__M_p_ZNK4Glib7ustring7compareEPKc_M_is_shared_M_set_length_and_sharableis_ascii_S_hexGDK_CONFIGURE_ZNKSs16find_last_not_ofEPKcmm_M_data_ZNK4Glib7ustring4copyEPcmm_ZNSs6appendEPKcmGDK_PROXIMITY_OUToverflow_arg_areadenorm_presentfflushGdkWindowoperator std::stringcallback_data_M_dispose_ZNSs7replaceEmmRKSsmmdigits_shortbuf_S_goodbitn_sep_by_space_ZNK4Glib7ustring20casefold_collate_keyEvthread_joinstrtok_ZNK3Gdk9Rectangle5get_xEvguint16GSourceDummyMarshalvswscanfshowpointdoublereallocwcsncpy_S_initialize_ZN3Gdk9Rectangle4gobjEv_ZNKSs17find_first_not_ofEPKcmmguint32_ZNK4Glib7ustring17find_first_not_ofEcm_ZNSt8ios_base11adjustfieldEmbtowc_ZNSs4rendEvG_THREAD_PRIORITY_HIGHfloat_denorm_styleRefPtrldiv_ZNK4Glib7ustring17find_first_not_ofEPKcmcond_waitmessagestdout_GdkEventExposeGdkRegion_ZNKSs4sizeEv_ZNSt10ctype_base5punctE_ZNSs6assignERKSs_ZNSs4_Rep8_M_cloneERKSaIcEm_ZNK4Glib7ustring5rfindEcm_GdkDrawable_ZN4Glib7ustring6insertEmRKS0_Markupperror_S_leftfind_first_not_of_ZNK4Glib7ustring4dataEv_ZNKSs13get_allocatorEv_ZNSt17moneypunct_bynameIwLb1EE4intlElocaleconvGDK_UNMAP_M_mutatebegin_S_construct_S_facet_categoriesp_sign_posn_ZN3Gdk9Rectangle8get_typeEv_ZNSt8ios_base6eofbitE_ZNSs4nposE_ZN4Glib6RefPtrIKN3Gdk2GCEE5clearEv_ZNK4Glib7ustring17find_first_not_ofEjm__gnu_debug_deflowercase_ZNSs4_Rep10_M_refcopyEv_S_uppercasegroupingmessagesaddresslconvbasic_string,std::allocator >Container_Helpersnpos_ZNSs14_M_replace_auxEmmmcnew_allocator_ZNK4Glib7ustring5rfindEjm_ZNSt10moneypunctIcLb1EE4intlEgobject__ZNK4Glib7ustring6rbeginEvglibmm_null_pointer_ZNKSs6rbeginEv_ZNSt14numeric_limitsIdE10has_denormEreplaceGThreadFunctions_M_refcount_ZNSs4_Rep9_S_createEmmRKSaIcENORMALIZE_NFC._12._13._14_vtable_offset_S_atoms_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4__M_implvwprintfclearerr_GTypeClass_ZNSt6locale5_Impl11_S_id_ctypeE_S_id_ctypexdigiti_string_S_skipws_ZN4Glib7ustring4rendEvGDK_3BUTTON_PRESSallocator_ZNSs13_S_copy_charsEPcS_S__ZNK4Glib7ustring6lengthEvlong double_ZN4Glib7ustring6appendERKS0_mmwctob__va_list_tag_ZNKSs8capacityEv_ZNSt8ios_base2inE_ZNKSs4dataEvfacet_ZNK4Glib7ustringcvSsEvmoney_base_ZNSs4_Rep11_S_terminalEGDK_KEY_PRESSeventwcsftime_ZNKSs8max_sizeEv_ZNSt8ios_base9basefieldE_ZNSt10ctype_base5digitE_ZNSs6insertEmRKSsmmG_THREAD_PRIORITY_LOW_ZNK3Gdk5Color10get_blue_pEv._90destroy_ZNSs5eraseEmm_ZNK4Glib7ustring5rfindEPKcm_ZNSt6locale5_Impl16_M_add_referenceEv_ZNK4Glib6RefPtrIN3Gdk8DrawableEEneERKS3_GSourceFuncs_ZNSt10money_base8_S_atomsEshowpos_S_eofbitGDK_GRAB_BROKEN_M_capacity_ZNSt14numeric_limitsIeE13has_quiet_NaNEFILE_filenoclassic_ZNSt10moneypunctIwLb1EE4intlE_ZNK3Gdk5Color4gobjEv_ZNKSs3endEvtmpnam_ZN4Glib7ustring6insertENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEEjvfunc_table_GDK_SELECTION_NOTIFYshowbaseustring_Iterator_ZNK4Glib7ustring9normalizeENS_13NormalizeModeE_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mc_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_mjfseek_ZN3Gdk5Color3setERKN4Glib7ustringEptrdiff_tGDK_DRAG_LEAVEwmemmoveset_grey_ZN4Glib7ustring6assignERKS0_wcrtombclearmutex_trylockfputwcguint_ZN4Glib6RefPtrIN3Gdk6WindowEE4swapERS3_numericset_x_ZNSsaSEPKc_ZNK3Gdk5Color7get_redEvset_y_Rep_base_ZNSspLEc_ZN4Glib6RefPtrIN3Gdk8DrawableEE4swapERS3__GSourceCallbackFuncs_M_replace_safe__state_ZNK4Glib7ustring4findEcm_ZN3Gdk9Rectangle10set_heightERKi_ZNSt10moneypunctIwLb0EE4intlENORMALIZE_NFKCNORMALIZE_NFKDGTypeClassmax_size_ZNK3Gdk9Rectangle10get_heightEv_ZNK4Glib7ustring7compareERKS0_wcscoll_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKcm_ZNSs7_M_moveEPcPKcm_ZNK4Glib7ustring4findEPKcm__time_tglong_Impl_ZNSt10ctype_base5lowerE_ZN4Glib7ustringpLERKS0_private_newustringdata_ZNSs6resizeEm_ZN4Glib7ustring6insertEmRKS0_mm_flags2_flags_ZNK4Glib7ustring4findEPKcmm_ZN3Gdk5Color4swapERS0__S_atoms_outSCALE_SMALL_ZNK4Glib7ustring4findEjmwmemchrmutex_freeget_red_p_ZNKSs12find_last_ofEPKcmmlong long unsigned int_S_id_monetary_ZNKSs16find_last_not_ofEcmnothrow_ZNSs4_Rep20_S_empty_rep_storageE_ZNK4Glib6RefPtrIKN3Gdk2GCEEneERKS4__ZNSt17moneypunct_bynameIwLb0EE4intlEreverse_iterator, std::allocator > > > >GDK_DROP_START_ZNKSs4copyEPcmmbasefield_ZN4Glib7ustring6appendEmctm_mday_M_add_referenceRefPtrustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >_ZNK3Gdk5Color9gobj_copyEvGMainContext_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2__ZNK4Glib7ustring5emptyEv_ZNKSs13find_first_ofEcm_Ios_Openmode_ZNSs6appendEPKc_S_cur_ZNKSs4_Rep12_M_is_sharedEvgint8vscanfreverse_iterator<__gnu_cxx::__normal_iterator, std::allocator > > >gobj_ZNSt6locale8monetaryEdomain_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_inegative_signshort int_ZNSs12_S_constructEmcRKSaIcEwctype_ZNK4Glib7ustring12find_last_ofEPKcmm_ZN4Glib7ustring7replaceEmmPKcfind_last_not_of_S_copy_charssource_idrbeginstrftimemon_thousands_sep_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalEwcscat_ZNSt6locale7classicEv_ZNSt6locale8messagesE_ZNK3Gdk9Rectangle9get_widthEv_ZN3Gdk5Color8set_blueEt_ZNSt8ios_base7showposE_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1__ZNK9__gnu_cxx13new_allocatorIcE8max_sizeEv_ZNK9__gnu_cxx17__normal_iteratorIPcSsEptEv_ZNSt6locale21_S_normalize_categoryEi_ZNSt6locale7collateEGDK_SELECTION_CLEAR_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_RKS0_scientificsetvbufGSourceFunc_S_global_ZN4Glib7ustring5eraseEv_ZN4Glib7ustring9push_backEc_ZN4Glib7ustring9push_backEj_ZNSs6insertEmmc_ZNKSs6_M_repEvgobj_copyGDK_DRAG_ENTERGDK_DRAG_MOTION_ZNK4Glib7ustring5rfindERKS0_mNORMALIZE_ALLassign_ZN3Gdk9Rectangle5set_yERKiputc_ZNK4Glib7ustring8is_asciiEv_ZN7LCDView10invalidateEvprivate_get_S_adjustfieldfindwcschr_ZNK4Glib7ustringixEmstring__IO_FILE_ZNK4Glib7ustring16find_last_not_ofERKS0_mheightwcsrchrdenorm_indeterminate_ZNK4Glib7ustring5c_strEvset_redpattern_ZNSt8ios_base7failbitEsend_event_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5_GliblldivscaleGPrivate_ZN4Glib7ustring6assignEPKcmGDK_OWNER_CHANGEstrtollgushort_ZNK4Glib6RefPtrIKN3Gdk2GCEEeqERKS4__ZNSt6locale4noneEswscanfwcscspnset_rgb_ZN4Glib7ustring5beginEvwcscmp_ZN3Gdk5Color7set_rgbEttt_S_max_size_lock_ZNSs12_S_empty_repEv_ZN4Glib7ustringpLEcvfwscanf_ZN4Glib7ustringpLEj_ZNKSt6localeneERKS_~ustring_ZNK3Gdk9Rectangle13has_zero_areaEv_ZNSs5beginEv_ZNSs13_S_copy_charsEPcPKcS1__S_normalize_category_ZNSs6rbeginEvwcstoldSCALE_LARGEwcstollwcsxfrmtimeleftprevwcscpy_S_showbase_M_assign_ZNSs6assignEmc_ZNK4Glib7ustring2atEmrename_GTypeInstanceGDK_SELECTION_REQUEST_ZNK4Glib7ustring4sizeEv~allocator_ZNKSs8_M_checkEmPKcqdata_ZNKSs12find_last_ofEPKcmWindow_ZN4Glib16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEmmEi_S_fixed_GData_ZN4Glib7ustring6resizeEmcsigned charmbstowcsGDK_DRAG_STATUSG_THREAD_PRIORITY_URGENTwcspbrk_ZNK4Glib6RefPtrIN3Gdk2GCEEptEv_M_refdatatm_gmtoff_sbuf_ZNSs4_Rep11_S_max_sizeE_ZN4Glib7ustringaSERKS0_strtoullfwprintflong intjoinNORMALIZE_NFD_ZNK4Glib6RefPtrIN3Gdk8ColormapEEneERKS3_Colormap_ZNKSs7_M_dataEv_ZNK4Glib7ustring13find_first_ofEPKcmmtemp_ZNSs4_Rep13_M_set_leakedEv_ZN3Gdk5Color7set_hsvEdddgchar_ZNK4Glib7ustring12find_last_ofEPKcmwctrans_tg_utf8_skipget_xget_y_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiERKli_col_LED_ZNK3Gdk5Color9get_pixelEv_ZN3Gdk9Rectangle4joinERKS0__Atomic_wordcasefold_collate_key._300allocator_ZNK9__gnu_cxx17__normal_iteratorIPcSsEixERKlGDK_2BUTTON_PRESSGDK_LEAVE_NOTIFYwprintf_ZN3Gdk9Rectangle9intersectERKS0__ZNSs9_M_mutateEmmmthread_yieldfloat_ZNK4Glib7ustring8casefoldEv_M_repmbrlen_ZNK4Glib7ustring17find_first_not_ofERKS0_m_ZNSs9push_backEcupperGThreadFunc_Repputchar_Ios_Fmtflags_M_replace_auxrandresize_ZNSt6locale2idaSERKS0_GDK_DROP_FINISHEDColor_ZN4Glib7ustring7replaceENS_16ustring_IteratorIN9__gnu_cxx17__normal_iteratorIPcSsEEEES6_PKc_next_ZNSt14numeric_limitsIfE12has_infinityE_ZNKSs17find_first_not_ofEcm_ZNK9__gnu_cxx13new_allocatorIcE7addressERcset_height_ZNK3Gdk5Color9get_red_pEvSCALE_MEDIUM_ZNSt8ios_base4leftEgunichar_ZNSt8ios_base3outEhas_zero_area_ZNSsaSERKSsRefPtr_ZN3Gdk5Color9set_greenEt_ZNK3Gdk9Rectangle5get_yEvg_class_M_coalesce_ZNK4Glib7ustring17find_first_not_ofEPKcmm_ZNK4Glib7ustring3endEvGMutexustring_Iterator<__gnu_cxx::__normal_iterator, std::allocator > > >c_strdenorm_absent_ZNK4Glib7ustring8validateEvbadbit_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4___count__value_ZN4Glib6RefPtrIN3Gdk8DrawableEEaSERKS3__M_replace_categories_ZNSt6locale7numericEfgetwc_ZN7LCDView3setEPKc_ZNSs6assignEPKcm_ZNSt10money_base20_S_construct_patternEcccfgetwsGDK_DELETEint_p_sign_posn_ZNKSt6localeeqERKS__ZN4Glib7ustring5eraseEmmtm_sec_GdkColorGdkEventExposealnum_ZNSt8ios_base5rightE_ZN3Gdk9Rectangle5set_xERKi_S_ios_seekdir_enddeallocatepthread_once_tstrcoll_ZNKSt6locale2id5_M_idEv_ZNSs4_Rep12_S_empty_repEvmon_decimal_point_ZN9__gnu_cxx17__normal_iteratorIPcSsEmIERKl_ZNKSs17find_first_not_ofEPKcm__off64_tunitbuf_ZNK4Glib6RefPtrIN3Gdk8ColormapEEptEvGDK_FOCUS_CHANGE_ZNSt8ios_base8internalEwscanf_ZNSs7replaceEmmRKSs_S_showpoint_IO_lock_ti_col_bg_ZN4Glib7ustring6assignEPKcGDK_WINDOW_STATE_ZN4Glib7ustring6resizeEmjstringlong long intRefPtr_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs_ZNSs9_M_assignEPcmcgoodbiti_code_ZNKSs12find_last_ofEcm_S_dec_ZNK4Glib6RefPtrIN3Gdk8ColormapEEeqERKS3_GCC: (GNU) 4.1.2 (Ubuntu 4.1.2-0ubuntu4).symtab.strtab.shstrtab.rela.text.data.bss.debug_abbrev.rela.debug_info.rela.debug_line.gcc_except_table.rela.text._ZTv0_n32_N7LCDViewD0Ev.rela.text._ZThn16_N7LCDViewD0Ev.rela.text._ZTv0_n32_N7LCDViewD1Ev.rela.text._ZThn16_N7LCDViewD1Ev.rodata.str1.1.rodata.cst8.rela.rodata._ZTV7LCDView.rela.rodata._ZTT7LCDView.rela.rodata._ZTC7LCDView0_N3Gtk11DrawingAreaE.rela.rodata._ZTC7LCDView0_N3Gtk6WidgetE.rela.rodata._ZTC7LCDView0_N3Gtk6ObjectE.rela.rodata._ZTC7LCDView0_N4Glib6ObjectE.rela.rodata._ZTC7LCDView16_N3Atk11ImplementorE.rela.rodata._ZTC7LCDView16_N4Glib9InterfaceE.rela.rodata._ZTC7LCDView1216_N4Glib10ObjectBaseE.rodata._ZTS7LCDView.rela.rodata._ZTI7LCDView.rela.debug_frame.rela.eh_frame.debug_loc.rela.debug_pubnames.rela.debug_aranges.debug_ranges.debug_str.comment.note.GNU-stack.group<@?3<H?4<P?><X??<`(?6<?<?[ bP` ?&,1Dm~?lh? U: P`?ax` sx?p ? ? ?2    ?6 1?P@ K ?   z& ?" - ?$ /?&` /?(+ &1?*Yp T1?,0 @2H?/X2?14?3 M@6?6)0X60?8 Y00^#i"*,""C68@- PI     "$&(*,./13568:;= <-Gd" " ! &!3Le|" " P ,Hd Npb(=\ 0L!/4Me4[LsW' \    ? t    M    G    - e   (\+mMo! !"!!$=!&Z!(}!*!,p @_~*E`r %Ai.E\{!. lcdview.cc.LC16.LC17.LC18_Unwind_Resume_ZN7LCDView10on_realizeEv_ZN3Gtk6Widget10on_realizeEv_ZN3Gtk6Widget10get_windowEv_ZN3Gdk6Window14set_backgroundERKNS_5ColorE__gxx_personality_v0_ZTv0_n32_N7LCDViewD0Ev_ZThn16_N7LCDViewD0Ev_ZN7LCDViewD0Ev_ZTV7LCDView_ZdaPv_ZN3Gdk5ColorD1Ev_ZTT7LCDView_ZN3Gtk11DrawingAreaD2Ev_ZN4Glib10ObjectBaseD2Ev_ZN4sigc9trackableD2Ev_ZdlPv_ZTv0_n32_N7LCDViewD1Ev_ZThn16_N7LCDViewD1Ev_ZN7LCDViewD1Ev_ZN7LCDViewD2Ev_ZN7LCDView10invalidateEv_ZNK3Gtk6Widget11is_realizedEv_ZNK3Gtk6Widget14get_allocationEv_ZN3Gdk9Rectangle5set_xERKi_ZN3Gdk9Rectangle5set_yERKi_ZN3Gdk6Window15invalidate_rectERKNS_9RectangleEb_ZN7LCDView3setEPKc_ZN7LCDViewC2EPKc_ZN3Gtk11DrawingAreaC2Ev_ZN3Gdk5ColorC1Ev_Znam_ZN4Glib7ustringC1EPKc_ZN3Gdk5Color3setERKN4Glib7ustringE_ZN4Glib7ustringD1Ev_ZN3Gtk6Widget12get_colormapEv_ZN3Gdk8Colormap11alloc_colorERNS_5ColorEbb_ZN7LCDView15on_expose_eventEP15_GdkEventExpose_ZNK3Gtk6Widget10get_heightEv_ZN3Gdk2GC6createERKN4Glib6RefPtrINS_8DrawableEEE_ZN3Gdk2GC14set_foregroundERKNS_5ColorE_ZNK3Gtk6Widget9get_widthEv_ZN3Gdk8Drawable14draw_rectangleERKN4Glib6RefPtrIKNS_2GCEEEbiiii_ZN7LCDViewC1EPKc_ZN4sigc9trackableC2Ev_ZN4Glib10ObjectBaseC2Ev_ZTI7LCDView_ZN3Gtk6Object10set_manageEv_ZN3Gtk6Object15destroy_notify_Ev_ZN3Gtk6Widget7on_showEv_ZN3Gtk6Widget7on_hideEv_ZN3Gtk6Widget6on_mapEv_ZN3Gtk6Widget8on_unmapEv_ZN3Gtk6Widget12on_unrealizeEv_ZN3Gtk6Widget15on_size_requestEP15_GtkRequisition_ZN3Gtk6Widget16on_size_allocateERN3Gdk9RectangleE_ZN3Gtk6Widget16on_state_changedENS_9StateTypeE_ZN3Gtk6Widget17on_parent_changedEPS0__ZN3Gtk6Widget20on_hierarchy_changedEPS0__ZN3Gtk6Widget16on_style_changedERKN4Glib6RefPtrINS_5StyleEEE_ZN3Gtk6Widget20on_direction_changedENS_13TextDirectionE_ZN3Gtk6Widget14on_grab_notifyEb_ZN3Gtk6Widget15on_child_notifyEP11_GParamSpec_ZN3Gtk6Widget20on_mnemonic_activateEb_ZN3Gtk6Widget13on_grab_focusEv_ZN3Gtk6Widget8on_focusENS_13DirectionTypeE_ZN3Gtk6Widget8on_eventEP9_GdkEvent_ZN3Gtk6Widget21on_button_press_eventEP15_GdkEventButton_ZN3Gtk6Widget23on_button_release_eventEP15_GdkEventButton_ZN3Gtk6Widget15on_scroll_eventEP15_GdkEventScroll_ZN3Gtk6Widget22on_motion_notify_eventEP15_GdkEventMotion_ZN3Gtk6Widget15on_delete_eventEP12_GdkEventAny_ZN3Gtk6Widget18on_key_press_eventEP12_GdkEventKey_ZN3Gtk6Widget20on_key_release_eventEP12_GdkEventKey_ZN3Gtk6Widget21on_enter_notify_eventEP17_GdkEventCrossing_ZN3Gtk6Widget21on_leave_notify_eventEP17_GdkEventCrossing_ZN3Gtk6Widget18on_configure_eventEP18_GdkEventConfigure_ZN3Gtk6Widget17on_focus_in_eventEP14_GdkEventFocus_ZN3Gtk6Widget18on_focus_out_eventEP14_GdkEventFocus_ZN3Gtk6Widget12on_map_eventEP12_GdkEventAny_ZN3Gtk6Widget14on_unmap_eventEP12_GdkEventAny_ZN3Gtk6Widget24on_property_notify_eventEP17_GdkEventProperty_ZN3Gtk6Widget24on_selection_clear_eventEP18_GdkEventSelection_ZN3Gtk6Widget26on_selection_request_eventEP18_GdkEventSelection_ZN3Gtk6Widget25on_selection_notify_eventEP18_GdkEventSelection_ZN3Gtk6Widget21on_proximity_in_eventEP18_GdkEventProximity_ZN3Gtk6Widget22on_proximity_out_eventEP18_GdkEventProximity_ZN3Gtk6Widget26on_visibility_notify_eventEP19_GdkEventVisibility_ZN3Gtk6Widget15on_client_eventEP15_GdkEventClient_ZN3Gtk6Widget18on_no_expose_eventEP12_GdkEventAny_ZN3Gtk6Widget21on_window_state_eventEP20_GdkEventWindowState_ZN3Gtk6Widget16on_selection_getERNS_13SelectionDataEjj_ZN3Gtk6Widget21on_selection_receivedERKNS_13SelectionDataEj_ZN3Gtk6Widget13on_drag_beginERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk6Widget11on_drag_endERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk6Widget16on_drag_data_getERKN4Glib6RefPtrIN3Gdk11DragContextEEERNS_13SelectionDataEjj_ZN3Gtk6Widget19on_drag_data_deleteERKN4Glib6RefPtrIN3Gdk11DragContextEEE_ZN3Gtk6Widget13on_drag_leaveERKN4Glib6RefPtrIN3Gdk11DragContextEEEj_ZN3Gtk6Widget14on_drag_motionERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZN3Gtk6Widget12on_drag_dropERKN4Glib6RefPtrIN3Gdk11DragContextEEEiij_ZN3Gtk6Widget21on_drag_data_receivedERKN4Glib6RefPtrIN3Gdk11DragContextEEEiiRKNS_13SelectionDataEjj_ZN3Gtk6Widget17on_get_accessibleEv_ZN3Gtk6Widget17on_screen_changedERKN4Glib6RefPtrIN3Gdk6ScreenEEE_ZN3Gtk6Widget39dispatch_child_properties_changed_vfuncEjPP11_GParamSpec_ZN3Gtk6Widget14show_all_vfuncEv_ZN3Gtk6Widget14hide_all_vfuncEv_ZN3Gtk6Widget20get_accessible_vfuncEv_ZN3Atk11Implementor21ref_accessibile_vfuncEv_ZNK4Glib10ObjectBase9referenceEv_ZNK4Glib10ObjectBase11unreferenceEv_ZTv0_n56_N3Gtk6Object15destroy_notify_Ev_ZTv0_n64_N3Gtk6Object10set_manageEv_ZTC7LCDView0_N3Gtk11DrawingAreaE_ZTC7LCDView0_N3Gtk6WidgetE_ZTC7LCDView0_N3Gtk6ObjectE_ZTC7LCDView0_N4Glib6ObjectE_ZTC7LCDView16_N3Atk11ImplementorE_ZTC7LCDView16_N4Glib9InterfaceE_ZTC7LCDView1216_N4Glib10ObjectBaseE_ZTIN3Gtk11DrawingAreaE_ZN3Gtk11DrawingAreaD1Ev_ZN3Gtk11DrawingAreaD0Ev_ZN3Gtk6Widget15on_expose_eventEP15_GdkEventExpose_ZThn16_N3Gtk11DrawingAreaD1Ev_ZThn16_N3Gtk11DrawingAreaD0Ev_ZTv0_n32_N3Gtk11DrawingAreaD1Ev_ZTv0_n32_N3Gtk11DrawingAreaD0Ev_ZTIN3Gtk6WidgetE_ZN3Gtk6WidgetD1Ev_ZN3Gtk6WidgetD0Ev_ZThn16_N3Gtk6WidgetD1Ev_ZThn16_N3Gtk6WidgetD0Ev_ZTv0_n32_N3Gtk6WidgetD1Ev_ZTv0_n32_N3Gtk6WidgetD0Ev_ZTIN3Gtk6ObjectE_ZN3Gtk6ObjectD1Ev_ZN3Gtk6ObjectD0Ev_ZTv0_n32_N3Gtk6ObjectD1Ev_ZTv0_n32_N3Gtk6ObjectD0Ev_ZTIN4Glib6ObjectE_ZN4Glib6ObjectD1Ev_ZN4Glib6ObjectD0Ev_ZTv0_n32_N4Glib6ObjectD1Ev_ZTv0_n32_N4Glib6ObjectD0Ev_ZN4Glib10ObjectBase15destroy_notify_Ev_ZN4Glib10ObjectBase10set_manageEv_ZTIN3Atk11ImplementorE_ZN3Atk11ImplementorD1Ev_ZN3Atk11ImplementorD0Ev_ZTv0_n32_N3Atk11ImplementorD1Ev_ZTv0_n32_N3Atk11ImplementorD0Ev_ZTIN4Glib9InterfaceE_ZN4Glib9InterfaceD1Ev_ZN4Glib9InterfaceD0Ev_ZTv0_n32_N4Glib9InterfaceD1Ev_ZTv0_n32_N4Glib9InterfaceD0Ev_ZTIN4Glib10ObjectBaseE__cxa_pure_virtual_ZTS7LCDView_ZTVN10__cxxabiv120__si_class_type_infoE/0-1- 6 6 6@788 9: 9 ;</888= 9E:Q 9V;b<j- 6  6 6@788 9: 9 ;'8085 9=:I 9N;Z<b-788:8"8.:6-ZCyDEF0G-JKKLH M$N,O9PPQo wMNOPQd :l - 8 8 O S# 0[ T P Q$ P> Q " U # V $ # 0 # #; #_ # W V7-Y 9Z 9 J 6  6' 6@/K;KhLwH MNOPQ MNOPQ<-88  9(:2 97;DO#=<jB  b -% p ) O). 9 @ 50G N U T\ Kc u T| &]  4F ( A O F   ! 0 ,$? 2N }] B$l +{  1  5 A F '5 . = 8 Q 5% : 5 A E H U O e V u  2 * ;6 !  Z [ ># DG T?O x] /k 7y b  ] , _X ~T v   C\ *1b oVl 9t Pz Z 7 f< #4 6 #4 J !& | W  ^ S 7 x. : P  % R, ]3 : >A N/I 9<Q OX _ f v6s KJ{ / V + /  -  p 8   G/ s. &7 7N f "1 *  ) `, dC1 0Y q   I F  : SO W   S) n1= 3V HNy 5 A & . 7 % JB ,i ) `< H6 & F<   \ /L 4 1 tK |, 8: -6H [V d 8r n; $ 4  t2 + [  =) (; \+ D9 G IU c 1q P$ r  tT 3  , 1 j R+ M 'p ' ++ &L e0  ][ [' CD +a ~ T   j  EW { / 0R !*y  z  OQ   . QP ))w 8 R>  C tL Q- EI Re WQ ? ( " ( 8" LO =k  2  2  R1 N?I 'k 5+ C  V ] O AT; PW s ;G R R @  ' '7 -Q X<W Xr X<x  #  r\  SE 6M ? 1 @ *k > > KS  GV < ;  bD W" :7) U@ :7G c >Wj N B  * \ . /  VS ! }/(! /! P! W! s! z! %! @! F! R! s^! L! +! L" Z"" L)" >E" LL" LRh" =;o" V" " Z" " Q" K" K" K# K(# KP# Ks# K# K# 2# ;# IY# ;# 7D$ ;$ 5$ G;<$ >RR$ G;Y$ v$ ^$ A$ L$ R$ L$ ^=$ 6$ ]9% 6% 4% 5$% ::% e)A% jW% SE^% ?t% W{% -% W% F% )% b?% .% % C% 2 & 5.& && 6-& c2H& 6O& }p& 4& (& !& & !& )& !& lD' q' -4' q;' _.`' qg' ^7' q' YJ' q' 2'  ' xW' 0O' 3:( 0O( 5,;( 0OB( x[b( 0Oi( o"( 0O( R( C0( ( C0( a!( C0) 9@+) C02) WW) C0^) 0~) C0) N) C0) ) *) @) *) 3* *!* IA* =H* ]m* =t* 7* =* 8* =* + =+ 1+ =8+ 8^]+ =d+ + =+ &+ =+ + =+ L, =#, >M, =T, C-~, =, yP, W, <, D, - M;- K9- '@- He- l- - Z- - F- ?- a- :- O- $. O . p-. O4. T. O[. u{. [. . [. 5. [. 9. [. 5/ #/  C/ J/ o/ v/ S1/ / 2J/ / f/ / XG0 0 qS70 >0 ^^0 :e0 z40 :0 80 :0 ]0 :0 X0 K1 2&1 K-1 7R1 KY1 y1 K1 G1  1 k1 1 E1 1 ,2 2 6K2 R2 -m2 t2 2 2 a(2 +0 3 VA3 =<3 QB3 TM3 V S3 ?^3 +d3 Gp3 v3 \3 } 3 53 63 qJ3 )3 TU3 3 H3 63 4 iT4 %&4 ,4 L4 S4 =r4 7x4 4 4 4 4 <4 )4 E:5 !5 5 5 s5 \N5 45 {5 5 5 6 ? 6 +6 )6 |=6 |V6 |o6 |6 |6 /6 ;6 6 ^6 27 7 E7 [87 v>7 QY7 /`7 = q7 Ax7 {L7 |7 87 7 $7 27 jR7 M7 Y7 88 |H8 )O8 `8 ;g8 W8 M8 \8 =8 9 .9 *&9 569 >=9 p>I9 h6P9 D'\9 c9 1o9 +v9 69 G9 9  9 9 Z;9 9 I9 @9 9 %9 CF: CF4: CFO: #k: CF: ;: a: : : 1[: CK: 1: K* ; ; /; 6; vO; V; ; 0; U; ; (< -'< KF< -M< X< >_< Ak< !r< [< < 3< 3< < _#= 4#= bM= !$= := !A= P \= "c= Gy= "= = 6= V= != '= = $> )#> \#> %*> UA> xH> > J> |8> 9> > U> =F> +> > Q> 4%> C? V6 ? `3? ;C? !L? [? G)w? &? ? 0? E gE .E SE YE YE E F F kS"F P-F K5F ;F TAF "GF =MF "OSF 9EYF "_F *EfF FlF ;IrF YxF <F :F F 9F 'IF VYF "^F *F J=F 'F <F *F OF FG RG F6G ;=G TXG _G HvG FG FG FG FG F H F+H ;2H eMH ;TH c4oH ;vH "H ;H "H 0OH CH 0OH %I 0OI P(I 0O/I ]JI 0OQI }%qI 0OxI b%I !I bFI !I I !I QI !J Q J  'J N>J  EJ N\J qcJ ~J qJ .?J qJ .J qJ J qJ K q!K HAK C0HK :hK C0oK FK C0K K C0K h$K C0K L C0L DL C0KL AkL C0rL {L C0L L C0L {5L =L (M =M 2DM =KM uM =|M KM =M bM =M DN = N M/N =6N E`N =gN XN =N CN =N BN CN 41O *O [.O *5O fNKO *RO mO *tO O O }EO O 6O O zP  P :P AP kP rP $P nP P TVP $8P 6P OP RQ  Q ;Q G;BQ gQ_Q *uQ G;|Q Q YQ LQ Q 6Q >Q LQ /=R 6 R .#R O*R {JR OQR FvR O}R FR OR !GR OR DR [R OS [S >S [ES @eS [lS <S [S b:S S (S S (UT  T * -T 4T B5TT [T h,{T T %T T KT T UT T YU #U CU :JU LWjU :qU YU :U 9U :U ;U :U 9 V KV O2V K9V ^V KeV #(V KV V KV ,V 5.V JV 5V 2S W e)W ?*W #1W QGW WNW ]jW WqW SW )W W SEW 0W .W 4W 7W ? X X F&X :?] YE] ?K] Q] 0W] V]] ^]c] 7i] 4o] 3;u] ({] M] S] MB] I,] p7] N] C] N] T] H] W]  ] ] 3] ] ]] w(] P] FA] ] W ^ U^ S^ 1)^ &=9^ Z?^ z;N^ b^ {^ K^ 8^ K^ ^ ^ T^ *V^ u1_ V_ u1#_ ;.C_ ;YI_ R__ Ue_ a8{_ 1D_ C\_ U_ Y_ \D_ 7O_ _ L_ +_  ` 0` \E"` X(` Du` &=` Z` $ ` W` W` ;` M` S a a F)a K/a J0Ea KKa Aaa Nga I}a Wa Wa Ca t!a Ya { a _Qa Q b { b ;2b $8b pUYb _b $b jCb !b b :5b CDb b b c c FPc ^3c 9c fYPc Vc Lmc 6sc c !'c Vc NGc Xc o5c 2c sc d@;d Td 0hd L(|d d L(d L(d d &d ;d e E e c(e v/e H Je 4#Pe ITfe me e Ce ce e iVf ]f V,f >;f Jf ^Yf if 3)yf lf f f )g d[g g uO2g }8g 3Xg ^g g 0g L(g g L(g L(g g jh ;h #3h E:h ^Uh v\h Twh 4#}h 8]h h h Ch %"h 0h L( i 'i L(@i L(Yi _i Dvi ;|i ! i Ei ,i vi 6i 4#i zi i j Cj LIj 0]j L(qj j L(j L(j j vDj ;j [j Ek #k v$k @?k 4#Ek [k bk ;%xk Ck 8k 'Ik 0k L(k l L(,l L(El Kl bl ;hl ?2l El Ql vl Gl 4#l % l l /m Cm ;m VYm ,m ,m ,m m OUn ,n l *n2n:n ?n ,Hn 8Qn \nodnn ,n l n ,n l n 0nnn n nnoo|o P'o 0o8oRoZoIbo ko 1to z}oooPoo o ,o $o @o oooop pn%p ,.p m=p Bp Jp\[p lp ,p ,p ,p l p ,p l p 0ppp q q q !q ?.q6qEq OqTWqifqnq}qqq1 qI qp q q q q ,q ,%r ,:r OU\r ,r ,r l r ,r ,r l r rr  r ,s  s ?s Fs Ts Jas ns ss P}s Bs s |s ps, sJ sg s tg t| "t| *t >t Ht Pt `t ht {t t t t tB tW tW tm t t  u u $u ,u AuIuXu`u3su3{u]u]uuuuuuubu  u  v  v?vJ*v w 4vz p>z h6z D'%z ,z 18z +?z 6Kz GRz ^z  ez qz Z;xz z Iz z dz z <z s z 1z o]z Rz Y { +{ w/{ -\*{ =N1{ g'?{ bBF{ T{ 8[{ i{ 4Ap{ L~{ 4'{  { 0]{ { k{ *{ { 99{ H{ @{ | +| _0| 2* } } ! } *&} R3} 9} "E} 'K} :X} '\^} !k} Gr} N"}} } x} -} } >} A} } =} } } } A} } E} ~ < ~ ~ o~ &~ H1~ 8~ ;C~ <I~ *Z~ @Ba~ \ [ @(50\8]@^H_P`Xa`.hbpcxdefghijklmnopqrstRuvw x(y0z8{@|H}P~X`hpx8[@?H4P[>36     (p08 @ HpPxX`@hp@x66@@ (0\8]@^H_P`Xa`/hbpcxdefghijklmnopqrstuvw x(y0z8{@|H}P~X`hpx8@HP (0\8]@^H_P`Xa`/hbpcxdefghijklmnopqrstuvw x(y0z8{@|H}P~X`hpx8@HP (0\8]x (hpx (0px (hpx8@HPX`h  < @d h  P   p4 8 t x 2( 1 H Q p y <  c P    p 0  9 h q C  gtkguitune/logview.cc0000644000175000017500000002526111063701271013675 0ustar flohfloh// logview.cc // // logarithmic scale for tunes // // Copyright (C) 1999 Florian Berger // Email: florian.berger@jk.uni-linz.ac.at // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License Version 2 as // published by the Free Software Foundation; // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // // #include #include #include #include "logview.h" #include "resources.h" const char *note_ger[12] = {"A","B", "H","C","Db","D","Eb","E","F","Gb","G","Ab"}; const char *note_us[12] = {"A","Bb","B","C","Db","D","Eb","E","F","Gb","G","Ab"}; const char *note_ger_alt[12] = {"A","B", "H","C","C#","D","D#","E","F","F#","G","G#"}; const char *note_us_alt[12] = {"A","A#","B","C","C#","D","D#","E","F","F#","G","G#"}; const char **note; const char *tuning_nat[23] = {"25/24","16/15","9/8","7/6","75/64","6/5","5/4","32/25","125/96", "4/3","25/18","45/32","36/25","3/2","25/16","8/5","5/3","125/72", "16/9","9/5","15/8","48/25","125/64"}; // public: LogView::LogView() : Gtk::DrawingArea() { grundton=0; nat_tuning_on=false; note=note_us; lfreq=-1.0; x0=10; y0=26; h=10; i_col_draw. set("black"); get_colormap()->alloc_color(i_col_draw ); i_col_shad. set("white"); get_colormap()->alloc_color(i_col_shad ); i_col_bg2. set("#999"); get_colormap()->alloc_color(i_col_bg2 ); i_col_pointer. set("green"); get_colormap()->alloc_color(i_col_pointer); i_col_ticks. set("#666"); get_colormap()->alloc_color(i_col_ticks ); i_col_marks. set("red" ); get_colormap()->alloc_color(i_col_marks ); set_events ( Gdk::EXPOSURE_MASK // | Gdk::LEAVE_NOTIFY_MASK | Gdk::BUTTON_PRESS_MASK // | Gdk::POINTER_MOTION_MASK // | Gdk::POINTER_MOTION_HINT_MASK ); } LogView::~LogView() {}; int LogView::lfreq_pos(double lfreq) { return (int)( (double)x0+(double)(get_width()-2*x0) *(double)(lfreq-lfreq0)/LOG_2+0.5 ); } int LogView::pos_note(int pos) { return( (pos-x0)*12/(get_width()-2*x0) ); } void LogView::draw_arrow() { int x,y,x1,x2; Glib::RefPtr win = get_window(); if (!i_GC) i_GC = Gdk::GC::create( win ); i_GC->set_foreground( i_col_bg2 ); win->draw_rectangle( i_GC, true, x0,y0+1,get_width()-2*x0,h-1 ); if (lfreq >= 0.0) { x=lfreq_pos(lfreq); y=y0; i_GC->set_foreground(i_col_pointer); x1=x-9; if (x1get_width()-x0) x2 = get_width()-x0; win->draw_rectangle( i_GC, true, x1,y+1,x2-x1+1,h-1 ); i_GC->set_foreground(i_col_draw); win->draw_line( i_GC, x,y+1,x,y+h-1 ); } } void LogView::change_lfreq(double freq) { double mldf,ldf; int i,note; lfreq=freq; while (lfreq>lfreq1) lfreq-=LOG_2; while (lfreq big_layout = create_pango_layout( "" ); big_layout->set_font_description( Pango::FontDescription("Sans 13px") ); Glib::RefPtr small_layout = create_pango_layout( "" ); small_layout->set_font_description( Pango::FontDescription("Sans 8px") ); if (!i_GC){ Glib::RefPtr win_ = get_window(); i_GC = Gdk::GC::create( win_ ); } Glib::RefPtr win = get_window(); lfreq0 = KAMMERTON_LOG - D_NOTE_LOG/2.0; lfreq1 = KAMMERTON_LOG - D_NOTE_LOG/2.0 + LOG_2; for(i=0;i<12;i++){ freqs [i] = KAMMERTON * pow(D_NOTE,i); lfreqs[i] = KAMMERTON_LOG + (double)i*D_NOTE_LOG; } for(i=0;i<23;i++){ sscanf(tuning_nat[i],"%d/%d",&z,&n); // printf("z=%d,n=%d\n",z,n); nat_freq[i]=freqs[grundton]*(double)z/(double)n; nat_lfreq[i]=log(nat_freq[i]); if ( nat_lfreq[i]>lfreq1 ){ nat_lfreq[i]-=LOG_2; nat_freq[i]/=2.0; } } // lfreq0=lfreqs[0]-D_NOTE_LOG/2.0; i_GC->set_foreground( i_col_ticks ); for(k=0;k<120;k++){ x2=lfreq_pos(KAMMERTON_LOG + (double)(k-5)/10.0*D_NOTE_LOG); // x2=(int)( (double)x0+(double)(get_width()-2*x0) // *(double)k/120.0+0.5 ); win->draw_line( i_GC, x2,y0,x2,y0-((k%5==0)?5:3) ); win->draw_line( i_GC, x2,y0+h,x2,y0+h+((k%5==0)?5:3) ); } if(nat_tuning_on){ // draw natural tuning small_layout->set_text( "Key" ); Pango::Rectangle extents = small_layout->get_pixel_logical_extents(); i_GC->set_foreground( i_col_draw ); x2=lfreq_pos(lfreqs[grundton]); win->draw_line( i_GC, x2,y0+h,x2,y0+h+10+ +extents.get_height()*2 ); i_GC->set_foreground( i_col_shad ); win->draw_layout( i_GC, x2-extents.get_width()/2+1, y0+h+10+extents.get_ascent() +extents.get_height()*2+1, small_layout ); i_GC->set_foreground( i_col_draw ); win->draw_layout( i_GC, x2-extents.get_width()/2, y0+h+10+extents.get_ascent() +extents.get_height()*2, small_layout ); i_GC->set_foreground( i_col_marks ); for(k=0;k<23;k++){ x2=lfreq_pos(nat_lfreq[k]); // p.drawLine(x2,y0+h,x2,y0+h+10); win->draw_line( i_GC, x2,y0+h,x2,y0+h+10+ +extents.get_height()*(k%3) ); } for(k=0;k<23;k++){ small_layout->set_text( tuning_nat[k] ); extents = small_layout->get_pixel_logical_extents(); x2=lfreq_pos(nat_lfreq[k]); i_GC->set_foreground( i_col_shad ); win->draw_layout( i_GC, x2-extents.get_width()/2+1, y0+h+10+extents.get_ascent() +extents.get_height()*(k%3)+1, small_layout ); i_GC->set_foreground( i_col_draw ); win->draw_layout( i_GC, x2-extents.get_width()/2, y0+h+10+extents.get_ascent() +extents.get_height()*(k%3), small_layout ); } } i_GC->set_foreground( i_col_draw ); win->draw_line( i_GC, x0,y0,get_width()-10,y0 ); win->draw_line( i_GC, x0,y0+h,get_width()-10,y0+h ); for(i=0;i<12;i++){ x=lfreq_pos(lfreqs[i]); // x=(int)( (double)x0+(double)(get_width()-2*x0) // *(double)(lfreqs[i]-lfreq0)/LOG_2+0.5 ); y=y0; win->draw_line( i_GC, x,y,x,y-7 ); if(!nat_tuning_on) win->draw_line( i_GC, x,y+h,x,y+h+7 ); big_layout->set_text( note[i] ); Pango::Rectangle extents = big_layout->get_pixel_logical_extents(); i_GC->set_foreground( i_col_shad ); win->draw_layout( i_GC, x-extents.get_width()/2+1, y-10+1 - extents.get_height(), big_layout ); i_GC->set_foreground( i_col_draw ); win->draw_layout( i_GC, x-extents.get_width()/2, y-10 - extents.get_height(), big_layout ); if(!nat_tuning_on){ for(k=0;k<4;k++){ sprintf(str,"%.2f",(double)(freqs[i]/8.0*(1<set_text( str ); extents = small_layout->get_pixel_logical_extents(); i_GC->set_foreground( i_col_shad ); win->draw_layout( i_GC, x-extents.get_width()/2+1, y+h+10+extents.get_ascent()+1 +extents.get_height()*k, small_layout ); i_GC->set_foreground( i_col_draw ); win->draw_layout( i_GC, x-extents.get_width()/2, y+h+10+extents.get_ascent() +extents.get_height()*k, small_layout ); } } } // y=y0+h+10+p.fontMetrics().get_height()*5; // p.setFont(QFont("System",12)); // p.drawText(x0,y,"Frequancy [Hz]:"); } bool LogView::on_expose_event(GdkEventExpose* event) { Gtk::DrawingArea::on_expose_event(event); if (event->area.y <= y0 || event->area.y + event->area.height > y0 + h) draw_it(); draw_arrow(); return true; } bool LogView::on_button_press_event(GdkEventButton* p0) { int x,y; get_pointer(x,y); printf("pointer:%d,%d\n",x,y); grundton=pos_note(x); printf("grundton=%d\n",grundton); // GdkEventExpose ev; // expose_event(&ev); invalidate(); Gtk::DrawingArea::on_button_press_event(p0); return true; } void LogView::set_nat_tuning(bool state) { nat_tuning_on = state; invalidate(); } void LogView::invalidate(void) { // Invalidate the whole window if (is_realized()) { Gdk::Rectangle rect = get_allocation(); rect.set_x(0); rect.set_y(0); // The gtkmm bindings won't let you call invalidate_rect // with a NULL argument to clear the whole window, so you // have to jump through these hoops get_window()->invalidate_rect(rect, false); } } void LogView::invalidate_arrow(void) { if (is_realized()) { Gdk::Rectangle rect = get_allocation(); rect.set_x(0); rect.set_y(y0 + 1); rect.set_height(h - 1); get_window()->invalidate_rect(rect, false); } } gtkguitune/COPYING0000644000175000017500000004311011062733003012733 0ustar flohfloh GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License.