darksnow-0.6.1/0000755000175000017500000000000010603665666012026 5ustar bartbartdarksnow-0.6.1/README0000644000175000017500000000011210434101030012644 0ustar bartbartplease read documentation/README.* por favor leia documentation/README.* darksnow-0.6.1/global.h0000644000175000017500000001014710434101030013406 0ustar bartbart/* Darksnow - A GUI for darkice * Copyright (C) 2004-2005 Rafael Diniz * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This source code 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. * Please refer to the GNU Public License for more details. * * You should have received a copy of the GNU Public License along with * this source code; if not, write to: * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #define __GLOBAL_H__ #ifndef __GTK_H__ #include #endif /* shared area */ void *shared_area; /* darkice execution child process pid */ int pid; /* file descriptor used by darkice output pipe */ int darkice_fd; /* the user home */ char home[64]; char darksnow_cfg[64]; char darkice_cfg[64]; char darksnow_temp[64]; char show_detail; /* main window Widgets */ GtkWidget *window; GtkWidget *button_start; GtkWidget *button_stop; GtkWidget *button_detail; GtkWidget *label_status; GtkWidget *table; /* About Dialog box */ GtkWidget *dialog_about; GtkWidget *label_about; GtkWidget *button_about; /* darkice not found dialog box */ GtkWidget *dialog_darkdep; GtkWidget *label_darkdep; GtkWidget *button_darkdep; /* "kill darkice?" dialog box */ GtkWidget *dialog_darkkill; GtkWidget *label_darkkill; GtkWidget *button_yes_darkkill; GtkWidget *button_no_darkkill; GtkWidget *button_cancel_darkkill; /* menu stuff */ GtkWidget *menu_bar; GtkWidget *menu_file; GtkWidget *menu_item_file; GtkWidget *menu_item_open; GtkWidget *menu_item_save; GtkWidget *menu_item_quit_nd; GtkWidget *menu_item_quit; GtkWidget *menu_help; GtkWidget *menu_item_help; GtkWidget *menu_item_about; GtkWidget *vbox; /* open and save file selectors */ GtkWidget *file_open; GtkWidget *file_save; GtkWidget *file_localdump; /* notebook stuff */ GtkWidget *notebook; GtkWidget *label_notebook_server; GtkWidget *table_server; GtkWidget *label_notebook_audio; GtkWidget *table_audio; GtkWidget *label_notebook_description; GtkWidget *table_description; /* darksnow configuration stuff - button + entry */ GtkWidget *button_localdump; GtkWidget *entry_localdump; GtkWidget *checkbutton_adddate; GtkWidget *label_remotedump; GtkWidget *entry_remotedump; /* darksnow configuration stuff - label + entry */ GtkWidget *label_server; GtkWidget *entry_server; GtkWidget *label_port; GtkWidget *entry_port; GtkWidget *label_mountpoint; GtkWidget *entry_mountpoint; GtkWidget *label_pass; GtkWidget *entry_pass; GtkWidget *label_radioname; GtkWidget *entry_radioname; GtkWidget *label_description; GtkWidget *entry_description; GtkWidget *label_url; GtkWidget *entry_url; GtkWidget *label_genre; GtkWidget *entry_genre; /* darksnow configuration stuff - label + combo box */ GtkWidget *label_icecast; GtkWidget *combo_icecast; GList *glist_icecast; GtkWidget *label_format; GtkWidget *combo_format; GList *glist_format; GtkWidget *label_bitrate; GtkWidget *combo_bitrate; GList *glist_bitrate; GtkWidget *label_bitratemode; GtkWidget *combo_bitratemode; GList *glist_bitratemode; GtkWidget *label_samplerate; GtkWidget *combo_samplerate; GList *glist_samplerate; GtkWidget *label_quality; GtkWidget *combo_quality; GList *glist_quality; GtkWidget *label_bitspersample; GtkWidget *combo_bitspersample; GList *glist_bitspersample; GtkWidget *label_channel; GtkWidget *combo_channel; GList *glist_channel; GtkWidget *label_buffersize; GtkWidget *combo_buffersize; GList *glist_buffersize; GtkWidget *label_device; GtkWidget *combo_device; GList *glist_device; GtkWidget *label_public; GtkWidget *combo_public; GList *glist_public; GtkWidget *label_verbosity; GtkWidget *combo_verbosity; GList *glist_verbosity; /* text view stuff */ GtkWidget *text; GtkTextBuffer *buffer; GtkTextTagTable *tag_table; GtkTextTag *tag; /* text view has to scroll */ GtkWidget *scroll_text; /* The GTK ToolTips */ GtkTooltips *tooltip; darksnow-0.6.1/config_files.c0000644000175000017500000003032710434102335014603 0ustar bartbart/* Darksnow - A GUI for darkice * Copyright (C) 2004-2005 Rafael Diniz * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This source code 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. * Please refer to the GNU Public License for more details. * * You should have received a copy of the GNU Public License along with * this source code; if not, write to: * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include #include #include #include #include #ifndef __GTK_H__ #include #endif #ifndef __GLOBAL_H__ #include "global.h" #endif #ifndef __CONSTANTS_H__ #include "constants.h" #endif #ifndef __CONFIG_FILES_H__ #include "config_files.h" #endif gboolean darksnow_config_store(char opt, char *save_path) { int i; char mp[128]; char *server; char *port; char *mountpoint; char *pass; char *remotedump; char *localdump; char *radioname; char adddate; char *description; char *url; char *genre; char *icecast; char *format; char *bitrate; char *bitratemode; char *samplerate; char *quality; char *bitspersample; char *channel; char *buffersize; char *device; char *public; char *verbosity; FILE *f_darksnow_cfg; /* Entry inputs */ server = (char *) gtk_entry_get_text ( (GtkEntry *) entry_server); port = (char *) gtk_entry_get_text (( GtkEntry *) entry_port); mountpoint = (char *) gtk_entry_get_text ( (GtkEntry *) entry_mountpoint); pass = (char *) gtk_entry_get_text ( (GtkEntry *) entry_pass); radioname = (char *) gtk_entry_get_text ( (GtkEntry *) entry_radioname); description = (char *) gtk_entry_get_text ( (GtkEntry *) entry_description); url = (char *) gtk_entry_get_text ( (GtkEntry *) entry_url); genre = (char *) gtk_entry_get_text ( (GtkEntry *) entry_genre); remotedump = (char *) gtk_entry_get_text ( (GtkEntry *) entry_remotedump); localdump = (char *) gtk_entry_get_text ( (GtkEntry *) entry_localdump); adddate = (char) (gtk_toggle_button_get_active ( GTK_TOGGLE_BUTTON (checkbutton_adddate) ))? '1': '0'; /* Combo box inputs */ icecast = (char *) gtk_entry_get_text ( GTK_ENTRY( GTK_COMBO(combo_icecast)->entry)); format = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO (combo_format)->entry )); bitrate = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_bitrate)->entry)); bitratemode = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_bitratemode)->entry)); samplerate = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_samplerate)->entry)); quality = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_quality)->entry)); bitspersample = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_bitspersample)->entry)); channel = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_channel)->entry)); buffersize = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_buffersize)->entry)); device = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_device)->entry)); public = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_public)->entry)); verbosity = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_verbosity)->entry)); if (!( f_darksnow_cfg = (opt != 0)? fopen(darksnow_cfg, "w") : fopen(save_path, "w"))) { printf("Error: Cannot open %s\n", (opt != 0)? darksnow_cfg: save_path); return FALSE; } /* for compatibility issues, mountpoint can start with slash */ i = 0; while( mountpoint[i] == ' ' || mountpoint[i] == '/' ) i++; strcpy (mp, mountpoint+i); /* Entry writes */ fprintf (f_darksnow_cfg, "server=%s\n", server); fprintf (f_darksnow_cfg, "port=%s\n", port); fprintf (f_darksnow_cfg, "mountpoint=%s\n", mp); fprintf (f_darksnow_cfg, "pass=%s\n", pass); fprintf (f_darksnow_cfg, "radioname=%s\n", radioname); fprintf (f_darksnow_cfg, "description=%s\n", description); fprintf (f_darksnow_cfg, "url=%s\n", url); fprintf (f_darksnow_cfg, "genre=%s\n", genre); fprintf (f_darksnow_cfg, "icecast=%s\n", icecast); fprintf (f_darksnow_cfg, "format=%s\n", format); fprintf (f_darksnow_cfg, "bitrate=%s\n", bitrate); fprintf (f_darksnow_cfg, "bitratemode=%s\n", bitratemode); fprintf (f_darksnow_cfg, "samplerate=%s\n", samplerate); fprintf (f_darksnow_cfg, "quality=%s\n", quality); fprintf (f_darksnow_cfg, "bitspersample=%s\n", bitspersample); fprintf (f_darksnow_cfg, "channel=%s\n", channel); fprintf (f_darksnow_cfg, "buffersize=%s\n", buffersize); fprintf (f_darksnow_cfg, "device=%s\n", device); fprintf (f_darksnow_cfg, "public=%s\n", public); fprintf (f_darksnow_cfg, "verbosity=%s\n", verbosity); fprintf (f_darksnow_cfg, "remotedump=%s\n", remotedump); fprintf (f_darksnow_cfg, "localdump=%s\n", localdump); fprintf (f_darksnow_cfg, "adddate=%c\n", adddate); fclose (f_darksnow_cfg); return TRUE; } gboolean darksnow2darkice_cfg() { FILE *f_darksnow_cfg; FILE *f_darkice_cfg; char destination = 0; int i; /* strings section */ char foo[256] = {0}; char server[256] = {0}; char port[128] = {0}; char mountpoint[128] = {0}; char pass[128] = {0}; char remotedump[256] = {0}; char localdump[256] = {0}; char adddate; char radioname[128] = {0}; char description[256] = {0}; char url[256] = {0}; char genre[128] = {0}; char icecast[128] = {0}; char format[128] = {0}; char bitrate[128] = {0}; char bitratemode[128] = {0}; char samplerate[128] = {0}; char quality[128] = {0}; char bitspersample[128] = {0}; char channel[128] = {0}; char buffersize[128] = {0}; char device[128] = {0}; char public[128] = {0}; if (!(f_darksnow_cfg = fopen(darksnow_cfg, "r"))) { printf("Error: Cannot open %s\n", darksnow_cfg); exit (-1); } if (!(f_darkice_cfg = fopen(darkice_cfg, "w"))) { printf("Error: Cannot open %s\n", darkice_cfg); exit (-1); } /* read de configuration from darksnow config file */ fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, server); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, port); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, mountpoint); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, pass); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, radioname); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, description); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, url); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, genre); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, icecast); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, format); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, bitrate); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, bitratemode); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, samplerate); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, quality); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, bitspersample); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, channel); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, buffersize); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, device); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, public); fscanf(f_darksnow_cfg, "%*[^=]=%*[^\n]\n"); /* the verbosity level is not needed */ fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, remotedump); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, localdump); fscanf(f_darksnow_cfg, "%[^=]=%c\n", foo, &adddate); /* set destination flag - 0-> icecast1, 1->icecast2, 2->shoutcast, 3->file */ if (!strcmp("Icecast 1", icecast)) destination = 0; else if (!strcmp("Icecast 2", icecast)) destination = 1; else if (!strcmp("Shoutcast", icecast)) destination = 2; /* File output support not yet codded */ else if (!strcmp("File", icecast)) destination = 3; /* write the config file for darkice */ /* the reader of the config file */ fprintf(f_darkice_cfg, "[general]"); fprintf(f_darkice_cfg, "\nduration = "); fprintf(f_darkice_cfg, "0"); /* duration of encoding, in seconds. 0 means forever */ fprintf(f_darkice_cfg, "\nbufferSecs = "); fprintf(f_darkice_cfg, "%s", buffersize); /* size of internal slip buffer, in seconds */ fprintf(f_darkice_cfg, "\n\n[input]"); fprintf(f_darkice_cfg, "\ndevice = "); fprintf(f_darkice_cfg, "%s", device); /* OSS, ALSA or JACK */ fprintf(f_darkice_cfg, "\nsampleRate = "); fprintf(f_darkice_cfg, "%s", samplerate); /* sample rate in Hz. try 11025, 22050 or 44100 */ fprintf(f_darkice_cfg, "\nbitsPerSample = "); fprintf(f_darkice_cfg, "%s", bitspersample); /* bits per sample. try 16 */ fprintf(f_darkice_cfg, "\nchannel = "); /* channels. 1 = mono, 2 = stereo */ if (!strcmp(channel, "1 - Mono")) fprintf(f_darkice_cfg, "1"); else fprintf(f_darkice_cfg, "2"); /* destionation type */ switch (destination) { case 0: fprintf(f_darkice_cfg, "\n\n[icecast-0]"); /* icecast 1 version server */ break; case 1: fprintf(f_darkice_cfg, "\n\n[icecast2-0]"); /* icecast 2 version server */ break; case 2: fprintf(f_darkice_cfg, "\n\n[shoutcast-0]"); /* shoutcast server */ /* FIXME - not yet implemented */ break; case 3: fprintf(f_darkice_cfg, "\n\n[file-0]"); /* file output */ /* FIXME - not yet implemented */ break; } /* write bitratemode */ fprintf(f_darkice_cfg, "\nbitrateMode = "); if (!strcmp( gettext("Constant"), bitratemode)) fprintf(f_darkice_cfg, "cbr"); /* Constant bitrate mode */ else if (!strcmp( gettext("Average"), bitratemode)) fprintf(f_darkice_cfg, "abr"); /* average bitrate mode */ else if (!strcmp( gettext("Variable"), bitratemode)) fprintf(f_darkice_cfg, "vbr"); /* variable bitrate mode */ /* write format */ if (destination == 1) { fprintf(f_darkice_cfg, "\nformat = "); if (!strcmp( gettext("mp3"), format)) fprintf(f_darkice_cfg, "mp3"); else if (!strcmp( gettext("ogg/vorbis"), format)) fprintf(f_darkice_cfg, "vorbis"); else if (!strcmp( gettext("aac"), format)) fprintf(f_darkice_cfg, "aac"); else if (!strcmp( gettext("mp2"), format)) fprintf(f_darkice_cfg, "mp2"); } fprintf(f_darkice_cfg, "\nbitrate = "); fprintf(f_darkice_cfg, "%s", bitrate); /* bitrate of the stream sent to the server */ fprintf(f_darkice_cfg, "\nquality = "); fprintf(f_darkice_cfg, "%s", quality); /* encoding quality */ fprintf(f_darkice_cfg, "\nserver = "); fprintf(f_darkice_cfg, "%s", server); fprintf(f_darkice_cfg, "\nport = "); fprintf(f_darkice_cfg, "%s", port); /* port of the IceCast2 server, usually 8000 */ fprintf(f_darkice_cfg, "\npassword = "); fprintf(f_darkice_cfg, "%s", pass); /* source password to the IceCast2 server */ fprintf(f_darkice_cfg, "\nmountPoint = "); fprintf(f_darkice_cfg, "%s", mountpoint); /* mount point of this stream on the IceCast2 server */ fprintf(f_darkice_cfg, "\nname = "); fprintf(f_darkice_cfg, "%s", radioname); /* name of the stream */ fprintf(f_darkice_cfg, "\ndescription = "); fprintf(f_darkice_cfg, "%s", description); /* description of the stream */ fprintf(f_darkice_cfg, "\nurl = "); fprintf(f_darkice_cfg, "%s", url); /* URL related to the stream */ fprintf(f_darkice_cfg, "\ngenre = "); fprintf(f_darkice_cfg, "%s", genre); /* genre of the stream */ fprintf(f_darkice_cfg, "\npublic = "); if (!strcmp( gettext("yes"), public)) fprintf(f_darkice_cfg, "yes"); /* list this stream */ else fprintf(f_darkice_cfg, "no"); /* do not list this stream */ for (i = 0; remotedump[i] != 0 && remotedump[i] == ' '; i++); /* set the remotedumpfile name */ if (remotedump[i] != 0) { fprintf(f_darkice_cfg, "\nremoteDumpFile = "); fprintf(f_darkice_cfg, "%s", remotedump+i); } for (i = 0; localdump[i] != 0 && localdump[i] == ' '; i++); /* set the localdumpfile name */ if (localdump[i] != 0) { fprintf(f_darkice_cfg, "\nlocalDumpFile = "); fprintf(f_darkice_cfg, "%s", localdump+i); fprintf(f_darkice_cfg, "\nfileAddDate = "); fprintf(f_darkice_cfg, "%s", (adddate == '1')? "yes":"no"); } fprintf(f_darkice_cfg, "\n"); fclose(f_darksnow_cfg); fclose(f_darkice_cfg); return TRUE; } darksnow-0.6.1/config_files.h0000644000175000017500000000200510434101030014567 0ustar bartbart/* Darksnow - A GUI for darkice * Copyright (C) 2004-2005 Rafael Diniz * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This source code 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. * Please refer to the GNU Public License for more details. * * You should have received a copy of the GNU Public License along with * this source code; if not, write to: * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #define __CONFIG_FILES_H__ /* writes darksnow config file to disk. if opt != 0, save in path, else, save in darksnow config directory */ gboolean darksnow_config_store( char opt, char *save_path); gboolean darksnow2darkice_cfg(); darksnow-0.6.1/darksnow.c0000644000175000017500000007747710434101512014021 0ustar bartbart/* Darksnow - A GUI for darkice * Copyright (C) 2004-2005 Rafael Diniz * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This source code 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. * Please refer to the GNU Public License for more details. * * You should have received a copy of the GNU Public License along with * this source code; if not, write to: * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __GLOBAL_H__ #include "global.h" #endif /* some defines */ #ifndef __CONSTANTS_H__ #include "constants.h" #endif #ifndef __INTERFACE_H__ #include "interface.h" #endif #ifndef __TOOLTIPS_H__ #include "tooltips.h" #endif int main( int argc, char *argv[], char *envp[]) { DIR *directory; char *foo; char bar[256]; char locale[16]; int i = 0, j = 0, fd; if (!gtk_init_check (&argc, &argv)) { fprintf(stderr, "Display cannot be initialized, wait for the curses interface :-P\n"); exit (-1); } if (envp[i] == NULL) { fprintf(stderr, "hummmm, Environment variables not found?\n"); exit(-1); } /* Sets the shared area */ /* 00 means streaming stopped, don't update label */ /* 01 means streaming stopped, update label */ /* 10 means streaming started, don't update label */ /* 11 means streaming started, update label */ shared_area = mmap (0, 3, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0); sprintf ((char *) shared_area, "00"); /* get the user HOME */ while (envp[i] != NULL && strncmp("HOME", envp[i++], 4)); if (envp[i] != NULL) strcpy(home, envp[i-1]+5); /* if not exists, create the config directory */ strcat(home,"/.darksnow"); if ( !(directory = opendir(home)) ) { if (mkdir(home, S_IRWXU )) fprintf(stderr, "Error: %s cannot be created\n", home); } else closedir(directory); /* sets the location of the configuration files */ strcpy (darksnow_cfg, home); strcat (darksnow_cfg, "/darksnow.cfg"); strcpy (darkice_cfg, home); strcat (darkice_cfg, "/darkice.cfg"); strcpy (darksnow_temp, home); strcat (darksnow_temp, "/darksnow.temp"); /* the fifo for the debug window of darkice */ unlink(darksnow_temp); if(mkfifo(darksnow_temp, S_IRWXU )) fprintf(stderr, "error creating the fifo at %s\n", darksnow_temp); darkice_fd = open (darksnow_temp, O_RDONLY | O_NONBLOCK); /* internacionalization stuff */ setlocale (LC_ALL, ""); strcpy(locale, INTLPREFIX); strcat(locale, "/share/locale"); bindtextdomain ("darksnow", locale); textdomain ("darksnow"); /* check if darkice exists in path */ i = 0; j = 5; while (envp[i] != NULL && strncmp("PATH", envp[i++], 4)); while ( (sscanf(envp[i-1]+j,"%[^:]:",bar) != -1) && j){ j = j + strlen(bar) + 1; fd = 0; while ( (bar[fd] != '=') && (bar[fd] != 0) ) ++fd; if (bar[fd] == '=') goto end; if ( (fd = open(strcat(bar,"/darkice"), O_RDONLY)) != -1) { j = 0; /* 0 means darkice is found */ close (fd); } } if (j){ end: darkice_not_found(); exit(-1); } /* Now the GTK+ stuff ... */ g_timeout_add (1000, (GSourceFunc) status_loop, 0); /* status_loop() updates the streaming status */ window = gtk_window_new (GTK_WINDOW_TOPLEVEL); button_start = gtk_button_new_with_label ( gettext("Start Streaming") ); button_stop = gtk_button_new_with_label ( gettext("Stop Streaming") ); button_detail = gtk_button_new_with_label ( gettext("Show Details") ); show_detail = 0; label_status = gtk_label_new ( gettext("Streaming Status: Stopped")); table = gtk_table_new (2, 1, FALSE); vbox = gtk_vbox_new (FALSE, 0); /* packs the menu_bar and the table */ /* main window stuff */ gtk_window_set_title (GTK_WINDOW (window), "DarkSnow"); gtk_widget_set_size_request (GTK_WIDGET (window), SIZE_X, SIZE_Y); gtk_container_set_border_width (GTK_CONTAINER (window), 0); /* sets up the upper menu stuff */ menu_bar = gtk_menu_bar_new(); menu_file = gtk_menu_new(); menu_item_file = gtk_menu_item_new_with_label ( gettext("File") ); menu_item_open = gtk_menu_item_new_with_label ( gettext("Open Configuration") ); menu_item_save = gtk_menu_item_new_with_label ( gettext("Save Configuration") ); menu_item_quit_nd = gtk_menu_item_new_with_label ( gettext("Quit and don't stop darkice") ); menu_item_quit = gtk_menu_item_new_with_label ( gettext("Quit") ); gtk_menu_shell_append (GTK_MENU_SHELL (menu_file), menu_item_open); gtk_menu_shell_append (GTK_MENU_SHELL (menu_file), menu_item_save); gtk_menu_shell_append (GTK_MENU_SHELL (menu_file), menu_item_quit_nd); gtk_menu_shell_append (GTK_MENU_SHELL (menu_file), menu_item_quit); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu_item_file), menu_file); gtk_menu_bar_append ( GTK_MENU_BAR (menu_bar), menu_item_file ); menu_help = gtk_menu_new(); menu_item_help = gtk_menu_item_new_with_label ( gettext("Help") ); menu_item_about = gtk_menu_item_new_with_label ( gettext("About") ); gtk_menu_shell_append (GTK_MENU_SHELL (menu_help), menu_item_about); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu_item_help), menu_help); gtk_menu_bar_append ( GTK_MENU_BAR (menu_bar), menu_item_help ); gtk_box_pack_start (GTK_BOX (vbox), menu_bar, FALSE, FALSE, 0); /* sets up the about dialog */ sprintf(bar, gettext("DarkSnow version: %s\nSoftware written by Rafael Diniz\nLicense: GNU Public License v2"),VERSION); dialog_about = gtk_dialog_new (); label_about = gtk_label_new ( bar ); button_about = gtk_button_new_with_label ( gettext("Close")); gtk_window_set_title(GTK_WINDOW (dialog_about), gettext("About DarkSnow")); gtk_widget_set_size_request (GTK_WIDGET (dialog_about), 350, 200); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog_about)->action_area), button_about, TRUE, TRUE, 0); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog_about)->vbox), label_about, TRUE, TRUE, 0); /* sets up the exit window */ dialog_darkkill = gtk_dialog_new (); label_darkkill = gtk_label_new (gettext("Darkice is running.\nDo you want to kill darkice?\n")); button_yes_darkkill = gtk_button_new_with_label (gettext("Yes")); button_no_darkkill = gtk_button_new_with_label (gettext("No")); gtk_window_set_title(GTK_WINDOW (dialog_darkkill), gettext("Darkice is running")); gtk_widget_set_size_request (GTK_WIDGET (dialog_darkkill), 300, 200); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog_darkkill)->action_area), button_yes_darkkill, TRUE, TRUE, 0); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog_darkkill)->action_area), button_no_darkkill, TRUE, TRUE, 0); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog_darkkill)->vbox), label_darkkill, TRUE, TRUE, 0); g_signal_connect_swapped (G_OBJECT (dialog_darkkill), "delete_event",G_CALLBACK (gtk_widget_hide), dialog_darkkill); g_signal_connect (G_OBJECT (button_yes_darkkill), "clicked",G_CALLBACK (delete_event), NULL); g_signal_connect (G_OBJECT (button_no_darkkill), "clicked",G_CALLBACK (delete_event_nd), NULL); /* sets up the file selectors */ file_open = gtk_file_selection_new ( gettext("Open File") ); file_save = gtk_file_selection_new ( gettext("Save File") ); file_localdump = gtk_file_selection_new ( gettext("Local Dump File") ); /* sets up the notebook stuff */ notebook = gtk_notebook_new (); gtk_notebook_set_tab_pos ( GTK_NOTEBOOK (notebook), GTK_POS_TOP ); table_server = gtk_table_new (1, 1, FALSE); table_audio = gtk_table_new (1, 1, FALSE); table_description = gtk_table_new (1, 1, FALSE); label_notebook_server = gtk_label_new ( gettext("Server Options")); label_notebook_audio = gtk_label_new ( gettext("Audio Options")); label_notebook_description = gtk_label_new ( gettext("Streaming Description")); gtk_notebook_insert_page ( GTK_NOTEBOOK (notebook), table_server, label_notebook_server, 1); gtk_notebook_insert_page ( GTK_NOTEBOOK (notebook), table_audio, label_notebook_audio, 2); gtk_notebook_insert_page ( GTK_NOTEBOOK (notebook), table_description, label_notebook_description, 3); /* Server Options Widgets */ label_icecast = gtk_label_new ( gettext("Streaming Destination: ")); combo_icecast = gtk_combo_new (); glist_icecast = NULL; glist_icecast = g_list_append (glist_icecast, "Icecast 1"); glist_icecast = g_list_append (glist_icecast, "Icecast 2"); glist_icecast = g_list_append (glist_icecast, "Shoutcast"); gtk_combo_set_popdown_strings (GTK_COMBO (combo_icecast), glist_icecast); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_icecast)->entry), "Icecast 2"); label_server = gtk_label_new ( gettext("Server: ")); entry_server = gtk_entry_new (); label_port = gtk_label_new ( gettext("Port: ")); entry_port = gtk_entry_new (); label_mountpoint = gtk_label_new ( gettext("Mount Point: ")); entry_mountpoint = gtk_entry_new (); label_pass = gtk_label_new ( gettext("Password: ")); entry_pass = gtk_entry_new (); gtk_entry_set_visibility (GTK_ENTRY(entry_pass), FALSE); label_verbosity = gtk_label_new ( gettext ("Verbosity level: ")); combo_verbosity = gtk_combo_new (); glist_verbosity = NULL; glist_verbosity = g_list_append (glist_verbosity, "0"); glist_verbosity = g_list_append (glist_verbosity, "1"); glist_verbosity = g_list_append (glist_verbosity, "2"); glist_verbosity = g_list_append (glist_verbosity, "3"); glist_verbosity = g_list_append (glist_verbosity, "4"); glist_verbosity = g_list_append (glist_verbosity, "5"); glist_verbosity = g_list_append (glist_verbosity, "6"); glist_verbosity = g_list_append (glist_verbosity, "7"); glist_verbosity = g_list_append (glist_verbosity, "8"); glist_verbosity = g_list_append (glist_verbosity, "9"); glist_verbosity = g_list_append (glist_verbosity, "10"); gtk_combo_set_popdown_strings (GTK_COMBO (combo_verbosity), glist_verbosity); label_remotedump = gtk_label_new ( gettext ("Remote Dump File: ")); entry_remotedump = gtk_entry_new (); button_localdump = gtk_button_new_with_label ( gettext("Local Dump File")); entry_localdump = gtk_entry_new (); checkbutton_adddate = gtk_check_button_new_with_label ( gettext ("Add date to local dump filename? ")); /* End Server Options Widgets */ /* Audio Options Widgets */ label_format = gtk_label_new ( gettext("Format: ")); combo_format = gtk_combo_new (); glist_format = NULL; glist_format = g_list_append (glist_format, gettext("mp3")); glist_format = g_list_append (glist_format, gettext("ogg/vorbis")); glist_format = g_list_append (glist_format, gettext("aac")); glist_format = g_list_append (glist_format, gettext("mp2")); gtk_combo_set_popdown_strings (GTK_COMBO (combo_format), glist_format); label_bitratemode = gtk_label_new ( gettext("BitRateMode: ")); combo_bitratemode = gtk_combo_new (); glist_bitratemode = NULL; glist_bitratemode = g_list_append (glist_bitratemode, gettext("Constant")); glist_bitratemode = g_list_append (glist_bitratemode, gettext("Average")); glist_bitratemode = g_list_append (glist_bitratemode, gettext("Variable")); gtk_combo_set_popdown_strings (GTK_COMBO (combo_bitratemode), glist_bitratemode); label_bitrate = gtk_label_new ( gettext("BitRate: ")); combo_bitrate = gtk_combo_new (); glist_bitrate = NULL; glist_bitrate = g_list_append (glist_bitrate, "16"); glist_bitrate = g_list_append (glist_bitrate, "24"); glist_bitrate = g_list_append (glist_bitrate, "32"); glist_bitrate = g_list_append (glist_bitrate, "40"); glist_bitrate = g_list_append (glist_bitrate, "48"); glist_bitrate = g_list_append (glist_bitrate, "56"); glist_bitrate = g_list_append (glist_bitrate, "64"); glist_bitrate = g_list_append (glist_bitrate, "72"); glist_bitrate = g_list_append (glist_bitrate, "80"); glist_bitrate = g_list_append (glist_bitrate, "88"); glist_bitrate = g_list_append (glist_bitrate, "96"); glist_bitrate = g_list_append (glist_bitrate, "104"); glist_bitrate = g_list_append (glist_bitrate, "112"); glist_bitrate = g_list_append (glist_bitrate, "120"); glist_bitrate = g_list_append (glist_bitrate, "128"); glist_bitrate = g_list_append (glist_bitrate, "160"); glist_bitrate = g_list_append (glist_bitrate, "192"); glist_bitrate = g_list_append (glist_bitrate, "224"); glist_bitrate = g_list_append (glist_bitrate, "256"); gtk_combo_set_popdown_strings (GTK_COMBO (combo_bitrate), glist_bitrate); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_bitrate)->entry), "32"); label_samplerate = gtk_label_new ( gettext("SampleRate: ")); combo_samplerate = gtk_combo_new (); glist_samplerate = NULL; glist_samplerate = g_list_append (glist_samplerate, "8000"); glist_samplerate = g_list_append (glist_samplerate, "11025"); glist_samplerate = g_list_append (glist_samplerate, "22050"); glist_samplerate = g_list_append (glist_samplerate, "44100"); glist_samplerate = g_list_append (glist_samplerate, "48000"); glist_samplerate = g_list_append (glist_samplerate, "96000"); gtk_combo_set_popdown_strings (GTK_COMBO (combo_samplerate), glist_samplerate); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_samplerate)->entry), "22050"); label_quality = gtk_label_new ( gettext("Quality: ")); combo_quality = gtk_combo_new (); glist_quality = g_list_append (glist_quality, "1.0"); glist_quality = g_list_append (glist_quality, "0.9"); glist_quality = g_list_append (glist_quality, "0.8"); glist_quality = g_list_append (glist_quality, "0.7"); glist_quality = g_list_append (glist_quality, "0.6"); glist_quality = g_list_append (glist_quality, "0.5"); glist_quality = g_list_append (glist_quality, "0.4"); glist_quality = g_list_append (glist_quality, "0.3"); glist_quality = g_list_append (glist_quality, "0.2"); glist_quality = g_list_append (glist_quality, "0.1"); gtk_combo_set_popdown_strings (GTK_COMBO (combo_quality), glist_quality); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_quality)->entry), "0.8"); label_bitspersample = gtk_label_new ( gettext("Bits per Sample: ")); combo_bitspersample = gtk_combo_new (); glist_bitspersample = NULL; glist_bitspersample = g_list_append (glist_bitspersample, "16"); glist_bitspersample = g_list_append (glist_bitspersample, "8"); gtk_combo_set_popdown_strings (GTK_COMBO (combo_bitspersample), glist_bitspersample); label_channel = gtk_label_new ( gettext("Number of channels: ")); combo_channel = gtk_combo_new (); glist_channel = NULL; glist_channel = g_list_append (glist_channel, "2 - Stereo"); glist_channel = g_list_append (glist_channel, "1 - Mono"); gtk_combo_set_popdown_strings (GTK_COMBO (combo_channel), glist_channel); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_channel)->entry), "1 - Mono"); label_buffersize = gtk_label_new ( gettext ("Buffer Size: ")); combo_buffersize = gtk_combo_new (); glist_buffersize = NULL; glist_buffersize = g_list_append (glist_buffersize, "1"); glist_buffersize = g_list_append (glist_buffersize, "2"); glist_buffersize = g_list_append (glist_buffersize, "3"); glist_buffersize = g_list_append (glist_buffersize, "4"); glist_buffersize = g_list_append (glist_buffersize, "5"); glist_buffersize = g_list_append (glist_buffersize, "6"); glist_buffersize = g_list_append (glist_buffersize, "7"); glist_buffersize = g_list_append (glist_buffersize, "8"); glist_buffersize = g_list_append (glist_buffersize, "9"); glist_buffersize = g_list_append (glist_buffersize, "10"); glist_buffersize = g_list_append (glist_buffersize, "11"); glist_buffersize = g_list_append (glist_buffersize, "12"); glist_buffersize = g_list_append (glist_buffersize, "13"); glist_buffersize = g_list_append (glist_buffersize, "14"); glist_buffersize = g_list_append (glist_buffersize, "15"); glist_buffersize = g_list_append (glist_buffersize, "16"); glist_buffersize = g_list_append (glist_buffersize, "17"); glist_buffersize = g_list_append (glist_buffersize, "18"); glist_buffersize = g_list_append (glist_buffersize, "19"); glist_buffersize = g_list_append (glist_buffersize, "20"); gtk_combo_set_popdown_strings (GTK_COMBO (combo_buffersize), glist_buffersize); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_buffersize)->entry), "10"); label_device = gtk_label_new ( gettext ("Device Input: ")); combo_device = gtk_combo_new (); glist_device = g_list_append (glist_device, "jack"); glist_device = g_list_append (glist_device, "jack_auto"); glist_device = g_list_append (glist_device, "/dev/dsp"); glist_device = g_list_append (glist_device, "/dev/dsp0"); glist_device = g_list_append (glist_device, "/dev/dsp1"); glist_device = g_list_append (glist_device, "/dev/dsp2"); glist_device = g_list_append (glist_device, "/dev/dsp3"); glist_device = g_list_append (glist_device, "hw:0,0"); glist_device = g_list_append (glist_device, "hw:0,1"); glist_device = g_list_append (glist_device, "hw:0,2"); glist_device = g_list_append (glist_device, "hw:1,0"); glist_device = g_list_append (glist_device, "hw:1,1"); glist_device = g_list_append (glist_device, "hw:1,2"); gtk_combo_set_popdown_strings (GTK_COMBO (combo_device), glist_device); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_device)->entry), "/dev/dsp"); /* End Audio Options Widgets */ /* configuration widgets stuff - label + entry */ label_radioname = gtk_label_new ( gettext("Radio Name: ")); entry_radioname = gtk_entry_new (); label_url = gtk_label_new ( gettext("URL: ")); entry_url = gtk_entry_new (); label_description = gtk_label_new ( gettext("Description: ")); entry_description = gtk_entry_new (); label_genre = gtk_label_new ( gettext("Genre: ")); entry_genre = gtk_entry_new (); /* configuration widgets stuff - label + combo box */ label_public = gtk_label_new ( gettext("Public: ")); combo_public = gtk_combo_new (); glist_public = NULL; glist_public = g_list_append (glist_public, gettext("yes")); glist_public = g_list_append (glist_public, gettext("no")); gtk_combo_set_popdown_strings (GTK_COMBO (combo_public), glist_public); /* text view stuff */ tag = gtk_text_tag_new (""); tag_table = gtk_text_tag_table_new(); gtk_text_tag_table_add(tag_table, tag); buffer = gtk_text_buffer_new(tag_table); foo = gettext("DarkSnow - A graphical user interface for darkice\nThe Revolution will be streamed!"); gtk_text_buffer_set_text(buffer, foo,strlen(foo)); text = gtk_text_view_new_with_buffer (buffer); gtk_text_view_set_editable(GTK_TEXT_VIEW (text), FALSE); /* scroll for the textview widget */ scroll_text = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW (scroll_text), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_container_add (GTK_CONTAINER (scroll_text), text); /* the magic :-) */ gtk_box_pack_end (GTK_BOX (vbox), table, TRUE, TRUE, 5); gtk_container_add (GTK_CONTAINER (window), vbox); /* set the widgets tooltips */ set_all_tooltips(); g_signal_connect (G_OBJECT (window), "delete_event",G_CALLBACK (main_quit), NULL); g_signal_connect_swapped (G_OBJECT (dialog_about), "delete_event",G_CALLBACK (gtk_widget_hide), dialog_about); g_signal_connect_swapped (G_OBJECT (button_about), "clicked",G_CALLBACK (gtk_widget_hide), dialog_about); g_signal_connect (G_OBJECT (button_start), "clicked", G_CALLBACK (dark_start), NULL); g_signal_connect (G_OBJECT (button_stop), "clicked", G_CALLBACK (dark_stop), NULL); g_signal_connect (G_OBJECT (button_detail), "clicked", G_CALLBACK (dark_detail), NULL); g_signal_connect_swapped (G_OBJECT (menu_item_open), "activate", G_CALLBACK (gtk_widget_show), file_open); g_signal_connect_swapped (G_OBJECT (menu_item_save), "activate", G_CALLBACK (gtk_widget_show), file_save); g_signal_connect (G_OBJECT (menu_item_quit), "activate", G_CALLBACK (main_quit), NULL); g_signal_connect (G_OBJECT (menu_item_quit_nd), "activate", G_CALLBACK (delete_event_nd), NULL); g_signal_connect (G_OBJECT (menu_item_about), "activate", G_CALLBACK (dark_about), NULL); g_signal_connect_swapped (G_OBJECT (button_localdump), "clicked", G_CALLBACK (gtk_widget_show), file_localdump); g_signal_connect ( G_OBJECT (GTK_FILE_SELECTION (file_open)->ok_button), "clicked", G_CALLBACK (dark_put_in_box), NULL); g_signal_connect_swapped ( G_OBJECT (GTK_FILE_SELECTION (file_open)->cancel_button), "clicked", G_CALLBACK (gtk_widget_hide), file_open); g_signal_connect_swapped ( G_OBJECT (file_open), "delete_event", G_CALLBACK (gtk_widget_hide), file_open); g_signal_connect ( G_OBJECT (GTK_FILE_SELECTION (file_save)->ok_button), "clicked", G_CALLBACK (dark_write_config), NULL); g_signal_connect_swapped ( G_OBJECT (GTK_FILE_SELECTION (file_save)->cancel_button), "clicked", G_CALLBACK (gtk_widget_hide), file_save); g_signal_connect_swapped ( G_OBJECT (file_save), "delete_event", G_CALLBACK (gtk_widget_hide), file_save); g_signal_connect ( G_OBJECT (GTK_FILE_SELECTION (file_localdump)->ok_button), "clicked", G_CALLBACK (dark_localdump), NULL); g_signal_connect_swapped ( G_OBJECT (GTK_FILE_SELECTION (file_localdump)->cancel_button), "clicked", G_CALLBACK (gtk_widget_hide), file_localdump); g_signal_connect_swapped ( G_OBJECT (file_localdump), "delete_event", G_CALLBACK (gtk_widget_hide), file_localdump); /* pack the notebook, the buttons and textview widgets into the main table */ gtk_table_attach (GTK_TABLE (table), notebook, 0, SIZE_X, 0, 400, (GTK_FILL | GTK_SHRINK | GTK_EXPAND), (GTK_FILL | GTK_SHRINK), 5, 5); gtk_table_attach (GTK_TABLE (table), button_start, 0, SIZE_X/2, 401, 430, (GTK_SHRINK | GTK_FILL), (GTK_SHRINK | GTK_FILL), 45, 5); gtk_table_attach (GTK_TABLE (table), button_stop, SIZE_X/2+1, SIZE_X, 401, 430, (GTK_SHRINK | GTK_FILL), (GTK_SHRINK | GTK_FILL), 45, 5); gtk_table_attach (GTK_TABLE (table), scroll_text, 0, SIZE_X, 431, 560, (GTK_FILL | GTK_SHRINK | GTK_EXPAND), (GTK_FILL | GTK_SHRINK | GTK_EXPAND), 5, 5); gtk_table_attach (GTK_TABLE (table), label_status, 0, 3*SIZE_X/5, 561, 570, (GTK_FILL | GTK_SHRINK), (GTK_FILL | GTK_SHRINK ), 0, 3); gtk_table_attach (GTK_TABLE (table), button_detail, 3*SIZE_X/5+1, SIZE_X, 561, 570, (GTK_FILL | GTK_SHRINK), (GTK_FILL | GTK_SHRINK), 10, 3); /* main notebook tab */ gtk_table_attach (GTK_TABLE (table_server), label_icecast, 0, SIZE_X/2, 0, 25, (GTK_FILL | GTK_SHRINK), (GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_server), combo_icecast, SIZE_X/2+1, SIZE_X, 0, 25, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_server), label_server, 0, SIZE_X/2, 26, 50, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_server), entry_server, SIZE_X/2+1, SIZE_X, 26, 50, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_server), label_port, 0, SIZE_X/2, 51, 75, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_server), entry_port, SIZE_X/2+1, SIZE_X, 51, 75, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_server), label_mountpoint, 0, SIZE_X/2, 76, 100, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_server), entry_mountpoint, SIZE_X/2+1, SIZE_X, 76, 100, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_server), label_pass, 0, SIZE_X/2, 101, 125, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_server), entry_pass, SIZE_X/2+1, SIZE_X, 101, 125, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_server), label_verbosity, 0, SIZE_X/2, 126, 150, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_server), combo_verbosity, SIZE_X/2+1, SIZE_X, 126, 150, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_server), label_remotedump, 0, SIZE_X/2, 151, 175, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_server), entry_remotedump, SIZE_X/2+1, SIZE_X, 151, 175, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_server), button_localdump, 0, SIZE_X/2, 176, 200, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_server), entry_localdump, SIZE_X/2+1, SIZE_X, 176, 200, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_server), checkbutton_adddate, 0, SIZE_X, 201, 225, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); /* audio notebook tab */ gtk_table_attach (GTK_TABLE (table_audio), label_format, 0, SIZE_X/2, 0, 25, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_audio), combo_format, SIZE_X/2+1, SIZE_X, 0, 25, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_audio), label_bitratemode, 0, SIZE_X/2, 26, 50, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_audio), combo_bitratemode, SIZE_X/2+1, SIZE_X, 26, 50, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_audio), label_bitrate, 0, SIZE_X/2, 51, 75, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_audio), combo_bitrate, SIZE_X/2+1, SIZE_X, 51, 75, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_audio), label_samplerate, 0, SIZE_X/2, 76, 100, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_audio), combo_samplerate, SIZE_X/2+1, SIZE_X, 76, 100, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_audio), label_quality, 0, SIZE_X/2, 101, 125, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_audio), combo_quality, SIZE_X/2+1, SIZE_X, 101, 125, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_audio), label_bitspersample, 0, SIZE_X/2, 126, 150, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_audio), combo_bitspersample, SIZE_X/2+1, SIZE_X, 126, 150, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_audio), label_channel, 0, SIZE_X/2, 151, 175, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_audio), combo_channel, SIZE_X/2+1, SIZE_X, 151, 175, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_audio), label_buffersize, 0, SIZE_X/2, 176, 200, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_audio), combo_buffersize, SIZE_X/2+1, SIZE_X, 176, 200, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_audio), label_device, 0, SIZE_X/2, 201, 225, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_audio), combo_device, SIZE_X/2+1, SIZE_X, 201, 225, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); /* description notebook tab */ gtk_table_attach (GTK_TABLE (table_description), label_radioname, 0, SIZE_X/2, 0, 25, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_description), entry_radioname, SIZE_X/2+1, SIZE_X, 0, 25, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_description), label_description, 0, SIZE_X/2, 26, 50, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_description), entry_description, SIZE_X/2+1, SIZE_X, 26, 50, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_description), label_url, 0, SIZE_X/2, 51, 75, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_description), entry_url, SIZE_X/2+1, SIZE_X, 51, 75, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_description), label_genre, 0, SIZE_X/2, 76, 100, (GTK_FILL | GTK_SHRINK),(GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_description), entry_genre, SIZE_X/2+1, SIZE_X, 76, 100, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); gtk_table_attach (GTK_TABLE (table_description), label_public, 0, SIZE_X/2, 101, 125, (GTK_FILL | GTK_SHRINK), (GTK_FILL | GTK_SHRINK), 0, 5); gtk_table_attach (GTK_TABLE (table_description), combo_public, SIZE_X/2+1, SIZE_X, 101, 125, (GTK_FILL | GTK_SHRINK | GTK_EXPAND),(GTK_FILL | GTK_SHRINK), 10, 5); /* show all widgets */ gtk_widget_show (button_start); gtk_widget_show (button_stop); gtk_widget_show (button_detail); gtk_widget_show (label_status); gtk_widget_show (label_about); gtk_widget_show (button_about); gtk_widget_show (label_icecast); gtk_widget_show (combo_icecast); gtk_widget_show (label_server); gtk_widget_show (entry_server); gtk_widget_show (label_port); gtk_widget_show (entry_port); gtk_widget_show (label_mountpoint); gtk_widget_show (entry_mountpoint); gtk_widget_show (label_pass); gtk_widget_show (entry_pass); gtk_widget_show (label_remotedump); gtk_widget_show (entry_remotedump); gtk_widget_show (button_localdump); gtk_widget_show (entry_localdump); gtk_widget_show (checkbutton_adddate); gtk_widget_show (label_format); gtk_widget_show (combo_format); gtk_widget_show (label_bitratemode); gtk_widget_show (combo_bitratemode); gtk_widget_show (label_bitrate); gtk_widget_show (combo_bitrate); gtk_widget_show (label_samplerate); gtk_widget_show (combo_samplerate); gtk_widget_show (label_quality); gtk_widget_show (combo_quality); gtk_widget_show (label_bitspersample); gtk_widget_show (combo_bitspersample); gtk_widget_show (label_channel); gtk_widget_show (combo_channel); gtk_widget_show (label_buffersize); gtk_widget_show (combo_buffersize); gtk_widget_show (label_device); gtk_widget_show (combo_device); gtk_widget_show (label_verbosity); gtk_widget_show (combo_verbosity); gtk_widget_show (label_radioname); gtk_widget_show (entry_radioname); gtk_widget_show (label_description); gtk_widget_show (entry_description); gtk_widget_show (label_url); gtk_widget_show (entry_url); gtk_widget_show (label_genre); gtk_widget_show (entry_genre); gtk_widget_show (label_public); gtk_widget_show (combo_public); /* gtk_widget_show (text); gtk_widget_show (scroll_text);*/ gtk_widget_show (table_server); gtk_widget_show (table_audio); gtk_widget_show (table_description); gtk_widget_show (label_notebook_server); gtk_widget_show (label_notebook_audio); gtk_widget_show (label_notebook_description); gtk_widget_show (notebook); gtk_widget_show (menu_bar); gtk_widget_show (menu_item_file); gtk_widget_show (menu_item_open); gtk_widget_show (menu_item_save); gtk_widget_show (menu_item_quit); gtk_widget_show (menu_item_quit_nd); gtk_widget_show (menu_item_help); gtk_widget_show (menu_item_about); gtk_widget_show (table); gtk_widget_show (vbox); gtk_widget_show (window); gtk_main (); close (darkice_fd); return 0; } darksnow-0.6.1/interface.c0000644000175000017500000003063410434101030014104 0ustar bartbart/* Darksnow - A GUI for darkice * Copyright (C) 2004-2005 Rafael Diniz * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This source code 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. * Please refer to the GNU Public License for more details. * * You should have received a copy of the GNU Public License along with * this source code; if not, write to: * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include #include #include #include #include #include #include #include #include #ifndef __GLOBAL_H__ #include "global.h" #endif #ifndef __CONSTANTS_H__ #include "constants.h" #endif #ifndef __GTK_H__ #include #endif #ifndef __CONFIG_FILES_H__ #include "config_files.h" #endif #ifndef __INTERFACE_H__ #include "interface.h" #endif #ifdef FUNNY #define FUN 1 #else #define FUN 0 #endif /* callback that start darkice */ void dark_start( GtkWidget *widget, gpointer data) { char *darkice_verbosity; char command[128], foo, dark_output[128]; /* if the first caracter of shared area is 1, means that the streaming is running and we cannot start another darkice */ sscanf((char *) shared_area, "%c", &foo); if (foo == '1') return; /* call the function that load the values from widgets and save to the darksnow config file */ darksnow_config_store(1, NULL); /* call the function that translate the darksnow config file to the darkice config file */ darksnow2darkice_cfg(); darkice_verbosity = (char *) gtk_entry_get_text ( GTK_ENTRY(GTK_COMBO(combo_verbosity)->entry)); strcpy(command,"darkice"); strcat(command," -v "); strcat(command, darkice_verbosity); strcat(command," -c "); strcat(command, darkice_cfg); strcat(command," &> "); strcat(command, darksnow_temp); if ((pid = fork()) == -1) { printf("Fork error! God save the queen!\n"); gtk_main_quit(); } if (!pid) { /* streaming started */ sprintf ((char *) shared_area, "11"); system(command); /* if the system() returns, this means that the streaming stopped */ sprintf ((char *) shared_area, "01"); _exit(-1); } strcpy(dark_output, gettext("--> Command <--\n")); strcat(dark_output, command); strcat(dark_output, gettext("\n--> Darkice output <--\n") ); gtk_text_buffer_set_text (buffer, dark_output , strlen(dark_output)); /* print the darkice output for the first time */ usleep(200000); text_box_loop (1); } /* callback that stop darkice */ void dark_stop( GtkWidget *widget, gpointer data ){ char out[32]; system("killall darkice &> /dev/null"); strcpy(out, gettext("Darkice off") ); gtk_text_buffer_set_text (buffer, out, strlen(out)); } void dark_put_in_box ( GtkWidget *widget, gpointer data ) { FILE *f_darksnow_cfg; char *darksnow_path; char foo[256] = {0}; char server[256] = {0}; char port[128] = {0}; char mountpoint[128] = {0}; char pass[128] = {0}; char remotedump[256] = {0}; char localdump[256] = {0}; char adddate; char radioname[128] = {0}; char description[256] = {0}; char url[256] = {0}; char genre[128] = {0}; char icecast[128] = {0}; char format[128] = {0}; char bitrate[128] = {0}; char bitratemode[128] = {0}; char samplerate[128] = {0}; char quality[128] = {0}; char bitspersample[128] = {0}; char channel[128] = {0}; char buffersize[128] = {0}; char device[128] = {0}; char public[128] = {0}; char verbosity[8] = {0}; DIR *directory; darksnow_path = (char *) gtk_file_selection_get_filename (GTK_FILE_SELECTION (file_open)); if ( (directory = opendir(darksnow_path))) { printf("Error: %s is a directory\n", darksnow_path); closedir (directory); return; } if (!(f_darksnow_cfg = fopen(darksnow_path, "r"))) { printf("Error: Cannot open %s\n", darksnow_path); return; } fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, server); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, port); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, mountpoint); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, pass); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, radioname); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, description); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, url); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, genre); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, icecast); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, format); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, bitrate); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, bitratemode); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, samplerate); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, quality); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, bitspersample); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, channel); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, buffersize); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, device); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, public); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, verbosity); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, remotedump); fscanf(f_darksnow_cfg, "%[^=]=%[^\n]\n", foo, localdump); fscanf(f_darksnow_cfg, "%[^=]=%c\n", foo, &adddate); gtk_entry_set_text ( (GtkEntry *) entry_server, server); gtk_entry_set_text ( (GtkEntry *) entry_port, port); gtk_entry_set_text ( (GtkEntry *) entry_mountpoint, mountpoint); gtk_entry_set_text ( (GtkEntry *) entry_pass, pass); gtk_entry_set_text ( (GtkEntry *) entry_radioname, radioname); gtk_entry_set_text ( (GtkEntry *) entry_description, description); gtk_entry_set_text ( (GtkEntry *) entry_url, url); gtk_entry_set_text ( (GtkEntry *) entry_genre, genre); gtk_entry_set_text ( (GtkEntry *) entry_server, server); gtk_entry_set_text ( (GtkEntry *) entry_remotedump, remotedump); gtk_entry_set_text ( (GtkEntry *) entry_localdump, localdump); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_icecast)->entry), icecast); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_format)->entry), format); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_bitrate)->entry), bitrate); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_bitratemode)->entry), bitratemode); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_samplerate)->entry), samplerate); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_quality)->entry), quality); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_bitspersample)->entry), bitspersample); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_channel)->entry), channel); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_buffersize)->entry), buffersize); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_device)->entry), device); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_public)->entry), public); gtk_entry_set_text ( GTK_ENTRY(GTK_COMBO(combo_verbosity)->entry), verbosity); if (adddate == '1') gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON (checkbutton_adddate), TRUE); else gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON (checkbutton_adddate), FALSE); fclose(f_darksnow_cfg); gtk_widget_hide(file_open); } void dark_write_config ( GtkWidget *widget, gpointer data ) { char *darksnow_path; darksnow_path = (char *) gtk_file_selection_get_filename (GTK_FILE_SELECTION (file_save)); if (darksnow_config_store (0, darksnow_path)) gtk_widget_hide(file_save); } void dark_about ( GtkWidget *widget, gpointer data ) { gtk_widget_show (dialog_about); } void dark_localdump (GtkWidget *widget, gpointer data){ gtk_entry_set_text ( (GtkEntry *) entry_localdump, (char *) gtk_file_selection_get_filename (GTK_FILE_SELECTION (file_localdump)) ); gtk_widget_hide (file_localdump); } void clean_text_view_memory(){ GtkTextIter start_iter, end_iter; gtk_text_buffer_get_bounds (buffer, &start_iter, &end_iter); gtk_text_iter_forward_lines (&start_iter, 6); gtk_text_iter_backward_lines (&end_iter, 6); gtk_text_buffer_delete(buffer, &start_iter, &end_iter); } gboolean status_loop (gboolean foo) { char status[3]; static int alarm_id = 0; /** This checks if the status of the transmission if ON or OFF, using the shared area **/ sscanf((char *) shared_area, "%s", status); /* if the update label flag is on */ if (status[1] == '1') { /** streaming stopped **/ if (status [0] == '0') { gtk_label_set_text(GTK_LABEL (label_status), gettext("Streaming Status: Stopped")); text_box_loop(1); if (alarm_id) g_source_remove(alarm_id); } /** streaming started **/ else { gtk_label_set_text(GTK_LABEL (label_status), gettext("Streaming Status: Started")); text_box_loop(0); alarm_id = g_timeout_add (4000, (GSourceFunc) text_box_loop, 0); } strncpy((char *) shared_area+1, "0", 1); } /* I need nothing from child, just do this to prevent processes */ waitpid(pid, NULL, WNOHANG); return TRUE; } #define BUFFER_SIZE 16384 gboolean text_box_loop (int option) { char dark_output[BUFFER_SIZE]; char status[3]; int i; static int bytes_written = 0; sscanf((char *) shared_area, "%s", status); if (status[0] == '1' || option == 1) { while ( (i = read (darkice_fd, dark_output, BUFFER_SIZE - 1)) && i > 0 ) { dark_output[i] = 0; gtk_text_buffer_insert_at_cursor (buffer, dark_output, strlen(dark_output)); bytes_written = bytes_written + i; /* 32 * BUFFER_SIZE = */ if (bytes_written > 524288){ clean_text_view_memory(); bytes_written = 0; } } } return TRUE; } /* callback que chama a funcao de saida do programa, eh issu mermo, mata tudo mermaum!! */ gboolean delete_event(GtkWidget *widget, GdkEvent *event, gpointer data) { system("killall darkice &> /dev/null"); gtk_main_quit (); return FALSE; } /* callback that exit without killing darkice */ gboolean delete_event_nd (GtkWidget *widget, GdkEvent *event, gpointer data) { char foo; sscanf((char *) shared_area, "%c", &foo); if (foo == '1') kill(pid,SIGTERM); gtk_main_quit (); return FALSE; } gboolean main_quit (GtkWidget *widget, GdkEvent *event, gpointer data) { char status = '0'; sscanf ((char *) shared_area, "%c", &status); /* if darkice is running, ask for killing it */ if (status == '1') { gtk_widget_show (button_yes_darkkill); gtk_widget_show (button_no_darkkill); gtk_widget_show (label_darkkill); gtk_widget_show (dialog_darkkill); } else delete_event_nd(NULL, NULL, NULL); return FALSE; } /* function that is called when darkice is not found */ void darkice_not_found() { char bar[192]; /* sets up the darkice not found dialog */ if (!FUN) sprintf(bar, gettext("Darkice not found!\nDownload darkice at http://darkice.sf.net/")); else sprintf(bar, gettext("Don't you know you should have the fucking\ndarkice to run this shit!!\nGet it at http://darkice.sf.net/\n")); dialog_darkdep = gtk_dialog_new (); label_darkdep = gtk_label_new ( bar ); button_darkdep = gtk_button_new_with_label ( gettext("Close")); gtk_window_set_title(GTK_WINDOW (dialog_darkdep), gettext("Error")); gtk_widget_set_size_request (GTK_WIDGET (dialog_darkdep), 350, 200); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog_darkdep)->action_area), button_darkdep, TRUE, TRUE, 0); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog_darkdep)->vbox), label_darkdep, TRUE, TRUE, 0); g_signal_connect (G_OBJECT (dialog_darkdep), "delete_event",G_CALLBACK (delete_event), NULL); g_signal_connect (G_OBJECT (button_darkdep), "clicked",G_CALLBACK (delete_event), NULL); gtk_widget_show (button_darkdep); gtk_widget_show (label_darkdep); gtk_widget_show (dialog_darkdep); gtk_main (); } void dark_detail (GtkWidget *widget, gpointer data) { if (show_detail) { show_detail = 0; gtk_button_set_label (GTK_BUTTON(button_detail), gettext("Show Details")); gtk_widget_hide (scroll_text); gtk_widget_hide (text); gtk_window_resize (GTK_WINDOW(window), SIZE_X, SIZE_Y); } else{ show_detail = 1; gtk_button_set_label (GTK_BUTTON(button_detail), gettext("Hide Details")); gtk_widget_show (text); gtk_widget_show (scroll_text); gtk_window_resize (GTK_WINDOW(window), SIZE_X, SIZE_Y+110); } } darksnow-0.6.1/interface.h0000644000175000017500000000525310434101030014110 0ustar bartbart/* Darksnow - A GUI for darkice * Copyright (C) 2004-2005 Rafael Diniz * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This source code 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. * Please refer to the GNU Public License for more details. * * You should have received a copy of the GNU Public License along with * this source code; if not, write to: * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #define __INTERFACE_H__ #ifndef __GTK_H__ #include #endif /* Callback for button_start click */ void dark_start (GtkWidget *widget, gpointer data); /* Callback for button_stop click */ void dark_stop (GtkWidget *widget, gpointer data); /* Callback for button_load click */ void dark_load (GtkWidget *widget, gpointer data); /* Callback for OK button of the "Open File" file selector, displayed by dark_open */ void dark_put_in_box (GtkWidget *widget, gpointer data); /* Callback for OK button of the "Save File" file selector, displayed by dark_save */ void dark_write_config ( GtkWidget *widget, gpointer data ); /* Callback for About Menu Option */ void dark_about (GtkWidget *widget, gpointer data); /* Callback for the local dump file selector 'ok' button */ void dark_localdump (GtkWidget *widget, gpointer data); /* Cleans the buffer inside the view box */ void clean_text_view_memory(); /* The function that updates the streaming status */ gboolean status_loop (gboolean foo); /* The function that updates the darkice output window, when option == 1, means that */ /* the "streaming_started" flag will be ignored, if option == 0, the "streaming_started" */ /* flag will not be ignored and the debug window will not be updated. */ gboolean text_box_loop (int option); /* Callback that call the gtk_main_quit() */ gboolean delete_event (GtkWidget *widget, GdkEvent *event, gpointer data ); /* Callback that call the gtk_main_quit() without killing darkice */ gboolean delete_event_nd (GtkWidget *widget, GdkEvent *event, gpointer data ); /* Callback that shows a dialog asking for killing or not darkice before quitting */ gboolean main_quit (GtkWidget *widget, GdkEvent *event, gpointer data); /* darkice not found function */ void darkice_not_found(); /* callback function that is called when Detail button is clicked */ void dark_detail (GtkWidget *widget, gpointer data); darksnow-0.6.1/documentation/0000755000175000017500000000000010434101030014643 5ustar bartbartdarksnow-0.6.1/documentation/CHANGES0000644000175000017500000000272310434104310015646 0ustar bartbart0.6.1 Added MP2 format option. Other small changes. 0.6 Added AAC format option. Changed the way that darksnow gets the darkice output (now it uses fifo) Fixed a memory leak and some minor improvements done. 0.5.3 Added some copyright notes, some minor changes and a debian directory, for package creation. 0.5.2 Added remote and local dump file options. Some bug fixes. 0.5.1 Added jack support. (needs darkice 0.15 or greater) 0.5 a little bug fix and now automatic slackware package creation works ok. 0.4.9 fixed two bugs, one of them very serious that prevented darksnow running in ppc and probably other big endian archs. 0.4.8 fixed a wrong behaviour of the darkice output window 0.4.7 lots of bug fixes description window now works correctly 0.4.6 show/hide darkice output window initial tooltips support limited autoconf support 0.4.5 darkice verbosity level option included - this breaks compatibily with older config_files. 0.4.4 now is possible to exit darksnow without killing darkice 0.4.3 fixed "" bug mountpoint string can start with slash some minor enhancements and bug fixes 0.4.2 brazilian portuguese translation fix 0.4.1: streaming status now works in most cases. some minor interface adjustments small bugs fixed 0.4: load and save configuration from file added. 0.3.1: small bug fix 0.3: notebooks added better widgets arrangement first useable version 0.2.1: 0.2: 0.1: 0.0: Initial version darksnow-0.6.1/documentation/LICENSE0000644000175000017500000004312410434101030015654 0ustar bartbart 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. darksnow-0.6.1/documentation/README.en0000644000175000017500000000267310434101030016134 0ustar bartbart# darksnow - a gtk2 interface for darkice # Copyright (C) 2004 Rafael Diniz # # 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. This is darksnow, a GUI for darkice (darkice.sf.net), developed by Rafael Diniz. Requirements: - darkice 0.14 (darkice >= 0.15 for jack support), - gtk2, - killall (kill processes by name), - linux 2.4 or greater and probably any recent BSD system (including OpenBSD, NetBSD, FreeBSD, Solaris and MacOS X). Compiling: $ ./configure --prefix=/usr $ make Installing, as root: # make install or, if you use Slackware, create a package (as root): # make make_pkg and install or upgrade: # make install_pkg or # make upgrade_pkg to run, type: $ darksnow Any trouble, email-me: rafael@riseup.net _The Revolution will be Streamed_ Get off the internet, I'll see you in the streets! darksnow-0.6.1/documentation/README.pt_BR0000644000175000017500000000306710434101030016536 0ustar bartbart# darksnow - uma interface grafica em gtk2 para o darkice # Copyright (C) 2004 Rafael Diniz # # 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. Este eh o darksnow, uma interface grafica para o darkice (darkice.sf.net) desenvolvida por Rafael Diniz. Pre-requisitos: - darkice 0.14 (darkice 0.15 para suporte ao jack), - gtk2, - killall, (mata processos por nome), - linux 2.4 ou superior e provavelmente qualquer sistema BSD recente (incluindo OpenBSD, NetBSD, FreeBSD, Solaris e MacOS X). Para compilar o programa, digite: $ ./configure --prefix=/usr $ make e para instalar, como root: # make install ou, se voce usa Slackware, crie um pacote (como root): # make make_pkg e instale ou atualize usando # make install_pkg ou # make upgrade_pkg Para executar o programa, digite: $ darksnow Qualquer problema, mande um email para: rafael@riseup.net _A Revolução será transmitida pela Internet_ Saia da Internet, vejo você nas ruas! darksnow-0.6.1/documentation/slack-desc0000644000175000017500000000124410434101030016600 0ustar bartbart# HOW TO EDIT THIS FILE: # The "handy ruler" below makes it easier to edit a package description. Line # up the first '|' above the ':' following the base package name, and the '|' # on the right side marks the last column you can put a character in. You must # make exactly 11 lines for the formatting to be correct. It's also # customary to leave one space after the ':'. |-----handy-ruler------------------------------------------------------| darksnow: darksnow (streaming tool) darksnow: darksnow: Darksnow is a graphical interface written in GTK+2 for the darkice darksnow: live streamer. darksnow: darksnow: darksnow: darksnow: darksnow: darksnow: darksnow: darksnow-0.6.1/documentation/CREDITS0000644000175000017500000000024610434101030015665 0ustar bartbartThanks to: - rhatto: bug feedback and package creation, - Eddy parris (http://www.communecation.net/): icon creation. - Rodrigo Belem: for the darksnow debianization darksnow-0.6.1/po/0000755000175000017500000000000010434101030012410 5ustar bartbartdarksnow-0.6.1/po/Makefile0000644000175000017500000000004210434101030014044 0ustar bartbartall: msgfmt pt_BR.po -o pt_BR.mo darksnow-0.6.1/po/pt_BR.mo0000644000175000017500000001537610434101030013767 0ustar bartbartÞ•Ida¬01Jbh!w ™§ ¯ ¹Ç ÙçíRöTIž1±=ã ! -;gJ²Œ¸lE š² GM W• Bí 0 ² ?· ÷   _ z Š ˜ › ° Ã Í Ø ß è ò ÷   3@ S]l u‚’¡·Ïé $(,0 3>eB¨ÃÛá2ò%5;Katˆ [™LõBHZA£å ÷—´¹lI£¶?ZMšKè“4ȓРdnw}Zê+ >LT \ frw“£¼Ñåô #7Ib{›¹¿Èßãçë ïú%G ->?(: 1BA"H&.#3!C48 9,; <)0@+'D=IE6/ $72F5* --> Darkice output <-- --> Command <-- AboutAbout DarkSnowAdd date to local dump filename? Audio OptionsAverageBitRate: BitRateMode: Bits per Sample: Buffer Size: CloseConstantDarkSnow - A graphical user interface for darkice The Revolution will be streamed!DarkSnow version: %s Software written by Rafael Diniz License: GNU Public License v2Darkice is runningDarkice is running. Do you want to kill darkice? Darkice not found! Download darkice at http://darkice.sf.net/Darkice offDescription: Device Input: Don't you know you should have the fucking darkice to run this shit!! Get it at http://darkice.sf.net/ ErrorField that indicates the file the IceCast server should dump the contents of this stream on its side (server side). Eg: remote_file_name.mp3Field that indicates the file where the same data sent to the stream will be dumped. Eg: local_file_name.mp3Field that indicates the mount point for the stream. Eg: radio_x.ogg Remember to put a ".ogg" at the end of the mountpoint if you want to use ogg/vorbis!Field that indicates the name of the server. Eg: orelha2.radiolivre.orgField that indicates the password for the stream, provided by the server administrator.Field that indicates the server port that you'll connect. Eg: 8000Field that indicates the verbosity level of darkice. Use a value greater than 0 if you want more information in 'Details Window'.FileFor OSS DSP audio device to record from, use /dev/dsp_ (eg. /dev/dsp), for ALSA, use hw:_,_ (eg. hw:0,0), and to create an unconnected input port in jack, use 'jack', or use 'jack_auto' to automatically make Jack connect to the first source. (if you choose jack you must set the samplerate to the same jack samplerate!)Format: Genre: HelpHide DetailsIf you want to automatically insert a date string in the localDumpFile name, check this option.Local Dump FileMount Point: NoNumber of channels: Open ConfigurationOpen FilePassword: Port: Public: Quality: QuitQuit and don't stop darkiceRadio Name: Remote Dump File: SampleRate: Save ConfigurationSave FileServer OptionsServer: Show DetailsStart StreamingStop StreamingStreaming DescriptionStreaming Destination: Streaming Status: StartedStreaming Status: StoppedURL: VariableVerbosity level: Yesaacmp3noogg/vorbisyesProject-Id-Version: Darksnow 0.6 Report-Msgid-Bugs-To: Rafael Diniz POT-Creation-Date: 2004-02-05 00:52-0300 PO-Revision-Date: 2005-11-03 22:42+0000 Last-Translator: Rafael Diniz Language-Team: Rafael Diniz MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --> Saida do Darkice <-- --> Comando <-- SobreSobre o DarkSnowAdicinar a data ao nome do arquivo de dump local? Opcoes de AudioMediaRazao de bits: Modo de codificacao: Bits por Amostra: Tamanho do Buffer: FecharConstanteDarkSnow - Uma interface grafica para o darkice A Revolucao sera transmitida pela Internet!Versao do DarkSnow: %s Programa escrito por Rafael Diniz Licenca: GNU GPL v2Darkice sendo executadoO Darkice esta sendo executado. Voce quer que o darkice seja desligado? Darkice nao encontrado! Baixe o darkice de http://darkice.sf.net/Darkice desligadoDescricao: Dispositivo de Entrada: Puta vida, caraio, se num tah ligado que vc tem que ter o darkice pra rodar essa merda?? baixa logo daquela merda de http://darkice.sf.net/ manu!!! ErroCampo que indica o arquivo no qual o servidor IceCast ira depositar o conteudo deste stream, no seu lado (server side). Ex: arquivo_remoto.mp3Campo que indica o arquivo no qual sera depositado os mesmos dados enviados ao stream. Ex: arquivo_local.mp3Campo que indica o ponto de montagem para o stream. Ex: radio_x.ogg Lembre-se de colocar um ".ogg" no final do ponto de montagem caso voce queira usar ogg/vorbis!Campo que indica o nome do servidor. Ex: orelha2.radiolivre.orgCampo que indica a senha do stream, fornecida pelo administrador do servidor.Campo que indica a porta do servidor na qual voce ira se conectar. Ex: 8000Campo que indica o nivel de verbosidade do darkice. Use um valor maior que 0 caso voce queira maior quantidade de informacao na janela de detalhes.ArquivoPara usar como dispositivo de captura um dispositivo OSS, usar /dev/dsp_ (ex: /dev/dsp), para usar um dispositivo ALSA, usar hw:_,_ (ex: hw:0,0), e para criar uma porta de entrada desconectada no jack, usar 'jack', ou use 'jack_auto' para automaticamente fazer o jack conectar ao primeiro dispositivo fonte. (Se voce escolheu o jack, lembre-se de utilizar a mesma taxa de amostragem utilizada pelo jack!Formato: Genero: AjudaEsconder DetalhesSe voce quer que seja inserida a data no nome do arquivo de dump local, marque essa opcao.Arquivo de Dump LocalPonto de Montagem: NaoNumero de canais: Abrir ConfiguracaoAbrir ArquivoSenha: Porta: Publica: Qualidade: SairSair sem desligar o darkiceNome da Radio: Arquivo de Dump Remoto: Taxa de Amostragem: Salvar ConfiguracaoSalvar ArquivoOpcoes do ServidorServidor: Mostrar DetalhesIniciar TransmissaoParar TransmissaoDescricao da TransmissaoDestino da Transmissao: Estado da Transmissao: IniciadaEstado da Transmissao: ParadaURL: VariavelNivel de verbosidade: Simaacmp3naoogg/vorbissimdarksnow-0.6.1/po/pt_BR.po0000644000175000017500000002072210434101030013761 0ustar bartbart# translation of darksnow to Brazilian portuguese. # This file is distributed under the GNU GPLv2. # Copyright (C) 2005, Rafael Diniz # Rafael Diniz , 2005. # msgid "" msgstr "" "Project-Id-Version: Darksnow 0.6\n" "Report-Msgid-Bugs-To: Rafael Diniz \n" "POT-Creation-Date: 2004-02-05 00:52-0300\n" "PO-Revision-Date: 2005-11-03 22:42+0000\n" "Last-Translator: Rafael Diniz \n" "Language-Team: Rafael Diniz \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: config_files.c:259 darksnow.c:290 msgid "Constant" msgstr "Constante" #: config_files.c:262 darksnow.c:291 msgid "Average" msgstr "Media" #: config_files.c:265 darksnow.c:292 msgid "Variable" msgstr "Variavel" #: config_files.c:272 darksnow.c:281 msgid "mp3" msgstr "mp3" #: config_files.c:274 darksnow.c:282 msgid "ogg/vorbis" msgstr "ogg/vorbis" #: config_files.c:276 darksnow.c:283 msgid "aac" msgstr "aac" #: config_files.c:301 darksnow.c:425 msgid "yes" msgstr "sim" #: darksnow.c:142 msgid "Start Streaming" msgstr "Iniciar Transmissao" #: darksnow.c:143 msgid "Stop Streaming" msgstr "Parar Transmissao" #: darksnow.c:144 interface.c:384 msgid "Show Details" msgstr "Mostrar Detalhes" #: darksnow.c:146 interface.c:262 msgid "Streaming Status: Stopped" msgstr "Estado da Transmissao: Parada" #: darksnow.c:161 msgid "File" msgstr "Arquivo" #: darksnow.c:162 msgid "Open Configuration" msgstr "Abrir Configuracao" #: darksnow.c:163 msgid "Save Configuration" msgstr "Salvar Configuracao" #: darksnow.c:164 msgid "Quit and don't stop darkice" msgstr "Sair sem desligar o darkice" #: darksnow.c:165 msgid "Quit" msgstr "Sair" #: darksnow.c:174 msgid "Help" msgstr "Ajuda" #: darksnow.c:175 msgid "About" msgstr "Sobre" #: darksnow.c:185 #, c-format msgid "" "DarkSnow version: %s\n" "Software written by Rafael Diniz\n" "License: GNU Public License v2" msgstr "" "Versao do DarkSnow: %s\n" "Programa escrito por Rafael Diniz\n" "Licenca: GNU GPL v2" #: darksnow.c:188 interface.c:364 msgid "Close" msgstr "Fechar" #: darksnow.c:189 msgid "About DarkSnow" msgstr "Sobre o DarkSnow" #: darksnow.c:196 msgid "" "Darkice is running.\n" "Do you want to kill darkice?\n" msgstr "" "O Darkice esta sendo executado.\n" "Voce quer que o darkice seja desligado?\n" #: darksnow.c:197 msgid "Yes" msgstr "Sim" #: darksnow.c:198 msgid "No" msgstr "Nao" #: darksnow.c:200 msgid "Darkice is running" msgstr "Darkice sendo executado" #: darksnow.c:211 msgid "Open File" msgstr "Abrir Arquivo" #: darksnow.c:212 msgid "Save File" msgstr "Salvar Arquivo" #: darksnow.c:213 darksnow.c:270 msgid "Local Dump File" msgstr "Arquivo de Dump Local" #: darksnow.c:223 msgid "Server Options" msgstr "Opcoes do Servidor" #: darksnow.c:224 msgid "Audio Options" msgstr "Opcoes de Audio" #: darksnow.c:225 msgid "Streaming Description" msgstr "Descricao da Transmissao" #: darksnow.c:232 msgid "Streaming Destination: " msgstr "Destino da Transmissao: " #: darksnow.c:241 msgid "Server: " msgstr "Servidor: " #: darksnow.c:243 msgid "Port: " msgstr "Porta: " #: darksnow.c:245 msgid "Mount Point: " msgstr "Ponto de Montagem: " #: darksnow.c:247 msgid "Password: " msgstr "Senha: " #: darksnow.c:251 msgid "Verbosity level: " msgstr "Nivel de verbosidade: " #: darksnow.c:267 msgid "Remote Dump File: " msgstr "Arquivo de Dump Remoto: " #: darksnow.c:273 msgid "Add date to local dump filename? " msgstr "Adicinar a data ao nome do arquivo de dump local? " #: darksnow.c:278 msgid "Format: " msgstr "Formato: " #: darksnow.c:287 msgid "BitRateMode: " msgstr "Modo de codificacao: " #: darksnow.c:295 msgid "BitRate: " msgstr "Razao de bits: " #: darksnow.c:320 msgid "SampleRate: " msgstr "Taxa de Amostragem: " #: darksnow.c:333 msgid "Quality: " msgstr "Qualidade: " #: darksnow.c:348 msgid "Bits per Sample: " msgstr "Bits por Amostra: " #: darksnow.c:355 msgid "Number of channels: " msgstr "Numero de canais: " #: darksnow.c:363 msgid "Buffer Size: " msgstr "Tamanho do Buffer: " #: darksnow.c:389 msgid "Device Input: " msgstr "Dispositivo de Entrada: " #: darksnow.c:410 msgid "Radio Name: " msgstr "Nome da Radio: " #: darksnow.c:412 msgid "URL: " msgstr "URL: " #: darksnow.c:414 msgid "Description: " msgstr "Descricao: " #: darksnow.c:416 msgid "Genre: " msgstr "Genero: " #: darksnow.c:422 msgid "Public: " msgstr "Publica: " #: darksnow.c:426 msgid "no" msgstr "nao" #: darksnow.c:435 msgid "" "DarkSnow - A graphical user interface for darkice\n" "The Revolution will be streamed!" msgstr "" "DarkSnow - Uma interface grafica para o darkice\n" "A Revolucao sera transmitida pela Internet!" #: interface.c:97 msgid "--> Command <--\n" msgstr "--> Comando <--\n" #: interface.c:99 msgid "" "\n" "--> Darkice output <--\n" msgstr "" "\n" "--> Saida do Darkice <--\n" #: interface.c:113 msgid "Darkice off" msgstr "Darkice desligado" #: interface.c:269 msgid "Streaming Status: Started" msgstr "Estado da Transmissao: Iniciada" #: interface.c:358 #, c-format msgid "" "Darkice not found!\n" "Download darkice at http://darkice.sf.net/" msgstr "" "Darkice nao encontrado!\n" "Baixe o darkice de http://darkice.sf.net/" #: interface.c:360 #, c-format msgid "" "Don't you know you should have the fucking\n" "darkice to run this shit!!\n" "Get it at http://darkice.sf.net/\n" msgstr "" "Puta vida, caraio, se num tah ligado que\n" " vc tem que ter o darkice pra rodar essa merda??\n" " baixa logo daquela merda de \n" "http://darkice.sf.net/\n" "manu!!!\n" #: interface.c:365 msgid "Error" msgstr "Erro" #: interface.c:391 msgid "Hide Details" msgstr "Esconder Detalhes" #: tooltips.c:42 msgid "" "Field that indicates the name of the server.\n" "Eg: orelha2.radiolivre.org" msgstr "" "Campo que indica o nome do servidor.\n" "Ex: orelha2.radiolivre.org" #: tooltips.c:43 msgid "" "Field that indicates the server port that you'll connect.\n" "Eg: 8000" msgstr "" "Campo que indica a porta do servidor na qual voce ira se conectar.\n" "Ex: 8000" #: tooltips.c:44 msgid "" "Field that indicates the mount point for the stream.\n" "Eg: radio_x.ogg\n" " Remember to put a \".ogg\" at the end of the mountpoint if you want to use " "ogg/vorbis!" msgstr "" "Campo que indica o ponto de montagem para o stream.\n" "Ex: radio_x.ogg\n" " Lembre-se de colocar um \".ogg\" no final do ponto de montagem caso voce queira " "usar ogg/vorbis!" #: tooltips.c:45 msgid "" "Field that indicates the password for the stream, provided by the server " "administrator." msgstr "" "Campo que indica a senha do stream, fornecida pelo administrador do servidor." #: tooltips.c:46 msgid "" "Field that indicates the file the IceCast server should dump the contents of " "this stream on its side (server side).\n" "Eg: remote_file_name.mp3" msgstr "" "Campo que indica o arquivo no qual o servidor IceCast ira depositar o conteudo " "deste stream, no seu lado (server side).\n " "Ex: arquivo_remoto.mp3" #: tooltips.c:48 msgid "" "Field that indicates the file where the same data sent to the stream will be " "dumped.\n" "Eg: local_file_name.mp3" msgstr "" "Campo que indica o arquivo no qual sera depositado os mesmos dados enviados " "ao stream.\n" "Ex: arquivo_local.mp3" #: tooltips.c:50 msgid "" "If you want to automatically insert a date string in the localDumpFile name, " "check this option." msgstr "" "Se voce quer que seja inserida a data no nome do arquivo de dump local, marque " "essa opcao." #: tooltips.c:54 msgid "" "Field that indicates the verbosity level of darkice.\n" "Use a value greater than 0 if you want more information in 'Details Window'." msgstr "" "Campo que indica o nivel de verbosidade do darkice.\n" "Use um valor maior que 0 caso voce queira maior quantidade de informacao na janela de detalhes." #: tooltips.c:55 msgid "" "For OSS DSP audio device to record from, use /dev/dsp_ (eg. /dev/dsp), for " "ALSA, use hw:_,_ (eg. hw:0,0), and to create an unconnected input port in " "jack, use 'jack', or use 'jack_auto' to automatically make Jack connect to " "the first source. (if you choose jack you must set the samplerate to the " "same jack samplerate!)" msgstr "" "Para usar como dispositivo de captura um dispositivo OSS, usar /dev/dsp_ (ex: /dev/dsp), para " "usar um dispositivo ALSA, usar hw:_,_ (ex: hw:0,0), e para criar uma porta de entrada desconectada no jack, " "usar 'jack', ou use 'jack_auto' para automaticamente fazer o jack conectar ao primeiro dispositivo fonte. " "(Se voce escolheu o jack, lembre-se de utilizar a mesma taxa de amostragem utilizada pelo jack!" darksnow-0.6.1/configure.in0000644000175000017500000000077210434101061014315 0ustar bartbartAC_INIT(darksnow.c) AC_CONFIG_HEADERS dnl set CC AC_PROG_CC dnl tests C compiler AC_LANG_C VERSION="0.6.1" AC_SUBST(VERSION) AC_CHECK_FUNC(mmap,,AC_MSG_ERROR(Sorry, you need mmap. If you are reading this, email-me and report this problem and your system description - rafael@riseup.net)) AC_CHECK_FUNC(gettext,,AC_MSG_ERROR(Sorry, you need gettext. If you are reading this, email-me and report this problem and your system description - rafael@riseup.net)) AM_PATH_GTK_2_0(2.0.0) AC_OUTPUT(Makefile) darksnow-0.6.1/tooltips.c0000644000175000017500000000613310434101030014016 0ustar bartbart/* Darksnow - A GUI for darkice * Copyright (C) 2004-2005 Rafael Diniz * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This source code 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. * Please refer to the GNU Public License for more details. * * You should have received a copy of the GNU Public License along with * this source code; if not, write to: * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #ifndef __GTK_H__ #include #endif #ifndef __GLOBAL_H__ #include "global.h" #endif #ifdef USE_TOOLTIP #define TOOLTIP 1 #else #define TOOLTIP 0 #endif #include #include #include void set_all_tooltips(){ tooltip = gtk_tooltips_new (); if (TOOLTIP) { gtk_tooltips_set_tip (GTK_TOOLTIPS (tooltip), entry_server, gettext("Field that indicates the name of the server.\nEg: orelha2.radiolivre.org"), ""); gtk_tooltips_set_tip (GTK_TOOLTIPS (tooltip), entry_port, gettext("Field that indicates the server port that you'll connect.\nEg: 8000"), ""); gtk_tooltips_set_tip (GTK_TOOLTIPS (tooltip), entry_mountpoint, gettext("Field that indicates the mount point for the stream.\nEg: radio_x.ogg\n Remember to put a \".ogg\" at the end of the mountpoint if you want to use ogg/vorbis!"), ""); gtk_tooltips_set_tip (GTK_TOOLTIPS (tooltip), entry_pass, gettext("Field that indicates the password for the stream, provided by the server administrator."), ""); gtk_tooltips_set_tip (GTK_TOOLTIPS (tooltip), entry_remotedump, gettext("Field that indicates the file \ the IceCast server should dump the contents of this stream on its side (server side).\nEg: remote_file_name.mp3"), ""); gtk_tooltips_set_tip (GTK_TOOLTIPS (tooltip), entry_localdump, gettext("Field that indicates the file where \ the same data sent to the stream will be dumped.\nEg: local_file_name.mp3"), ""); gtk_tooltips_set_tip (GTK_TOOLTIPS (tooltip), checkbutton_adddate, gettext("If you want to automatically \ insert a date string in the localDumpFile name, check this option."), ""); gtk_tooltips_set_tip (GTK_TOOLTIPS (tooltip), (GTK_COMBO(combo_verbosity))->entry, gettext("Field that indicates the verbosity level of darkice.\nUse a value greater than 0 if you want more information in 'Details Window'."), ""); gtk_tooltips_set_tip (GTK_TOOLTIPS (tooltip), (GTK_COMBO(combo_device))->entry, gettext("For OSS DSP audio \ device to record from, use /dev/dsp_ (eg. /dev/dsp), for ALSA, use hw:_,_ (eg. hw:0,0), and to create an \ unconnected input \ port in jack, use 'jack', or use 'jack_auto' to automatically make Jack connect \ to the first source. (if you choose jack you must set the samplerate to the same jack samplerate!)"), ""); } else /* if compiling without tooltip */ free (tooltip); } darksnow-0.6.1/tooltips.h0000644000175000017500000000151610434101030014023 0ustar bartbart/* Darksnow - A GUI for darkice * Copyright (C) 2004-2005 Rafael Diniz * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This source code 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. * Please refer to the GNU Public License for more details. * * You should have received a copy of the GNU Public License along with * this source code; if not, write to: * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #define __TOOLTIPS_H__ void set_all_tooltips(); darksnow-0.6.1/Makefile.in0000644000175000017500000000705310434101030014044 0ustar bartbart# Darksnow - A gui for darkice # # Copyright (C) 2004-2005 Rafael Diniz # # This source code is free software; you can redistribute it and/or # modify it under the terms of the GNU Public License as published # by the Free Software Foundation; either version 2 of the License, # or (at your option) any later version. # # This source code 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. # Please refer to the GNU Public License for more details. # # You should have received a copy of the GNU Public License along with # this source code; if not, write to: # Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # # darksnow Makefile PREFIX=@prefix@ INTLPREFIX=@prefix@ CC=@CC@ VERSION=@VERSION@ CFLAGS+=-Wall INSTALL=install ARCH=`uname -m` #set debugging symbols: #CFLAGS+= -g #set funny messages #CFLAGS+= -DFUNNY # use tooltips CFLAGS+= -DUSE_TOOLTIP all: darksnow darksnow: darksnow.o interface.o config_files.o tooltips.o man_gzip $(CC) $(CFLAGS) @GTK_LIBS@ @GTK_CFLAGS@ -DVERSION="\"$(VERSION)\"" darksnow.o interface.o config_files.o tooltips.o -o darksnow darksnow.o: darksnow.c $(CC) $(FUNNY) @GTK_CFLAGS@ -DINTLPREFIX="\"$(INTLPREFIX)\"" -DVERSION="\"$(VERSION)\"" -c darksnow.c -o darksnow.o interface.o: interface.c $(CC) $(CFLAGS) $(FUNNY) @GTK_CFLAGS@ -DINTLPREFIX="\"$(INTLPREFIX)\"" -DVERSION="\"$(VERSION)\"" -c interface.c -o interface.o config_files.o: config_files.c $(CC) $(CFLAGS) $(FUNNY) @GTK_CFLAGS@ -DINTLPREFIX="\"$(INTLPREFIX)\"" -DVERSION="\"$(VERSION)\"" -c config_files.c -o config_files.o tooltips.o: tooltips.c $(CC) $(CFLAGS) $(FUNNY) @GTK_CFLAGS@ -DINTLPREFIX="\"$(INTLPREFIX)\"" -DVERSION="\"$(VERSION)\"" -c tooltips.c -o tooltips.o man_gzip: gzip -c man/darksnow.1 > man/darksnow.1.gz clean: rm -f *.o *~ darksnow man/darksnow.1.gz rm -rf slack darksnow.tgz install: darksnow $(INSTALL) -D --mode=0755 darksnow $(PREFIX)/bin/darksnow $(INSTALL) -D --mode=0644 documentation/CHANGES $(PREFIX)/share/darksnow/changelog $(INSTALL) -D --mode=0644 po/pt_BR.mo $(PREFIX)/share/locale/pt_BR/LC_MESSAGES/darksnow.mo $(INSTALL) -D --mode=0644 icon/darksnow_icon.png $(PREFIX)/share/icons/hicolor/32x32/apps/darksnow.png $(INSTALL) -D --mode=0644 man/darksnow.1.gz $(PREFIX)/share/man/man1/darksnow.1.gz make_pkg: darksnow echo "Remember to run this option as root!" rm -rf slack $(INSTALL) -D --mode=0755 darksnow slack$(PREFIX)/bin/darksnow $(INSTALL) -D --mode=0644 icon/darksnow_icon.png slack$(PREFIX)/share/icons/darksnow.png $(INSTALL) -D --mode=0644 po/pt_BR.mo slack$(PREFIX)/share/locale/pt_BR/LC_MESSAGES/darksnow.mo $(INSTALL) -D --mode=0644 documentation/CHANGES slack$(PREFIX)/doc/darksnow/CHANGES $(INSTALL) -D --mode=0644 documentation/LICENSE slack$(PREFIX)/doc/darksnow/LICENSE $(INSTALL) -D --mode=0644 documentation/README.en slack$(PREFIX)/doc/darksnow/README.en $(INSTALL) -D --mode=0644 documentation/README.pt_BR slack$(PREFIX)/doc/darksnow/README.pt_BR $(INSTALL) -D --mode=0644 documentation/CHANGES slack$(PREFIX)/doc/darksnow/CHANGES $(INSTALL) -D --mode=0644 documentation/slack-desc slack/install/slack-desc cd slack; makepkg -c y -l n ../darksnow-$(VERSION)-$(ARCH)-1rd.tgz echo "Remember to run this option as root!" install_pkg: make_pkg /sbin/installpkg darksnow-*-1rd.tgz upgrade_pkg: make_pkg /sbin/upgradepkg darksnow-*-1rd.tgz dist-clean: clean rm aclocal.m4 config.status config.log man/darksnow.1.gz Makefile rm -r autom4te.cache darksnow-0.6.1/constants.h0000644000175000017500000000157310434101030014165 0ustar bartbart/* Darksnow - A GUI for darkice * Copyright (C) 2004-2005 Rafael Diniz * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This source code 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. * Please refer to the GNU Public License for more details. * * You should have received a copy of the GNU Public License along with * this source code; if not, write to: * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #define __CONSTANTS_H__ /* the size of main window */ #define SIZE_X 450 #define SIZE_Y 465 darksnow-0.6.1/icon/0000755000175000017500000000000010434101030012722 5ustar bartbartdarksnow-0.6.1/icon/darksnow_icon.png0000600000175000017500000000516110434101030016263 0ustar bartbart‰PNG  IHDR szzôsBIT|dˆ pHYs  ÒÝ~ütEXtCreation Time03/13/05pŠ,%tEXtSoftwareMacromedia Fireworks MX 2004‡v¬Ï ÀIDATxœ­—låÇ¿w¶ÏNü+¶“Úi~9I“¦ns-¡MBUZZ(m” TMeª@kù‡B´lˆ"!!4ĤNYBëÔªP­ ©k…´tmÈæšÄ&mÈÙ±ØñÏóïóÝ{ûÃ4°IiµG:éî¹÷>ï÷yîÑû¾¥( îÔg€E–Ý)ƒºÎÑQgs(Ôgc6•JáªÛÍå6mÈíÙÃß.‹¾íÙ´§R}Eaëëë±víZxœU¾úªïNXê•tŽŽ:Ûâñ>ƒ,³å*‚±ŒF# ›Ë¤Ó,}èÐÅdâèžžùÑGù•pWœ5ápŸ‘¶(I˜ŸŸG,ýBQ „Àáp \’XrÙXq²¡«1›ÑÝݽì‹JÒ¼xäHÇ-߉'Àó<{ÇFG5<ß—Y\d²Ì%\®äÎ|‚.úí·ì?/_Fcc#‰x¯·œ 0›Í˜à80 ,õõÜ2ËëíË,,° B¸äúõ‰;øÎG5ŒŒ8[––úH2ÉBQ@[,œ²£‘¥%Ü ‡99gu«Vqt&ÃÞÓÝ íí¥h#‘ýÂéÓ§> ÃÐÐê\.ÎÆ0,c³q&€Í GQ§ãŠÑ(+Ë2d½ž+lÞ< Úsðà+••l2™D$AAì‚ `×®]°X­˜µ+Š1¶WÔÕq=[¶ØGGF aÜ»jÕc]]]X\\Äøø8X–ET9E±ÅbÙXÌÎnÜˆÆÆF\‚FQ슢Àf³a{OÝ"ŠMTÇñãÖµµ¡¥µ0=5«Í‡Ã?þ:­»zƒƒƒà&&`2›!K2™ ~ÕßøÝ믃½Á€úúz´¬Yƒõ6àçÎA°{÷nƒA$ ¬s¹—.]ÂgŸ}ªñÍ7ɉ›Édðì³Ï"sùr/£V#$Håó§RHåó( Âa„âqüf`à‹ÁóçQa±€¢($ ìܹo;†Êª*ˆ¢ˆîîn¬ŽDzµ ‚€T¡€° ™Ë!•J!–H f4¾AY>ÿÜ©í“ãq6_(àÈν/ž=û£[‰@è¬Ö®§ûûˆÉä³Ù&‡Ã?E"?Ïœ9}è™gðû£G¡R«ñëmÛz_úä“gÈ1Ì}tlûv^–eÐ4;v€¦¨ÒˆPp»™”ÏÏà `2Ü×Õå),.þùÌ[ohAhs8øè£<~üôþ'Ÿ„ÇíFm]žþyø´k4€ßø|ÀÜpó&pý:rÉ$pöì5(É$ÛÜÚŠnšî½<;[cmU?;; =EÁÙÞîœ3›q-hS­^ ?ÏOÞŠfjj «««±xñb¯E«E§ÙŒé>ïõ¢¡«ëÊêªªŠ¯ÎÓI¡Ð¹Û·ïž™™A<‘§èŠ Îív³»l6ümb¢DE|33¨TÄÑØ(Ñf3"‰À0P0VT?=JÃ` mv;9xèFΜÁÉ+WwUT`"¼¢Ü¸Á<°e ìN§8KQ½WÝî<À`˜À—¢žž+Çõ)@/€RÊ$ É䥪«—jm¶Ö«^/CEЊ¢knj‚¹¥…¤ñäÉ“C!TQ²„À—Í¢ÝåêM# Ë0®[‡5ÍÍð{½WD•ÊCá=~†ÁSNçá1Ÿ¯}"‹NÇSµN'ý´³ó !—[þ5&Qä•l–A&Ô3 m«¬„Ñ`@J¥ú"™N_±hµˆŠ"&‚ALøý˜\X@4EºP8¡7Àèõ½uë’¢(¥ Ôù|}E­ç¸Ò$4ÖÖV ¢ÑT«hƒnwé]¡€u.Ü7nH*%‰Á ±i4xtïÞ’v¿Ÿ¼÷öÛ`R)ˆù<Ìz=Ô&T„ ëñt !’FÓ¡Òàètš]®þ…€»e‹¤­ªÊËß=ÃçŠE¸ÝnÈ*•ô³§žÊÿâàAiöæM¼ÿþû€Œ,Kû¸¼¦¡a¬Rgj$‰òÞ{Qn2¡vƶªövWM}=QDqðÝft¿ÕÚ;Ìó(¢à}óóhéè wvnþzf¦$ @ǦM$Ëâʼn‰õÔîÁÁcfB6]øðÃò0Ç™Ë1ÐÕÙ‰\.îúuÐÚ`më×_ûÉOÔû‚AÒèrIŽÚZ~ž§ÇÏŸ/×§R¦¯/\ˆ‹’dWDQÀ¶·£¬¬ WGG ŒÆ<¬Ö¬£©IìÙµK ‰â5Õü¾}ž©O?mKÏÏ×B–i¨Õ<´Z=¥ÓI‰lVÊʲDëtSYéÑ×ÔT׸\…²ÁdRND"û¯e³ݬÓ=^Fã¥KKeŠF3§hµzhµQ«¥,!’@HÕÕc¨¨Ð§eYrƒ¾ººJQP¥P@‡½{k¡×? QlÃxɼ‡³gýu/¿ü’^¯oM Äa·#‰€÷z «WÓå4­vON–¹ ãÁ©S¯üK¯Ÿ„ËuTéïÿæ‡5RÚŒ%`ñ;àÒSý«¯®1Z­dßÃ/û¢’4–ôù:šššX>”:Eáÿ뿬ÄÒ4Íñssì»ï¼ƒ@0†apäÈ‘[S^{í5ˆ¢ˆj‡IAŒFn¥Ü÷Ù»îˆÂƒA€(ŠËïnÝ/,."«RqèéX)wÅÈïÙÃcÏžç€êï?†TŠ ‡Ãß09åèÑçVÊ»ewÔ¢§gF#7<<ŒáááRÊo#êÚuÇ·ìÿÑžÿ ,«ÕÖ…ªIEND®B`‚darksnow-0.6.1/man/0000755000175000017500000000000010434101030012545 5ustar bartbartdarksnow-0.6.1/man/darksnow.10000644000175000017500000000323110434101030014456 0ustar bartbart.\" Process this file with .\" groff -man -Tascii foo.1 .\" .TH DARKSNOW 1 "August 2005" UNIX "User Manuals" .SH NAME darksnow \- A simple frontend to DarkIce .SH DESCRIPTION \fBDarkSnow\fP is a graphical interface written in GTK+2 for the darkice live streamer. .SH SEE ALSO .BR darkice (1) .br .SH AUTHOR .nf darksnow was written by Rafael Diniz . This manual page was written by Rodrigo Belem. .fi .SH BUGS .nf Send feedback or report bugs to: rafael@riseup.net .fi .SH COPYING Permission is granted to copy, distribute and/or modify this manual under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; Permission is granted to make and distribute verbatim copies of this manual page provided the above copyright notice and this permission notice are preserved on all copies. -- DarkSnow source code is free software; you can redistribute it and/or modify it under the terms of the GNU Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. DarkSnow source code 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. Please refer to the GNU Public License for more details. You should have received a copy of the GNU Public License along with this source code; if not, write to: Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. .SH AVAILABILITY The most recent version of \fIDarkSnow\fR can be obtained from its homepage at \fIhttp://darksnow.radiolivre.org\fR. darksnow-0.6.1/man/darksnow.1.gz0000644000175000017500000000163310434102455015115 0ustar bartbart‹‚pDdarksnow.1}TÛnã6}çW ò´‹ÚJœb·è¦(*_’ëØ‚$ojÀ/”4´‰H¢@R6ܯï–Aò&Šä™sN°¹‚X«»“„¬ÒîX@[[­„€aÍfÜR‚P*¹Md0 “Ÿébù #¸ »mg,ÜÞÜ|»‚Õ"ú®V5<ñ¦ã•¡ é#,§+¹~1:Àf!Y·TThÕXlJ° ¦t *1g:K'IgÑrÁ6bì6Sº½1cN,y»“¯@‚¼ ZZB£?ðýüí–xkRˆ¾¶¤•Ü#«‘רƒS¡t6ƒpž.Y0Nà|ðËè+ rÝs WÙã2aA#ÞT¸y­—!á‚cSÙÈÿà/íWÿhi°kƒíßT,sV×ÞhùßA¨RË­‚1VX,²/?^=¤¾x꜈e΋ m[¥-äÝ–’T?à]Ý ”É2^G‹ÆbÔµ4FªÆ9I>’>€BµÇ”’ ’ygxS^S•Z•RO­râϺ¦Do-÷µ%üâa±‚{SUt56–[WfN–6𠵯; FDŸñæ'Ø÷m—WÒìˆO~ôˆ-U¸¦•¢Âóîc5ñÔ/•~N÷j§QbÏWvG«Õ^–ƒêò\Q«8G(“…FY×ÖûоVgç-í šOÄŠWU_ŽÂ;÷0Õé¡—è¸ §Ñôïà¨:(èñi¼ mŸëÓ Ÿ„;‹³ñ@vé,ûÔY@š™Üž_c¤žøÂ-#¢Të.}…wY ~ÓUº·ê°wª%;n°ƒ$ër„Π誣“ðÑ\e.Öð&I¸ÈÖw~h)ÚÅ=žpÜX‘K¢\G‰;{š%“G:Ž£y”­ýû([ÌÒî— £8L²h²š‡ Ä«$^¦³€ÅrrN£p«œþ}%Z.+õšò3Ī*aÇ÷¢@éz‚û~ú,¦J5ÛÓ öMvaÛHášpà'º×Î>JpQSøþÇ7šÃ4äÃ=…6áu®e¹¥Ï§nnG¿ÿ9`«4ìÇ`ø+Œæ½CnV!É¢ÁîÈ7öµˆûFDoÃ8ñJQ©œä7$’&zM¶S5úwE™Òµíëëóü 4/¥¢y¬1PzKHÄãN—1™darksnow-0.6.1/configure0000755000175000017500000032422410434102426013722 0ustar bartbart#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59. # # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then set -o posix fi DUALCASE=1; export DUALCASE # for MKS sh # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # Work around bugs in pre-3.0 UWIN ksh. $as_unset ENV MAIL MAILPATH PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)$' \| \ . : '\(.\)' 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } /^X\/\(\/\/\)$/{ s//\1/; q; } /^X\/\(\/\).*/{ s//\1/; q; } s/.*/./; q'` # PATH needs CR, and LINENO needs CR and PATH. # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" || { # Find who we are. Look in the path if we contain no path at all # relative or not. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 { (exit 1); exit 1; }; } fi case $CONFIG_SHELL in '') as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for as_base in sh bash ksh sh5; do case $as_dir in /*) if ("$as_dir/$as_base" -c ' as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } CONFIG_SHELL=$as_dir/$as_base export CONFIG_SHELL exec "$CONFIG_SHELL" "$0" ${1+"$@"} fi;; esac done done ;; esac # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line before each line; the second 'sed' does the real # work. The second script uses 'N' to pair each line-number line # with the numbered line, and appends trailing '-' during # substitution so that $LINENO is not a special case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) sed '=' <$as_myself | sed ' N s,$,-, : loop s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, t loop s,-$,, s,^['$as_cr_digits']*\n,, ' >$as_me.lineno && chmod +x $as_me.lineno || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensible to this). . ./$as_me.lineno # Exit status is that of the last command. exit } case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in *c*,-n*) ECHO_N= ECHO_C=' ' ECHO_T=' ' ;; *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then # We could just check for DJGPP; but this test a) works b) is more generic # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). if test -f conf$$.exe; then # Don't use ln at all; we don't have any links as_ln_s='cp -p' else as_ln_s='ln -s' fi elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.file if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" # IFS # We need space, tab and new line, in precisely that order. as_nl=' ' IFS=" $as_nl" # CDPATH. $as_unset CDPATH # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` exec 6>&1 # # Initializations. # ac_default_prefix=/usr/local ac_config_libobj_dir=. cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # Maximum number of lines to put in a shell here document. # This variable seems obsolete. It should probably be removed, and # only ac_max_sed_lines should be used. : ${ac_max_here_lines=38} # Identity of this package. PACKAGE_NAME= PACKAGE_TARNAME= PACKAGE_VERSION= PACKAGE_STRING= PACKAGE_BUGREPORT= ac_unique_file="darksnow.c" ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT VERSION PKG_CONFIG GTK_CFLAGS GTK_LIBS LIBOBJS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. ac_init_help= ac_init_version=false # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datadir='${prefix}/share' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' libdir='${exec_prefix}/lib' includedir='${prefix}/include' oldincludedir='/usr/include' infodir='${prefix}/info' mandir='${prefix}/man' ac_prev= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval "$ac_prev=\$ac_option" ac_prev= continue fi ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_option in -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ | --da=*) datadir=$ac_optarg ;; -disable-* | --disable-*) ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/-/_/g'` eval "enable_$ac_feature=no" ;; -enable-* | --enable-*) ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/-/_/g'` case $ac_option in *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; *) ac_optarg=yes ;; esac eval "enable_$ac_feature='$ac_optarg'" ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst \ | --locals | --local | --loca | --loc | --lo) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* \ | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package| sed 's/-/_/g'` case $ac_option in *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; *) ac_optarg=yes ;; esac eval "with_$ac_package='$ac_optarg'" ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/-/_/g'` eval "with_$ac_package=no" ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` eval "$ac_envvar='$ac_optarg'" export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` { echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi # Be sure to have absolute paths. for ac_var in exec_prefix prefix do eval ac_val=$`echo $ac_var` case $ac_val in [\\/$]* | ?:[\\/]* | NONE | '' ) ;; *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; };; esac done # Be sure to have absolute paths. for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ localstatedir libdir includedir oldincludedir infodir mandir do eval ac_val=$`echo $ac_var` case $ac_val in [\\/$]* | ?:[\\/]* ) ;; *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; };; esac done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then its parent. ac_confdir=`(dirname "$0") 2>/dev/null || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$0" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` srcdir=$ac_confdir if test ! -r $srcdir/$ac_unique_file; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r $srcdir/$ac_unique_file; then if test "$ac_srcdir_defaulted" = yes; then { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 { (exit 1); exit 1; }; } else { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi fi (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 { (exit 1); exit 1; }; } srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` ac_env_build_alias_set=${build_alias+set} ac_env_build_alias_value=$build_alias ac_cv_env_build_alias_set=${build_alias+set} ac_cv_env_build_alias_value=$build_alias ac_env_host_alias_set=${host_alias+set} ac_env_host_alias_value=$host_alias ac_cv_env_host_alias_set=${host_alias+set} ac_cv_env_host_alias_value=$host_alias ac_env_target_alias_set=${target_alias+set} ac_env_target_alias_value=$target_alias ac_cv_env_target_alias_set=${target_alias+set} ac_cv_env_target_alias_value=$target_alias ac_env_CC_set=${CC+set} ac_env_CC_value=$CC ac_cv_env_CC_set=${CC+set} ac_cv_env_CC_value=$CC ac_env_CFLAGS_set=${CFLAGS+set} ac_env_CFLAGS_value=$CFLAGS ac_cv_env_CFLAGS_set=${CFLAGS+set} ac_cv_env_CFLAGS_value=$CFLAGS ac_env_LDFLAGS_set=${LDFLAGS+set} ac_env_LDFLAGS_value=$LDFLAGS ac_cv_env_LDFLAGS_set=${LDFLAGS+set} ac_cv_env_LDFLAGS_value=$LDFLAGS ac_env_CPPFLAGS_set=${CPPFLAGS+set} ac_env_CPPFLAGS_value=$CPPFLAGS ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} ac_cv_env_CPPFLAGS_value=$CPPFLAGS # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures this package to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] _ACEOF cat <<_ACEOF Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data [PREFIX/share] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --infodir=DIR info documentation [PREFIX/info] --mandir=DIR man documentation [PREFIX/man] _ACEOF cat <<\_ACEOF _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-gtktest do not try to compile and run a test GTK+ program 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 CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. _ACEOF fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. ac_popdir=`pwd` for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d $ac_dir || continue ac_builddir=. if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A "../" for each directory in $ac_dir_suffix. ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` else ac_dir_suffix= ac_top_builddir= fi case $srcdir in .) # No --srcdir option. We are building in place. ac_srcdir=. if test -z "$ac_top_builddir"; then ac_top_srcdir=. else ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` fi ;; [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ;; *) # Relative path. ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_builddir$srcdir ;; esac # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac cd $ac_dir # Check for guested configure; otherwise get Cygnus style configure. if test -f $ac_srcdir/configure.gnu; then echo $SHELL $ac_srcdir/configure.gnu --help=recursive elif test -f $ac_srcdir/configure; then echo $SHELL $ac_srcdir/configure --help=recursive elif test -f $ac_srcdir/configure.ac || test -f $ac_srcdir/configure.in; then echo $ac_configure --help else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi cd $ac_popdir done fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF Copyright (C) 2003 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit 0 fi exec 5>config.log cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ _ACEOF { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` hostinfo = `(hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. echo "PATH: $as_dir" done } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_sep= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 2) ac_configure_args1="$ac_configure_args1 '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" # Get rid of the leading space. ac_sep=" " ;; esac done done $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Be sure not to use single quotes in there, as some shells, # such as our DU 5.0 friend, will then `close' the trap. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo cat <<\_ASBOX ## ---------------- ## ## Cache variables. ## ## ---------------- ## _ASBOX echo # The following way of writing the cache mishandles newlines in values, { (set) 2>&1 | case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in *ac_space=\ *) sed -n \ "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" ;; *) sed -n \ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; esac; } echo cat <<\_ASBOX ## ----------------- ## ## Output variables. ## ## ----------------- ## _ASBOX echo for ac_var in $ac_subst_vars do eval ac_val=$`echo $ac_var` echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ## ------------- ## ## Output files. ## ## ------------- ## _ASBOX echo for ac_var in $ac_subst_files do eval ac_val=$`echo $ac_var` echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo fi if test -s confdefs.h; then cat <<\_ASBOX ## ----------- ## ## confdefs.h. ## ## ----------- ## _ASBOX echo sed "/^$/d" confdefs.h | sort echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" echo "$as_me: exit $exit_status" } >&5 rm -f core *.core && rm -rf conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -rf conftest* confdefs.h # AIX cpp loses on an empty file, so make sure it contains at least a newline. echo >confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. if test -z "$CONFIG_SITE"; then if test "x$prefix" != xNONE; then CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" else CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; *) . ./$cache_file;; esac fi else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in `(set) 2>&1 | sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val="\$ac_cv_env_${ac_var}_value" eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers " ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi CC=$ac_ct_CC else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi CC=$ac_ct_CC else CC="$ac_cv_prog_CC" fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_CC" && break done CC=$ac_ct_CC fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&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[^ ]*//'` if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Find the output, starting from the most likely. This scheme is # not robust to junk in `.', hence go to wildcards (a.*) only as a last # resort. # Be careful to initialize this variable, since it used to be cached. # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. ac_cv_exeext= # b.out is created by i960 compilers. for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; conftest.$ac_ext ) # This is the source file. ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` # FIXME: I believe we export ac_cv_exeext for Libtool, # but it would be cool to find out if it's true. Does anybody # maintain Libtool? --akim. export ac_cv_exeext break;; * ) break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: C compiler cannot create executables See \`config.log' for more details." >&5 echo "$as_me: error: C compiler cannot create executables See \`config.log' for more details." >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext echo "$as_me:$LINENO: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6 # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. echo "$as_me:$LINENO: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { echo "$as_me:$LINENO: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 echo "$as_me:$LINENO: checking for suffix of executables" >&5 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` export ac_cv_exeext break;; * ) break;; esac done else { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6 rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT echo "$as_me:$LINENO: checking for suffix of object files" >&5 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS CFLAGS="-g" echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_cc_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #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 -std1 is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std1. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF # Don't try gcc -ansi; that turns off useful extensions and # breaks some systems' header files. # AIX -qlanglvl=ansi # Ultrix and OSF/1 -std1 # HP-UX 10.20 and later -Ae # HP-UX older versions -Aa -D_HPUX_SOURCE # SVR4 -Xc -D__EXTENSIONS__ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext done rm -f conftest.$ac_ext conftest.$ac_objext CC=$ac_save_CC fi case "x$ac_cv_prog_cc_stdc" in x|xno) echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac # Some people use a C++ compiler to compile C. Since we use `exit', # in C++ we need to declare it. In case someone uses the same compiler # for both compiling C and C++ we need to have the C++ compiler decide # the declaration of exit, since it's the most demanding environment. cat >conftest.$ac_ext <<_ACEOF #ifndef __cplusplus choke me #endif _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ '' \ 'extern "C" void std::exit (int) throw (); using std::exit;' \ 'extern "C" void std::exit (int); using std::exit;' \ 'extern "C" void exit (int) throw ();' \ 'extern "C" void exit (int);' \ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration #include int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 continue fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration int main () { exit (42); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest.$ac_objext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done rm -f conftest* if test -n "$ac_declaration"; then echo '#ifdef __cplusplus' >>confdefs.h echo $ac_declaration >>confdefs.h echo '#endif' >>confdefs.h fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu 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 VERSION="0.6.1" echo "$as_me:$LINENO: checking for mmap" >&5 echo $ECHO_N "checking for mmap... $ECHO_C" >&6 if test "${ac_cv_func_mmap+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define mmap to an innocuous variant, in case declares mmap. For example, HP-UX 11i declares gettimeofday. */ #define mmap innocuous_mmap /* System header to define __stub macros and hopefully few prototypes, which can conflict with char mmap (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef mmap /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" { #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char mmap (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_mmap) || defined (__stub___mmap) choke me #else char (*f) () = mmap; #endif #ifdef __cplusplus } #endif int main () { return f != mmap; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_mmap=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_mmap=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_mmap" >&5 echo "${ECHO_T}$ac_cv_func_mmap" >&6 if test $ac_cv_func_mmap = yes; then : else { { echo "$as_me:$LINENO: error: Sorry" >&5 echo "$as_me: error: Sorry" >&2;} { (exit you need mmap. If you are reading this); exit you need mmap. If you are reading this; }; } fi echo "$as_me:$LINENO: checking for gettext" >&5 echo $ECHO_N "checking for gettext... $ECHO_C" >&6 if test "${ac_cv_func_gettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define gettext to an innocuous variant, in case declares gettext. For example, HP-UX 11i declares gettimeofday. */ #define gettext innocuous_gettext /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gettext (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef gettext /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" { #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char gettext (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_gettext) || defined (__stub___gettext) choke me #else char (*f) () = gettext; #endif #ifdef __cplusplus } #endif int main () { return f != gettext; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gettext=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_gettext=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_gettext" >&5 echo "${ECHO_T}$ac_cv_func_gettext" >&6 if test $ac_cv_func_gettext = yes; then : else { { echo "$as_me:$LINENO: error: Sorry" >&5 echo "$as_me: error: Sorry" >&2;} { (exit you need gettext. If you are reading this); exit you need gettext. If you are reading this; }; } fi # Check whether --enable-gtktest or --disable-gtktest was given. if test "${enable_gtktest+set}" = set; then enableval="$enable_gtktest" else enable_gtktest=yes fi; pkg_config_args=gtk+-2.0 for module in . do case "$module" in gthread) pkg_config_args="$pkg_config_args gthread-2.0" ;; esac done no_gtk="" # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test x$PKG_CONFIG != xno ; then if pkg-config --atleast-pkgconfig-version 0.7 ; then : else echo "*** pkg-config too old; version 0.7 or better required." no_gtk=yes PKG_CONFIG=no fi else no_gtk=yes fi min_gtk_version=2.0.0 echo "$as_me:$LINENO: checking for GTK+ - version >= $min_gtk_version" >&5 echo $ECHO_N "checking for GTK+ - version >= $min_gtk_version... $ECHO_C" >&6 if test x$PKG_CONFIG != xno ; then ## don't try to run the test against uninstalled libtool libs if $PKG_CONFIG --uninstalled $pkg_config_args; then echo "Will use uninstalled version of GTK+ found in PKG_CONFIG_PATH" enable_gtktest=no fi if $PKG_CONFIG --atleast-version $min_gtk_version $pkg_config_args; then : else no_gtk=yes fi fi if test x"$no_gtk" = x ; then GTK_CFLAGS=`$PKG_CONFIG $pkg_config_args --cflags` GTK_LIBS=`$PKG_CONFIG $pkg_config_args --libs` gtk_config_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` gtk_config_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` gtk_config_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` if test "x$enable_gtktest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $GTK_CFLAGS" LIBS="$GTK_LIBS $LIBS" rm -f conf.gtktest if test "$cross_compiling" = yes; then echo $ac_n "cross compiling; assumed OK... $ac_c" 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 int main () { int major, minor, micro; char *tmp_version; system ("touch conf.gtktest"); /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = g_strdup("$min_gtk_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_gtk_version"); exit(1); } if ((gtk_major_version != $gtk_config_major_version) || (gtk_minor_version != $gtk_config_minor_version) || (gtk_micro_version != $gtk_config_micro_version)) { printf("\n*** 'pkg-config --modversion gtk+-2.0' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version, gtk_major_version, gtk_minor_version, gtk_micro_version); printf ("*** was found! If pkg-config was correct, then it is best\n"); printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n"); printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); printf("*** required on your system.\n"); printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); printf("*** to point to the correct configuration files\n"); } else if ((gtk_major_version != GTK_MAJOR_VERSION) || (gtk_minor_version != GTK_MINOR_VERSION) || (gtk_micro_version != GTK_MICRO_VERSION)) { printf("*** GTK+ header files (version %d.%d.%d) do not match\n", GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION); printf("*** library (version %d.%d.%d)\n", gtk_major_version, gtk_minor_version, gtk_micro_version); } else { if ((gtk_major_version > major) || ((gtk_major_version == major) && (gtk_minor_version > minor)) || ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro))) { return 0; } else { printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n", gtk_major_version, gtk_minor_version, gtk_micro_version); printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n", major, minor, micro); printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n"); printf("***\n"); printf("*** If you have already installed a sufficiently new version, this error\n"); printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); printf("*** being found. The easiest way to fix this is to remove the old version\n"); printf("*** of GTK+, but you can also set the PKG_CONFIG environment to point to the\n"); printf("*** correct copy of pkg-config. (In this case, you will have to\n"); printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); printf("*** so that the correct libraries are found at run-time))\n"); } } return 1; } _ACEOF rm -f conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) no_gtk=yes fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_gtk" = x ; then echo "$as_me:$LINENO: result: yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version)" >&5 echo "${ECHO_T}yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version)" >&6 : else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 if test "$PKG_CONFIG" = "no" ; then echo "*** A new enough version of pkg-config was not found." echo "*** See http://pkgconfig.sourceforge.net" else if test -f conf.gtktest ; then : else echo "*** Could not run GTK+ test program, checking why..." ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $GTK_CFLAGS" LIBS="$LIBS $GTK_LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include int main () { return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } && { ac_try='test -s conftest$ac_exeext' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding GTK+ or finding the wrong" echo "*** version of GTK+. If it is not finding GTK+, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means GTK+ is incorrectly installed." fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi GTK_CFLAGS="" GTK_LIBS="" : fi rm -f conf.gtktest ac_config_files="$ac_config_files 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, don't put newlines in cache variables' values. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. { (set) 2>&1 | case `(ac_space=' '; set | grep ac_space) 2>&1` in *ac_space=\ *) # `set' does not quote correctly, so add quotes (double-quote # substitution turns \\\\ into \\, and sed turns \\ into \). sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n \ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; esac; } | sed ' t clear : clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ : end' >>confcache if diff $cache_file confcache >/dev/null 2>&1; then :; else if test -w $cache_file; then test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" cat confcache >$cache_file else echo "not updating unwritable cache $cache_file" fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # VPATH may cause trouble with some makes, so we remove $(srcdir), # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=/{ s/:*\$(srcdir):*/:/; s/:*\${srcdir}:*/:/; s/:*@srcdir@:*/:/; s/^\([^=]*=[ ]*\):*/\1/; s/:*$//; s/^[^=]*=[ ]*$//; }' fi # Transform confdefs.h into DEFS. # Protect against shell expansion while executing Makefile rules. # Protect against Makefile macro expansion. # # If the first sed substitution is executed (which looks for macros that # take arguments), then we branch to the quote section. Otherwise, # look for a macro that doesn't take arguments. cat >confdef2opt.sed <<\_ACEOF t clear : clear s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\),-D\1=\2,g t quote s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\),-D\1=\2,g t quote d : quote s,[ `~#$^&*(){}\\|;'"<>?],\\&,g s,\[,\\&,g s,\],\\&,g s,\$,$$,g p _ACEOF # We use echo to avoid assuming a particular line-breaking character. # The extra dot is to prevent the shell from consuming trailing # line-breaks from the sub-command output. A line-break within # single-quotes doesn't work because, if this script is created in a # platform that uses two characters for line-breaks (e.g., DOS), tr # would break. ac_LF_and_DOT=`echo; echo .` DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'` rm -f confdef2opt.sed 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_i=`echo "$ac_i" | sed 's/\$U\././;s/\.o$//;s/\.obj$//'` # 2. Add them. ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then set -o posix fi DUALCASE=1; export DUALCASE # for MKS sh # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # Work around bugs in pre-3.0 UWIN ksh. $as_unset ENV MAIL MAILPATH PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)$' \| \ . : '\(.\)' 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } /^X\/\(\/\/\)$/{ s//\1/; q; } /^X\/\(\/\).*/{ s//\1/; q; } s/.*/./; q'` # PATH needs CR, and LINENO needs CR and PATH. # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" || { # Find who we are. Look in the path if we contain no path at all # relative or not. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} { (exit 1); exit 1; }; } fi case $CONFIG_SHELL in '') as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for as_base in sh bash ksh sh5; do case $as_dir in /*) if ("$as_dir/$as_base" -c ' as_lineno_1=$LINENO as_lineno_2=$LINENO as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } CONFIG_SHELL=$as_dir/$as_base export CONFIG_SHELL exec "$CONFIG_SHELL" "$0" ${1+"$@"} fi;; esac done done ;; esac # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line before each line; the second 'sed' does the real # work. The second script uses 'N' to pair each line-number line # with the numbered line, and appends trailing '-' during # substitution so that $LINENO is not a special case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) sed '=' <$as_myself | sed ' N s,$,-, : loop s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, t loop s,-$,, s,^['$as_cr_digits']*\n,, ' >$as_me.lineno && chmod +x $as_me.lineno || { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensible to this). . ./$as_me.lineno # Exit status is that of the last command. exit } case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in *c*,-n*) ECHO_N= ECHO_C=' ' ECHO_T=' ' ;; *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then # We could just check for DJGPP; but this test a) works b) is more generic # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). if test -f conf$$.exe; then # Don't use ln at all; we don't have any links as_ln_s='cp -p' else as_ln_s='ln -s' fi elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.file if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" # IFS # We need space, tab and new line, in precisely that order. as_nl=' ' IFS=" $as_nl" # CDPATH. $as_unset CDPATH exec 6>&1 # Open the log real soon, to keep \$[0] and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. Logging --version etc. is OK. exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX } >&5 cat >&5 <<_CSEOF This file was extended by $as_me, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ _CSEOF echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 echo >&5 _ACEOF # Files that config.status was made for. if test -n "$ac_config_files"; then echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS fi if test -n "$ac_config_headers"; then echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS fi if test -n "$ac_config_links"; then echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS fi if test -n "$ac_config_commands"; then echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS fi cat >>$CONFIG_STATUS <<\_ACEOF ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE Configuration files: $config_files Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2003 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." srcdir=$srcdir _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. ac_need_defaults=: while test $# != 0 do case $1 in --*=*) ac_option=`expr "x$1" : 'x\([^=]*\)='` ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` ac_shift=: ;; -*) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; *) # This is not an option, so the user has probably given explicit # arguments. ac_option=$1 ac_need_defaults=false;; esac case $ac_option in # Handling of the options. _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --vers* | -V ) echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header { { echo "$as_me:$LINENO: error: ambiguous option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2;} { (exit 1); exit 1; }; };; --help | --hel | -h ) echo "$ac_cs_usage"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2;} { (exit 1); exit 1; }; } ;; *) ac_config_targets="$ac_config_targets $1" ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF if \$ac_cs_recheck; then echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF for ac_config_target in $ac_config_targets do case "$ac_config_target" in # Handling of arguments. "Makefile" ) CONFIG_FILES="$CONFIG_FILES 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 fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason to put it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Create a temporary directory, and hook for its removal unless debugging. $debug || { trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 trap '{ (exit 1); exit 1; }' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { tmp=./confstat$$-$RANDOM (umask 077 && mkdir $tmp) } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "\$CONFIG_FILES"; then # Protect against being on the right side of a sed subst in config.status. sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF s,@SHELL@,$SHELL,;t t s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t s,@exec_prefix@,$exec_prefix,;t t s,@prefix@,$prefix,;t t s,@program_transform_name@,$program_transform_name,;t t s,@bindir@,$bindir,;t t s,@sbindir@,$sbindir,;t t s,@libexecdir@,$libexecdir,;t t s,@datadir@,$datadir,;t t s,@sysconfdir@,$sysconfdir,;t t s,@sharedstatedir@,$sharedstatedir,;t t s,@localstatedir@,$localstatedir,;t t s,@libdir@,$libdir,;t t s,@includedir@,$includedir,;t t s,@oldincludedir@,$oldincludedir,;t t s,@infodir@,$infodir,;t t s,@mandir@,$mandir,;t t s,@build_alias@,$build_alias,;t t s,@host_alias@,$host_alias,;t t s,@target_alias@,$target_alias,;t t s,@DEFS@,$DEFS,;t t s,@ECHO_C@,$ECHO_C,;t t s,@ECHO_N@,$ECHO_N,;t t s,@ECHO_T@,$ECHO_T,;t t s,@LIBS@,$LIBS,;t t s,@CC@,$CC,;t t s,@CFLAGS@,$CFLAGS,;t t s,@LDFLAGS@,$LDFLAGS,;t t s,@CPPFLAGS@,$CPPFLAGS,;t t s,@ac_ct_CC@,$ac_ct_CC,;t t s,@EXEEXT@,$EXEEXT,;t t s,@OBJEXT@,$OBJEXT,;t t s,@VERSION@,$VERSION,;t t s,@PKG_CONFIG@,$PKG_CONFIG,;t t s,@GTK_CFLAGS@,$GTK_CFLAGS,;t t s,@GTK_LIBS@,$GTK_LIBS,;t t s,@LIBOBJS@,$LIBOBJS,;t t s,@LTLIBOBJS@,$LTLIBOBJS,;t t CEOF _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # Split the substitutions into bite-sized pieces for seds with # small command number limits, like on Digital OSF/1 and HP-UX. ac_max_sed_lines=48 ac_sed_frag=1 # Number of current file. ac_beg=1 # First line for current file. ac_end=$ac_max_sed_lines # Line after last line for current file. ac_more_lines=: ac_sed_cmds= while $ac_more_lines; do if test $ac_beg -gt 1; then sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag else sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag fi if test ! -s $tmp/subs.frag; then ac_more_lines=false else # The purpose of the label and of the branching condition is to # speed up the sed processing (if there are no `@' at all, there # is no need to browse any of the substitutions). # These are the two extra sed commands mentioned above. (echo ':t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed if test -z "$ac_sed_cmds"; then ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" else ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" fi ac_sed_frag=`expr $ac_sed_frag + 1` ac_beg=$ac_end ac_end=`expr $ac_end + $ac_max_sed_lines` fi done if test -z "$ac_sed_cmds"; then ac_sed_cmds=cat fi fi # test -n "$CONFIG_FILES" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case $ac_file in - | *:- | *:-:* ) # input from stdin cat >$tmp/stdin ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; * ) ac_file_in=$ac_file.in ;; esac # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. ac_dir=`(dirname "$ac_file") 2>/dev/null || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` { if $as_mkdir_p; then mkdir -p "$ac_dir" else as_dir="$ac_dir" as_dirs= while test ! -d "$as_dir"; do as_dirs="$as_dir $as_dirs" as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` done test ! -n "$as_dirs" || mkdir $as_dirs fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A "../" for each directory in $ac_dir_suffix. ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` else ac_dir_suffix= ac_top_builddir= fi case $srcdir in .) # No --srcdir option. We are building in place. ac_srcdir=. if test -z "$ac_top_builddir"; then ac_top_srcdir=. else ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` fi ;; [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ;; *) # Relative path. ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_builddir$srcdir ;; esac # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac if test x"$ac_file" != x-; then { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ if test x"$ac_file" = x-; then configure_input= else configure_input="$ac_file. " fi configure_input=$configure_input"Generated from `echo $ac_file_in | sed 's,.*/,,'` by configure." # First look for the input files in the build tree, otherwise in the # src tree. ac_file_inputs=`IFS=: for f in $ac_file_in; do case $f in -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo "$f";; *) # Relative if test -f "$f"; then # Build tree echo "$f" elif test -f "$srcdir/$f"; then # Source tree echo "$srcdir/$f" else # /dev/null tree { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; esac done` || { (exit 1); exit 1; } _ACEOF cat >>$CONFIG_STATUS <<_ACEOF sed "$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s,@configure_input@,$configure_input,;t t s,@srcdir@,$ac_srcdir,;t t s,@abs_srcdir@,$ac_abs_srcdir,;t t s,@top_srcdir@,$ac_top_srcdir,;t t s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t s,@builddir@,$ac_builddir,;t t s,@abs_builddir@,$ac_abs_builddir,;t t s,@top_builddir@,$ac_top_builddir,;t t s,@abs_top_builddir@,$ac_abs_top_builddir,;t t " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out rm -f $tmp/stdin if test x"$ac_file" != x-; then mv $tmp/out $ac_file else cat $tmp/out rm -f $tmp/out fi done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF { (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